2010-11-29 23:24:17 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a single comment object.
|
|
|
|
*
|
|
|
|
* @package comments
|
|
|
|
*/
|
|
|
|
class Comment extends DataObject {
|
|
|
|
|
2013-04-11 14:23:03 +02:00
|
|
|
private static $db = array(
|
2010-11-30 01:33:19 +01:00
|
|
|
"Name" => "Varchar(200)",
|
2013-03-05 10:01:42 +01:00
|
|
|
"Comment" => "Text",
|
2010-11-30 01:33:19 +01:00
|
|
|
"Email" => "Varchar(200)",
|
|
|
|
"URL" => "Varchar(255)",
|
2010-12-06 11:09:04 +01:00
|
|
|
"BaseClass" => "Varchar(200)",
|
2010-12-11 06:33:21 +01:00
|
|
|
"Moderated" => "Boolean",
|
2010-12-17 01:04:33 +01:00
|
|
|
"IsSpam" => "Boolean",
|
2013-03-05 10:01:42 +01:00
|
|
|
"ParentID" => "Int",
|
|
|
|
'AllowHtml' => "Boolean"
|
2010-11-29 23:24:17 +01:00
|
|
|
);
|
|
|
|
|
2013-04-11 14:23:03 +02:00
|
|
|
private static $has_one = array(
|
2010-11-30 01:33:19 +01:00
|
|
|
"Author" => "Member"
|
2010-11-29 23:24:17 +01:00
|
|
|
);
|
|
|
|
|
2013-04-11 14:23:03 +02:00
|
|
|
private static $default_sort = '"Created" DESC';
|
2010-11-29 23:24:17 +01:00
|
|
|
|
2013-04-11 14:23:03 +02:00
|
|
|
private static $has_many = array();
|
2010-11-29 23:24:17 +01:00
|
|
|
|
2013-04-11 14:23:03 +02:00
|
|
|
private static $many_many = array();
|
2012-07-22 03:30:33 +02:00
|
|
|
|
2013-04-11 14:23:03 +02:00
|
|
|
private static $defaults = array(
|
2012-07-31 10:45:29 +02:00
|
|
|
"Moderated" => 1,
|
|
|
|
"IsSpam" => 0
|
2010-12-11 05:26:14 +01:00
|
|
|
);
|
2010-11-29 23:24:17 +01:00
|
|
|
|
2013-04-11 14:23:03 +02:00
|
|
|
private static $casting = array(
|
2012-07-22 03:30:33 +02:00
|
|
|
'AuthorName' => 'Varchar',
|
|
|
|
'RSSName' => 'Varchar'
|
2010-11-29 23:24:17 +01:00
|
|
|
);
|
2012-06-01 08:34:31 +02:00
|
|
|
|
2013-04-11 14:23:03 +02:00
|
|
|
private static $searchable_fields = array(
|
2012-06-01 08:34:31 +02:00
|
|
|
'Name',
|
|
|
|
'Email',
|
|
|
|
'Comment',
|
|
|
|
'Created',
|
|
|
|
'BaseClass',
|
|
|
|
);
|
|
|
|
|
2013-04-11 14:23:03 +02:00
|
|
|
private static $summary_fields = array(
|
2012-06-01 08:34:31 +02:00
|
|
|
'Name' => 'Submitted By',
|
|
|
|
'Email' => 'Email',
|
|
|
|
'Comment' => 'Comment',
|
|
|
|
'Created' => 'Date Posted',
|
|
|
|
'ParentTitle' => 'Parent',
|
2012-07-22 03:30:33 +02:00
|
|
|
'IsSpam' => 'Is Spam'
|
2012-06-01 08:34:31 +02:00
|
|
|
);
|
|
|
|
|
2013-02-21 16:39:57 +01:00
|
|
|
public function onBeforeWrite() {
|
|
|
|
parent::onBeforeWrite();
|
2012-06-01 08:34:31 +02:00
|
|
|
|
2013-02-21 16:39:57 +01:00
|
|
|
// Sanitize HTML, because its expected to be passed to the template unescaped later
|
2013-03-05 10:01:42 +01:00
|
|
|
if($this->AllowHtml) {
|
2013-02-21 16:39:57 +01:00
|
|
|
$this->Comment = $this->purifyHtml($this->Comment);
|
|
|
|
}
|
|
|
|
}
|
2010-11-29 23:24:17 +01:00
|
|
|
|
2010-12-11 05:26:14 +01:00
|
|
|
/**
|
|
|
|
* Migrates the old {@link PageComment} objects to {@link Comment}
|
|
|
|
*/
|
|
|
|
public function requireDefaultRecords() {
|
|
|
|
parent::requireDefaultRecords();
|
|
|
|
|
|
|
|
if(DB::getConn()->hasTable('PageComment')) {
|
|
|
|
$comments = DB::query("SELECT * FROM \"PageComment\"");
|
|
|
|
|
|
|
|
if($comments) {
|
2010-12-14 01:26:29 +01:00
|
|
|
while($pageComment = $comments->nextRecord()) {
|
2010-12-11 05:26:14 +01:00
|
|
|
// create a new comment from the older page comment
|
2012-03-17 00:21:58 +01:00
|
|
|
$comment = new Comment();
|
|
|
|
$comment->update($pageComment);
|
2010-12-11 05:26:14 +01:00
|
|
|
|
|
|
|
// set the variables which have changed
|
|
|
|
$comment->BaseClass = 'SiteTree';
|
|
|
|
$comment->URL = (isset($pageComment['CommenterURL'])) ? $pageComment['CommenterURL'] : "";
|
2012-08-01 04:09:05 +02:00
|
|
|
if((int)$pageComment['NeedsModeration'] == 0) $comment->Moderated = true;
|
2010-12-11 05:26:14 +01:00
|
|
|
|
|
|
|
$comment->write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-14 02:56:07 +01:00
|
|
|
DB::alteration_message("Migrated PageComment to Comment","changed");
|
2010-12-11 05:26:14 +01:00
|
|
|
DB::getConn()->dontRequireTable('PageComment');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-29 23:24:17 +01:00
|
|
|
/**
|
|
|
|
* Return a link to this comment
|
2010-11-30 10:49:21 +01:00
|
|
|
*
|
2010-11-29 23:24:17 +01:00
|
|
|
* @return string link to this comment.
|
|
|
|
*/
|
2010-12-07 01:34:17 +01:00
|
|
|
public function Link($action = "") {
|
2012-07-22 03:30:33 +02:00
|
|
|
return $this->getParent()->Link($action) . '#' . $this->Permalink();
|
2010-12-06 11:09:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the permalink for this {@link Comment}. Inserted into
|
|
|
|
* the ID tag of the comment
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2010-12-07 01:34:17 +01:00
|
|
|
public function Permalink() {
|
|
|
|
$prefix = Commenting::get_config_value($this->BaseClass, 'comment_permalink_prefix');
|
2010-12-06 11:09:04 +01:00
|
|
|
|
2010-12-07 01:34:17 +01:00
|
|
|
return $prefix . $this->ID;
|
2010-11-29 23:24:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-07-22 03:30:33 +02:00
|
|
|
* Translate the form field labels for the CMS administration
|
|
|
|
*
|
|
|
|
* @param boolean $includerelations
|
2010-11-29 23:24:17 +01:00
|
|
|
*/
|
2012-07-22 03:30:33 +02:00
|
|
|
public function fieldLabels($includerelations = true) {
|
2010-11-29 23:24:17 +01:00
|
|
|
$labels = parent::fieldLabels($includerelations);
|
2010-12-07 01:34:17 +01:00
|
|
|
$labels['Name'] = _t('Comment.NAME', 'Author Name');
|
|
|
|
$labels['Comment'] = _t('Comment.COMMENT', 'Comment');
|
|
|
|
$labels['IsSpam'] = _t('Comment.ISSPAM', 'Spam?');
|
2012-07-22 03:50:17 +02:00
|
|
|
$labels['Moderated'] = _t('Comment.MODERATED', 'Moderated?');
|
2010-11-29 23:24:17 +01:00
|
|
|
|
|
|
|
return $labels;
|
|
|
|
}
|
|
|
|
|
2010-12-07 01:34:17 +01:00
|
|
|
/**
|
|
|
|
* Returns the parent {@link DataObject} this comment is attached too
|
|
|
|
*
|
|
|
|
* @return DataObject
|
|
|
|
*/
|
|
|
|
public function getParent() {
|
2013-03-05 08:34:15 +01:00
|
|
|
if(!$this->BaseClass) {
|
|
|
|
$this->BaseClass = "SiteTree";
|
|
|
|
}
|
2010-12-11 06:01:19 +01:00
|
|
|
|
2013-03-05 08:34:15 +01:00
|
|
|
return ($this->ParentID) ? DataObject::get_by_id($this->BaseClass, $this->ParentID) : null;
|
2010-12-07 01:34:17 +01:00
|
|
|
}
|
2012-06-01 08:34:31 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a string to help identify the parent of the comment
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-03-05 10:01:42 +01:00
|
|
|
public function getParentTitle() {
|
2012-06-01 08:34:31 +02:00
|
|
|
$parent = $this->getParent();
|
2012-07-22 03:30:33 +02:00
|
|
|
|
2013-03-05 08:34:15 +01:00
|
|
|
return ($parent && $parent->Title) ? $parent->Title : $parent->ClassName . " #" . $parent->ID;
|
2012-06-01 08:34:31 +02:00
|
|
|
}
|
2013-03-05 08:34:15 +01:00
|
|
|
|
2012-12-17 20:53:16 +01:00
|
|
|
/**
|
|
|
|
* Comment-parent classnames obviousely vary, return the parent classname
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getParentClassName() {
|
2012-12-19 03:07:18 +01:00
|
|
|
$default = 'SiteTree';
|
2013-03-05 10:01:42 +01:00
|
|
|
|
2012-12-19 03:07:18 +01:00
|
|
|
if(!$this->BaseClass) {
|
|
|
|
return $default;
|
|
|
|
}
|
2013-03-05 10:01:42 +01:00
|
|
|
|
2012-12-17 20:53:16 +01:00
|
|
|
return $this->BaseClass;
|
|
|
|
}
|
2010-12-07 01:34:17 +01:00
|
|
|
|
2013-03-05 10:01:42 +01:00
|
|
|
/**
|
|
|
|
* Return the content for this comment escaped depending on the Html state.
|
|
|
|
*
|
|
|
|
* @return HTMLText
|
|
|
|
*/
|
|
|
|
public function getEscapedComment() {
|
|
|
|
$comment = $this->dbObject('Comment');
|
|
|
|
|
|
|
|
if ($comment->exists()) {
|
|
|
|
if ($this->AllowHtml) {
|
|
|
|
return DBField::create_field('HTMLText', nl2br($comment->RAW()));
|
|
|
|
} else {
|
|
|
|
return DBField::create_field('HTMLText', sprintf("<p>%s</p>", nl2br($comment->XML())));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $comment;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return whether this comment is a preview (has not been written to the db)
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isPreview() {
|
|
|
|
return ($this->ID < 1);
|
|
|
|
}
|
|
|
|
|
2010-11-29 23:24:17 +01:00
|
|
|
/**
|
2010-12-06 11:09:04 +01:00
|
|
|
* @todo needs to compare to the new {@link Commenting} configuration API
|
|
|
|
*
|
2010-11-29 23:24:17 +01:00
|
|
|
* @return Boolean
|
|
|
|
*/
|
2012-07-22 03:30:33 +02:00
|
|
|
public function canCreate($member = null) {
|
2010-11-30 10:49:21 +01:00
|
|
|
return false;
|
2010-11-29 23:24:17 +01:00
|
|
|
}
|
2010-11-30 10:49:21 +01:00
|
|
|
|
2010-11-29 23:24:17 +01:00
|
|
|
/**
|
2012-07-22 03:30:33 +02:00
|
|
|
* Checks for association with a page, and {@link SiteTree->ProvidePermission}
|
|
|
|
* flag being set to true.
|
2010-11-29 23:24:17 +01:00
|
|
|
*
|
|
|
|
* @param Member $member
|
|
|
|
* @return Boolean
|
|
|
|
*/
|
2012-07-22 03:30:33 +02:00
|
|
|
public function canView($member = null) {
|
2010-11-29 23:24:17 +01:00
|
|
|
if(!$member) $member = Member::currentUser();
|
|
|
|
|
|
|
|
// Standard mechanism for accepting permission changes from decorators
|
|
|
|
$extended = $this->extendedCan('canView', $member);
|
|
|
|
if($extended !== null) return $extended;
|
|
|
|
|
2010-12-07 01:34:17 +01:00
|
|
|
$page = $this->getParent();
|
2012-07-31 10:45:29 +02:00
|
|
|
$admin = (bool) Permission::checkMember($member, 'CMS_ACCESS_CommentAdmin');
|
|
|
|
|
|
|
|
return (($page && $page->ProvideComments && $page->canView($member)) || $admin);
|
2010-11-29 23:24:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-07-22 03:30:33 +02:00
|
|
|
* Checks for "CMS_ACCESS_CommentAdmin" permission codes and
|
|
|
|
* {@link canView()}.
|
2010-11-29 23:24:17 +01:00
|
|
|
*
|
|
|
|
* @param Member $member
|
|
|
|
* @return Boolean
|
|
|
|
*/
|
2012-07-22 03:30:33 +02:00
|
|
|
public function canEdit($member = null) {
|
2010-11-29 23:24:17 +01:00
|
|
|
if(!$member) $member = Member::currentUser();
|
|
|
|
|
|
|
|
// Standard mechanism for accepting permission changes from decorators
|
|
|
|
$extended = $this->extendedCan('canEdit', $member);
|
|
|
|
if($extended !== null) return $extended;
|
|
|
|
|
|
|
|
if(!$this->canView($member)) return false;
|
|
|
|
|
|
|
|
return (bool)Permission::checkMember($member, 'CMS_ACCESS_CommentAdmin');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-07-22 03:30:33 +02:00
|
|
|
* Checks for "CMS_ACCESS_CommentAdmin" permission codes and
|
|
|
|
* {@link canEdit()}.
|
2010-11-29 23:24:17 +01:00
|
|
|
*
|
|
|
|
* @param Member $member
|
|
|
|
* @return Boolean
|
|
|
|
*/
|
2012-07-22 03:30:33 +02:00
|
|
|
public function canDelete($member = null) {
|
2010-11-29 23:24:17 +01:00
|
|
|
if(!$member) $member = Member::currentUser();
|
|
|
|
|
|
|
|
// Standard mechanism for accepting permission changes from decorators
|
|
|
|
$extended = $this->extendedCan('canDelete', $member);
|
|
|
|
if($extended !== null) return $extended;
|
|
|
|
|
|
|
|
return $this->canEdit($member);
|
|
|
|
}
|
2012-07-22 03:30:33 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the authors name for the comment
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getAuthorName() {
|
2010-12-07 01:34:17 +01:00
|
|
|
if($this->Name) {
|
|
|
|
return $this->Name;
|
2012-07-22 03:30:33 +02:00
|
|
|
} else if($this->Author()) {
|
2010-12-07 01:34:17 +01:00
|
|
|
return $this->Author()->getName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-22 03:30:33 +02:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function DeleteLink() {
|
|
|
|
if($this->canDelete()) {
|
|
|
|
$token = SecurityToken::inst();
|
|
|
|
|
2012-07-31 10:45:29 +02:00
|
|
|
return DBField::create_field("Varchar", Director::absoluteURL($token->addToUrl(sprintf(
|
2012-07-22 03:30:33 +02:00
|
|
|
"CommentingController/delete/%s", (int) $this->ID
|
2012-07-31 10:45:29 +02:00
|
|
|
))));
|
2012-07-22 03:30:33 +02:00
|
|
|
}
|
2010-12-07 01:34:17 +01:00
|
|
|
}
|
|
|
|
|
2012-07-22 03:30:33 +02:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function SpamLink() {
|
|
|
|
if($this->canEdit() && !$this->IsSpam) {
|
|
|
|
$token = SecurityToken::inst();
|
|
|
|
|
2012-07-31 10:45:29 +02:00
|
|
|
return DBField::create_field("Varchar", Director::absoluteURL($token->addToUrl(sprintf(
|
2012-07-22 03:30:33 +02:00
|
|
|
"CommentingController/spam/%s", (int) $this->ID
|
2012-07-31 10:45:29 +02:00
|
|
|
))));
|
2012-07-22 03:30:33 +02:00
|
|
|
}
|
2010-12-07 01:34:17 +01:00
|
|
|
}
|
|
|
|
|
2012-07-22 03:30:33 +02:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function HamLink() {
|
|
|
|
if($this->canEdit() && $this->IsSpam) {
|
|
|
|
$token = SecurityToken::inst();
|
|
|
|
|
2012-07-31 10:45:29 +02:00
|
|
|
return DBField::create_field("Varchar", Director::absoluteURL($token->addToUrl(sprintf(
|
2012-07-22 03:30:33 +02:00
|
|
|
"CommentingController/ham/%s", (int) $this->ID
|
2012-07-31 10:45:29 +02:00
|
|
|
))));
|
2012-07-22 03:30:33 +02:00
|
|
|
}
|
2010-12-07 01:34:17 +01:00
|
|
|
}
|
|
|
|
|
2012-07-22 03:30:33 +02:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function ApproveLink() {
|
|
|
|
if($this->canEdit() && !$this->Moderated) {
|
|
|
|
$token = SecurityToken::inst();
|
|
|
|
|
2012-07-31 10:45:29 +02:00
|
|
|
return DBField::create_field("Varchar", Director::absoluteURL($token->addToUrl(sprintf(
|
2012-07-22 03:30:33 +02:00
|
|
|
"CommentingController/approve/%s", (int) $this->ID
|
2012-07-31 10:45:29 +02:00
|
|
|
))));
|
2012-07-22 03:30:33 +02:00
|
|
|
}
|
2010-12-07 01:34:17 +01:00
|
|
|
}
|
|
|
|
|
2012-07-22 03:30:33 +02:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function SpamClass() {
|
2012-07-31 10:45:29 +02:00
|
|
|
if($this->IsSpam) {
|
2010-12-07 01:34:17 +01:00
|
|
|
return 'spam';
|
2012-07-31 10:45:29 +02:00
|
|
|
} else if(!$this->Moderated) {
|
2010-12-07 01:34:17 +01:00
|
|
|
return 'unmoderated';
|
|
|
|
} else {
|
|
|
|
return 'notspam';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-22 03:30:33 +02:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getTitle() {
|
2012-07-31 10:45:29 +02:00
|
|
|
$title = sprintf(_t('Comment.COMMENTBY', "Comment by %s", 'Name'), $this->getAuthorName());
|
2012-07-22 03:30:33 +02:00
|
|
|
|
|
|
|
if($parent = $this->getParent()) {
|
|
|
|
if($parent->Title) {
|
|
|
|
$title .= sprintf(" %s %s", _t('Comment.ON', 'on'), $parent->Title);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $title;
|
2010-12-07 01:34:17 +01:00
|
|
|
}
|
2012-12-17 20:53:16 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Modify the default fields shown to the user
|
|
|
|
*/
|
|
|
|
public function getCMSFields() {
|
|
|
|
$fields = parent::getCMSFields();
|
2013-01-15 21:51:34 +01:00
|
|
|
$parent = $this->getParent()->ID;
|
2013-02-21 16:39:57 +01:00
|
|
|
|
2013-03-05 10:01:42 +01:00
|
|
|
$hidden = array('ParentID', 'AuthorID', 'BaseClass', 'AllowHtml');
|
|
|
|
|
|
|
|
foreach($hidden as $private) {
|
|
|
|
$fields->removeByName($private);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $fields;
|
2013-02-21 16:39:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param String $dirtyHtml
|
|
|
|
* @return String
|
|
|
|
*/
|
|
|
|
public function purifyHtml($dirtyHtml) {
|
|
|
|
$purifier = $this->getHtmlPurifierService();
|
|
|
|
return $purifier->purify($dirtyHtml);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return HTMLPurifier (or anything with a "purify()" method)
|
|
|
|
*/
|
|
|
|
public function getHtmlPurifierService() {
|
|
|
|
$config = HTMLPurifier_Config::createDefault();
|
2013-03-05 10:01:42 +01:00
|
|
|
$config->set('HTML.AllowedElements',
|
2013-02-21 16:39:57 +01:00
|
|
|
Commenting::get_config_value($this->BaseClass, 'html_allowed_elements')
|
|
|
|
);
|
|
|
|
$config->set('AutoFormat.AutoParagraph', true);
|
|
|
|
$config->set('AutoFormat.Linkify', true);
|
|
|
|
$config->set('URI.DisableExternalResources', true);
|
|
|
|
return new HTMLPurifier($config);
|
|
|
|
}
|
2013-03-06 09:50:41 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Calcualate the gravatar link from the email address
|
|
|
|
*/
|
|
|
|
public function Gravatar() {
|
|
|
|
$gravatar = '';
|
|
|
|
$use_gravatar = Commenting::get_config_value($this->BaseClass, 'use_gravatar');
|
|
|
|
if ($use_gravatar) {
|
|
|
|
$gravatar = "http://www.gravatar.com/avatar/" . md5( strtolower(trim($this->Email)));
|
2013-03-06 10:09:11 +01:00
|
|
|
$gravatarsize = Commenting::get_config_value($this->BaseClass, 'gravatar_size');
|
2013-03-26 17:17:34 +01:00
|
|
|
$gravatardefault = Commenting::get_config_value($this->BaseClass, 'gravatar_default');
|
|
|
|
$gravatarrating = Commenting::get_config_value($this->BaseClass, 'gravatar_rating');
|
|
|
|
$gravatar.= "?s=".$gravatarsize."&d=".$gravatardefault."&r=".$gravatarrating;
|
2013-03-06 09:50:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $gravatar;
|
|
|
|
}
|
2012-03-17 00:21:58 +01:00
|
|
|
}
|