mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
abb9a61d0d
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@39000 467b73ca-7a2a-4603-9d3b-597d59a354a9
144 lines
3.3 KiB
PHP
Executable File
144 lines
3.3 KiB
PHP
Executable File
<?php
|
|
|
|
class PageComment extends DataObject {
|
|
static $db = array(
|
|
"Name" => "Varchar",
|
|
"Comment" => "Text",
|
|
"IsSpam" => "Boolean",
|
|
);
|
|
|
|
static $has_one = array(
|
|
"Parent" => "SiteTree",
|
|
);
|
|
|
|
static $casting = array(
|
|
"RSSTitle" => "Varchar",
|
|
);
|
|
|
|
// Number of comments to show before paginating
|
|
static $comments_per_page = 10;
|
|
|
|
/**
|
|
* Return a link to this comment
|
|
* @return string link to this comment.
|
|
*/
|
|
function Link() {
|
|
return $this->Parent()->Link();
|
|
}
|
|
|
|
|
|
function DeleteLink() {
|
|
if(Permission::check('CMS_ACCESS_CMSMain')) {
|
|
return "PageComment/deletecomment/$this->ID";
|
|
}
|
|
}
|
|
function deletecomment() {
|
|
if(Permission::check('CMS_ACCESS_CMSMain')) {
|
|
$comment = DataObject::get_by_id("PageComment", $this->urlParams['ID']);
|
|
if($comment) {
|
|
$comment->delete();
|
|
}
|
|
}
|
|
|
|
if(Director::is_ajax()) {
|
|
echo "";
|
|
} else {
|
|
Director::redirectBack();
|
|
}
|
|
}
|
|
|
|
function SpamLink() {
|
|
$member = Member::currentUser();
|
|
if(SSAkismet::isEnabled() && Permission::check('CMS_ACCESS_CMSMain') && !$this->getField('IsSpam')) {
|
|
return "PageComment/reportspam/$this->ID";
|
|
}
|
|
}
|
|
|
|
function HamLink() {
|
|
$member = Member::currentUser();
|
|
if(SSAkismet::isEnabled() && Permission::check('CMS_ACCESS_CMSMain') && $this->getField('IsSpam')) {
|
|
return "PageComment/reportham/$this->ID";
|
|
}
|
|
}
|
|
|
|
function SpamClass() {
|
|
if($this->getField('IsSpam')) {
|
|
return 'spam';
|
|
} else {
|
|
return 'notspam';
|
|
}
|
|
}
|
|
|
|
function reportspam() {
|
|
if(SSAkismet::isEnabled() && Permission::check('CMS_ACCESS_CMSMain')) {
|
|
$comment = DataObject::get_by_id("PageComment", $this->urlParams['ID']);
|
|
|
|
if($comment) {
|
|
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.
|
|
}
|
|
|
|
if(SSAkismet::getSaveSpam()) {
|
|
$comment->setField('IsSpam', true);
|
|
$comment->write();
|
|
} else {
|
|
$comment->delete();
|
|
}
|
|
}
|
|
}
|
|
|
|
if(Director::is_ajax()) {
|
|
if(SSAkismet::getSaveSpam()) {
|
|
echo $comment->renderWith('PageCommentInterface_singlecomment');
|
|
} else {
|
|
echo '';
|
|
}
|
|
} else {
|
|
Director::redirectBack();
|
|
}
|
|
}
|
|
|
|
function reportham() {
|
|
if(SSAkismet::isEnabled() && Permission::check('CMS_ACCESS_CMSMain')) {
|
|
$comment = DataObject::get_by_id("PageComment", $this->urlParams['ID']);
|
|
|
|
if($comment) {
|
|
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.
|
|
}
|
|
|
|
$comment->setField('IsSpam', false);
|
|
$comment->write();
|
|
}
|
|
}
|
|
|
|
if(Director::is_ajax()) {
|
|
echo $comment->renderWith('PageCommentInterface_singlecomment');
|
|
} else {
|
|
Director::redirectBack();
|
|
}
|
|
}
|
|
|
|
function RSSTitle() {
|
|
return "Comment by '$this->Name' on " . $this->Parent()->Title;
|
|
}
|
|
function rss() {
|
|
$rss = new RSSFeed(DataObject::get("PageComment", "ParentID > 0", "Created DESC", "", 10), "home/", "Page comments", "", "RSSTitle", "Comment", "Name");
|
|
$rss->outputToBrowser();
|
|
}
|
|
|
|
}
|
|
|
|
?>
|