2007-08-08 08:00:20 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class CommentTableField extends ComplexTableField {
|
|
|
|
protected $template = "CommentTableField";
|
|
|
|
protected $mode;
|
|
|
|
|
2007-08-10 02:46:37 +02:00
|
|
|
function __construct($controller, $name, $sourceClass, $mode, $fieldList, $detailFormFields = null, $sourceFilter = "", $sourceSort = "Created DESC", $sourceJoin = "") {
|
2007-08-08 08:00:20 +02:00
|
|
|
$this->mode = $mode;
|
2007-08-10 02:03:30 +02:00
|
|
|
|
2007-08-08 08:00:20 +02:00
|
|
|
parent::__construct($controller, $name, $sourceClass, $fieldList, $detailFormFields, $sourceFilter, $sourceSort, $sourceJoin);
|
|
|
|
|
2007-08-10 02:03:30 +02:00
|
|
|
$this->Markable = true;
|
2007-08-10 02:46:37 +02:00
|
|
|
$this->setPageSize(15);
|
|
|
|
|
|
|
|
// search
|
2007-08-10 02:03:30 +02:00
|
|
|
$search = isset($_REQUEST['CommentSearch']) ? Convert::raw2sql($_REQUEST['CommentSearch']) : null;
|
|
|
|
if(!empty($_REQUEST['CommentSearch'])) {
|
|
|
|
$this->sourceFilter[] = "( `Name` LIKE '%$search%' OR `Comment` LIKE '%$search%')";
|
|
|
|
}
|
|
|
|
|
2007-08-08 08:00:20 +02:00
|
|
|
Requirements::javascript('cms/javascript/CommentTableField.js');
|
|
|
|
}
|
|
|
|
|
|
|
|
function Items() {
|
|
|
|
$this->sourceItems = $this->sourceItems();
|
|
|
|
|
|
|
|
if(!$this->sourceItems) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$pageStart = (isset($_REQUEST['ctf'][$this->Name()]['start']) && is_numeric($_REQUEST['ctf'][$this->Name()]['start'])) ? $_REQUEST['ctf'][$this->Name()]['start'] : 0;
|
|
|
|
$this->sourceItems->setPageLimits($pageStart, $this->pageSize, $this->totalCount);
|
|
|
|
|
|
|
|
$output = new DataObjectSet();
|
|
|
|
foreach($this->sourceItems as $pageIndex=>$item) {
|
|
|
|
$output->push(Object::create('CommentTableField_Item',$item, $this, $pageStart+$pageIndex));
|
|
|
|
}
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
function spam() {
|
|
|
|
if(!Permission::check('ADMIN')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->methodName = "spam";
|
|
|
|
|
|
|
|
$childId = Convert::raw2sql($_REQUEST['tf']['childID']);
|
|
|
|
|
|
|
|
if (is_numeric($childId)) {
|
2007-08-13 01:11:37 +02:00
|
|
|
$comment = DataObject::get_by_id($this->sourceClass, $childId);
|
|
|
|
if($comment) {
|
|
|
|
$comment->IsSpam = true;
|
|
|
|
$comment->NeedsModeration = false;
|
|
|
|
$comment->write();
|
|
|
|
|
|
|
|
if(SSAkismet::isEnabled()) {
|
|
|
|
try {
|
|
|
|
$akismet = new SSAkismet();
|
|
|
|
$akismet->setCommentAuthor($comment->getField('Name'));
|
|
|
|
$akismet->setCommentContent($comment->getField('Comment'));
|
|
|
|
|
|
|
|
$akismet->submitSpam();
|
|
|
|
} catch (Exception $e) {
|
|
|
|
// Akismet didn't work, most likely the service is down.
|
|
|
|
}
|
|
|
|
}
|
2007-08-08 08:00:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function ham() {
|
|
|
|
if(!Permission::check('ADMIN')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->methodName = "ham";
|
|
|
|
|
|
|
|
$childId = Convert::raw2sql($_REQUEST['tf']['childID']);
|
|
|
|
|
|
|
|
if (is_numeric($childId)) {
|
2007-08-13 01:11:37 +02:00
|
|
|
$comment = DataObject::get_by_id($this->sourceClass, $childId);
|
|
|
|
if($comment) {
|
|
|
|
$comment->IsSpam = false;
|
|
|
|
$comment->NeedsModeration = false;
|
|
|
|
$comment->write();
|
|
|
|
|
|
|
|
if(SSAkismet::isEnabled()) {
|
|
|
|
try {
|
|
|
|
$akismet = new SSAkismet();
|
|
|
|
$akismet->setCommentAuthor($comment->getField('Name'));
|
|
|
|
$akismet->setCommentContent($comment->getField('Comment'));
|
|
|
|
|
|
|
|
$akismet->submitHam();
|
|
|
|
} catch (Exception $e) {
|
|
|
|
// Akismet didn't work, most likely the service is down.
|
|
|
|
}
|
|
|
|
}
|
2007-08-08 08:00:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-13 00:19:06 +02:00
|
|
|
function approve() {
|
2007-08-08 08:00:20 +02:00
|
|
|
if(!Permission::check('ADMIN')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->methodName = "accept";
|
|
|
|
|
|
|
|
$childId = Convert::raw2sql($_REQUEST['tf']['childID']);
|
|
|
|
|
|
|
|
if(is_numeric($childId)) {
|
|
|
|
$childObject = DataObject::get_by_id($this->sourceClass, $childId);
|
|
|
|
if($childObject) {
|
|
|
|
$childObject->IsSpam = false;
|
|
|
|
$childObject->NeedsModeration = false;
|
|
|
|
$childObject->write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function HasSpamButton() {
|
2007-08-13 00:19:06 +02:00
|
|
|
return $this->mode == 'approved' || $this->mode == 'unmoderated';
|
2007-08-08 08:00:20 +02:00
|
|
|
}
|
|
|
|
|
2007-08-13 00:19:06 +02:00
|
|
|
function HasApproveButton() {
|
2007-08-08 08:00:20 +02:00
|
|
|
return $this->mode == 'unmoderated';
|
|
|
|
}
|
|
|
|
|
|
|
|
function HasHamButton() {
|
|
|
|
return $this->mode == 'spam';
|
|
|
|
}
|
|
|
|
|
2007-08-10 00:24:38 +02:00
|
|
|
function SearchForm() {
|
|
|
|
$searchFields = new FieldGroup(
|
2007-08-10 02:03:30 +02:00
|
|
|
new TextField('CommentSearch', 'Search'),
|
|
|
|
new HiddenField("ctf[ID]",'',$this->mode),
|
|
|
|
new HiddenField('CommentFieldName','',$this->name)
|
2007-08-10 00:24:38 +02:00
|
|
|
);
|
|
|
|
|
2007-11-06 03:53:40 +01:00
|
|
|
$actionFields = new LiteralField('CommentFilterButton','<input type="submit" class="action" name="CommentFilterButton" value="Filter" id="CommentFilterButton"/>');
|
2007-08-10 00:24:38 +02:00
|
|
|
|
|
|
|
$fieldContainer = new FieldGroup(
|
|
|
|
$searchFields,
|
|
|
|
$actionFields
|
|
|
|
);
|
|
|
|
|
|
|
|
return $fieldContainer->FieldHolder();
|
|
|
|
}
|
2007-08-08 08:00:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class CommentTableField_Item extends ComplexTableField_Item {
|
|
|
|
function HasSpamButton() {
|
|
|
|
return $this->parent()->HasSpamButton();
|
|
|
|
}
|
|
|
|
|
2007-08-13 00:19:06 +02:00
|
|
|
function HasApproveButton() {
|
|
|
|
return $this->parent()->HasApproveButton();
|
2007-08-08 08:00:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function HasHamButton() {
|
|
|
|
return $this->parent()->HasHamButton();
|
|
|
|
}
|
|
|
|
|
|
|
|
function SpamLink() {
|
|
|
|
return $this->BaseLink() . "&methodName=spam";
|
|
|
|
}
|
|
|
|
|
|
|
|
function HamLink() {
|
|
|
|
return $this->BaseLink() . "&methodName=ham";
|
|
|
|
}
|
|
|
|
|
2007-08-13 00:19:06 +02:00
|
|
|
function ApproveLink() {
|
|
|
|
return $this->BaseLink() . "&methodName=approve";
|
2007-08-08 08:00:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|