2010-11-29 23:24:17 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a single comment object.
|
2015-03-27 05:40:00 +01:00
|
|
|
*
|
|
|
|
* @property string $Name
|
|
|
|
* @property string $Comment
|
|
|
|
* @property string $Email
|
|
|
|
* @property string $URL
|
|
|
|
* @property string $BaseClass
|
|
|
|
* @property boolean $Moderated
|
|
|
|
* @property boolean $IsSpam True if the comment is known as spam
|
|
|
|
* @property integer $ParentID ID of the parent page / dataobject
|
|
|
|
* @property boolean $AllowHtml If true, treat $Comment as HTML instead of plain text
|
|
|
|
* @property string $SecretToken Secret admin token required to provide moderation links between sessions
|
|
|
|
* @method Member Author()
|
2010-11-29 23:24:17 +01:00
|
|
|
* @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",
|
2015-03-27 05:40:00 +01:00
|
|
|
'AllowHtml' => "Boolean",
|
|
|
|
"SecretToken" => "Varchar(255)",
|
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',
|
2015-03-27 05:40:00 +01:00
|
|
|
'RSSName' => 'Varchar',
|
|
|
|
'DeleteLink' => 'Varchar',
|
|
|
|
'SpamLink' => 'Varchar',
|
|
|
|
'HamLink' => 'Varchar',
|
|
|
|
'ApproveLink' => 'Varchar',
|
|
|
|
'Permalink' => '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);
|
|
|
|
}
|
|
|
|
}
|
2015-03-27 05:40:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Comment_SecurityToken
|
|
|
|
*/
|
|
|
|
public function getSecurityToken() {
|
|
|
|
return Injector::inst()->createWithArgs('Comment_SecurityToken', array($this));
|
|
|
|
}
|
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 = "") {
|
2015-03-27 05:40:00 +01:00
|
|
|
if($parent = $this->getParent()){
|
|
|
|
return $parent->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');
|
2013-06-20 15:40:25 +02:00
|
|
|
$labels['Email'] = _t('Comment.EMAIL', 'Email');
|
|
|
|
$labels['URL'] = _t('Comment.URL', 'URL');
|
2010-12-07 01:34:17 +01:00
|
|
|
$labels['IsSpam'] = _t('Comment.ISSPAM', 'Spam?');
|
2012-07-22 03:50:17 +02:00
|
|
|
$labels['Moderated'] = _t('Comment.MODERATED', 'Moderated?');
|
2013-06-20 15:40:25 +02:00
|
|
|
$labels['ParentTitle'] = _t('Comment.PARENTTITLE', 'Parent');
|
|
|
|
$labels['Created'] = _t('Comment.CREATED', 'Date posted');
|
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() {
|
2013-06-11 22:13:50 +02:00
|
|
|
if($parent = $this->getParent()){
|
2013-03-05 08:34:15 +01:00
|
|
|
return ($parent && $parent->Title) ? $parent->Title : $parent->ClassName . " #" . $parent->ID;
|
2013-06-11 22:13:50 +02:00
|
|
|
}
|
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
|
|
|
/**
|
2015-03-27 05:40:00 +01:00
|
|
|
* Generate a secure admin-action link authorised for the specified member
|
|
|
|
*
|
|
|
|
* @param string $action An action on CommentingController to link to
|
|
|
|
* @param Member $member The member authorised to invoke this action
|
2012-07-22 03:30:33 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
2015-03-27 05:40:00 +01:00
|
|
|
protected function actionLink($action, $member = null) {
|
|
|
|
if(!$member) $member = Member::currentUser();
|
|
|
|
if(!$member) return false;
|
2012-07-22 03:30:33 +02:00
|
|
|
|
2015-03-27 05:40:00 +01:00
|
|
|
$url = Controller::join_links(
|
|
|
|
Director::baseURL(),
|
|
|
|
"CommentingController",
|
|
|
|
$action,
|
|
|
|
$this->ID
|
|
|
|
);
|
|
|
|
|
|
|
|
// Limit access for this user
|
|
|
|
$token = $this->getSecurityToken();
|
|
|
|
return $token->addToUrl($url, $member);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Link to delete this comment
|
|
|
|
*
|
|
|
|
* @param Member $member
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function DeleteLink($member = null) {
|
2015-04-01 03:58:03 +02:00
|
|
|
if($this->canDelete($member)) {
|
|
|
|
return $this->actionLink('delete', $member);
|
|
|
|
}
|
2010-12-07 01:34:17 +01:00
|
|
|
}
|
|
|
|
|
2012-07-22 03:30:33 +02:00
|
|
|
/**
|
2015-03-27 05:40:00 +01:00
|
|
|
* Link to mark as spam
|
|
|
|
*
|
|
|
|
* @param Member $member
|
2012-07-22 03:30:33 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
2015-03-27 05:40:00 +01:00
|
|
|
public function SpamLink($member = null) {
|
2015-04-01 03:58:03 +02:00
|
|
|
if($this->canEdit($member) && !$this->IsSpam) {
|
|
|
|
return $this->actionLink('spam', $member);
|
|
|
|
}
|
2010-12-07 01:34:17 +01:00
|
|
|
}
|
|
|
|
|
2012-07-22 03:30:33 +02:00
|
|
|
/**
|
2015-03-27 05:40:00 +01:00
|
|
|
* Link to mark as not-spam (ham)
|
|
|
|
*
|
|
|
|
* @param Member $member
|
2012-07-22 03:30:33 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
2015-03-27 05:40:00 +01:00
|
|
|
public function HamLink($member = null) {
|
2015-04-01 03:58:03 +02:00
|
|
|
if($this->canEdit($member) && $this->IsSpam) {
|
|
|
|
return $this->actionLink('ham', $member);
|
|
|
|
}
|
2010-12-07 01:34:17 +01:00
|
|
|
}
|
|
|
|
|
2012-07-22 03:30:33 +02:00
|
|
|
/**
|
2015-03-27 05:40:00 +01:00
|
|
|
* Link to approve this comment
|
|
|
|
*
|
|
|
|
* @param Member $member
|
2012-07-22 03:30:33 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
2015-03-27 05:40:00 +01:00
|
|
|
public function ApproveLink($member = null) {
|
2015-04-01 03:58:03 +02:00
|
|
|
if($this->canEdit($member) && !$this->Moderated) {
|
|
|
|
return $this->actionLink('approve', $member);
|
|
|
|
}
|
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-02-21 16:39:57 +01:00
|
|
|
|
2015-03-27 05:40:00 +01:00
|
|
|
$hidden = array('ParentID', 'AuthorID', 'BaseClass', 'AllowHtml', 'SecretToken');
|
2013-03-05 10:01:42 +01:00
|
|
|
|
|
|
|
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);
|
2015-01-12 02:00:20 +01:00
|
|
|
$config->set('Cache.SerializerPath', getTempFolder());
|
2013-02-21 16:39:57 +01:00
|
|
|
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
|
|
|
}
|
2015-03-27 05:40:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides the ability to generate cryptographically secure tokens for comment moderation
|
|
|
|
*/
|
|
|
|
class Comment_SecurityToken {
|
|
|
|
|
|
|
|
private $secret = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Comment $comment Comment to generate this token for
|
|
|
|
*/
|
|
|
|
public function __construct($comment) {
|
|
|
|
if(!$comment->SecretToken) {
|
|
|
|
$comment->SecretToken = $this->generate();
|
|
|
|
$comment->write();
|
|
|
|
}
|
|
|
|
$this->secret = $comment->SecretToken;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the token for the given salt and current secret
|
|
|
|
*
|
|
|
|
* @param string $salt
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function getToken($salt) {
|
|
|
|
return function_exists('hash_pbkdf2')
|
|
|
|
? hash_pbkdf2('sha256', $this->secret, $salt, 1000, 30)
|
|
|
|
: $this->hash_pbkdf2('sha256', $this->secret, $salt, 100, 30);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the member-specific salt.
|
|
|
|
*
|
|
|
|
* The reason for making the salt specific to a user is that it cannot be "passed in" via a querystring,
|
|
|
|
* requiring the same user to be present at both the link generation and the controller action.
|
|
|
|
*
|
|
|
|
* @param string $salt Single use salt
|
|
|
|
* @param type $member Member object
|
|
|
|
* @return string Generated salt specific to this member
|
|
|
|
*/
|
|
|
|
protected function memberSalt($salt, $member) {
|
|
|
|
// Fallback to salting with ID in case the member has not one set
|
|
|
|
return $salt . ($member->Salt ?: $member->ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $url Comment action URL
|
|
|
|
* @param Member $member Member to restrict access to this action to
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function addToUrl($url, $member) {
|
|
|
|
$salt = $this->generate(15); // New random salt; Will be passed into url
|
|
|
|
// Generate salt specific to this member
|
|
|
|
$memberSalt = $this->memberSalt($salt, $member);
|
|
|
|
$token = $this->getToken($memberSalt);
|
|
|
|
return Controller::join_links(
|
|
|
|
$url,
|
|
|
|
sprintf(
|
|
|
|
'?t=%s&s=%s',
|
|
|
|
urlencode($token),
|
|
|
|
urlencode($salt)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param SS_HTTPRequest $request
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function checkRequest($request) {
|
|
|
|
$member = Member::currentUser();
|
|
|
|
if(!$member) return false;
|
|
|
|
|
|
|
|
$salt = $request->getVar('s');
|
|
|
|
$memberSalt = $this->memberSalt($salt, $member);
|
|
|
|
$token = $this->getToken($memberSalt);
|
|
|
|
|
|
|
|
// Ensure tokens match
|
|
|
|
return $token === $request->getVar('t');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates new random key
|
|
|
|
*
|
|
|
|
* @param integer $length
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function generate($length = null) {
|
|
|
|
$generator = new RandomGenerator();
|
|
|
|
$result = $generator->randomToken('sha256');
|
|
|
|
if($length !== null) return substr ($result, 0, $length);
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------
|
|
|
|
* PBKDF2 Implementation (described in RFC 2898) from php.net
|
|
|
|
*-----------------------------------------------------------
|
|
|
|
* @param string a hash algorithm
|
|
|
|
* @param string p password
|
|
|
|
* @param string s salt
|
|
|
|
* @param int c iteration count (use 1000 or higher)
|
|
|
|
* @param int kl derived key length
|
|
|
|
* @param int st start position of result
|
|
|
|
*
|
|
|
|
* @return string derived key
|
|
|
|
*/
|
|
|
|
private function hash_pbkdf2 ($a, $p, $s, $c, $kl, $st=0) {
|
|
|
|
|
|
|
|
$kb = $st+$kl; // Key blocks to compute
|
|
|
|
$dk = ''; // Derived key
|
|
|
|
|
|
|
|
// Create key
|
|
|
|
for ($block=1; $block<=$kb; $block++) {
|
|
|
|
|
|
|
|
// Initial hash for this block
|
|
|
|
$ib = $h = hash_hmac($a, $s . pack('N', $block), $p, true);
|
|
|
|
|
|
|
|
// Perform block iterations
|
|
|
|
for ($i=1; $i<$c; $i++) {
|
|
|
|
// XOR each iterate
|
|
|
|
$ib ^= ($h = hash_hmac($a, $h, $p, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
$dk .= $ib; // Append iterated block
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return derived key of correct length
|
|
|
|
return substr($dk, $st, $kl);
|
|
|
|
}
|
|
|
|
}
|