2013-07-21 12:23:35 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Blog Holder
|
|
|
|
*
|
|
|
|
* @package silverstripe
|
|
|
|
* @subpackage blog
|
2015-03-06 03:52:07 +01:00
|
|
|
*
|
|
|
|
* @method HasManyList Tags() List of tags in this blog
|
|
|
|
* @method HasManyList Categories() List of categories in this blog
|
|
|
|
* @method ManyManyList Editors() List of editors
|
|
|
|
* @method ManyManyList Writers() List of writers
|
|
|
|
* @method ManyManyList Contributors() List of contributors
|
2013-07-21 12:23:35 +02:00
|
|
|
*
|
2014-02-20 17:37:55 +01:00
|
|
|
* @author Michael Strong <github@michaelstrong.co.uk>
|
2013-07-21 12:23:35 +02:00
|
|
|
**/
|
2015-03-06 03:52:07 +01:00
|
|
|
class Blog extends Page implements PermissionProvider {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Permission for user management
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
const MANAGE_USERS = 'BLOG_MANAGE_USERS';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If true, users assigned as editor, writer, or contributor will be automatically
|
|
|
|
* granted CMS_ACCESS_CMSMain permission. If false, only users with this permission
|
|
|
|
* already may be assigned.
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
* @config
|
|
|
|
*/
|
|
|
|
private static $grant_user_access = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Permission to either require, or grant to users assigned to work on this blog
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @config
|
|
|
|
*/
|
|
|
|
private static $grant_user_permission = 'CMS_ACCESS_CMSMain';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Group code to assign newly granted users toh
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @config
|
|
|
|
*/
|
|
|
|
private static $grant_user_group = 'blog-users';
|
2013-07-21 12:23:35 +02:00
|
|
|
|
2013-08-04 18:38:26 +02:00
|
|
|
private static $db = array(
|
|
|
|
"PostsPerPage" => "Int",
|
|
|
|
);
|
|
|
|
|
2013-07-21 12:23:35 +02:00
|
|
|
private static $has_many = array(
|
|
|
|
"Tags" => "BlogTag",
|
2013-08-04 18:38:26 +02:00
|
|
|
"Categories" => "BlogCategory",
|
2013-07-21 12:23:35 +02:00
|
|
|
);
|
2014-07-27 10:40:08 +02:00
|
|
|
|
2015-03-06 03:52:07 +01:00
|
|
|
private static $many_many = array(
|
|
|
|
'Editors' => 'Member',
|
|
|
|
'Writers' => 'Member',
|
|
|
|
'Contributors' => 'Member',
|
|
|
|
);
|
2013-07-21 12:23:35 +02:00
|
|
|
|
|
|
|
private static $allowed_children = array(
|
2013-08-04 18:38:26 +02:00
|
|
|
"BlogPost",
|
2013-07-21 12:23:35 +02:00
|
|
|
);
|
|
|
|
|
2013-08-04 18:38:26 +02:00
|
|
|
private static $extensions = array(
|
|
|
|
"BlogFilter",
|
|
|
|
);
|
2013-07-21 12:23:35 +02:00
|
|
|
|
2013-08-11 00:34:46 +02:00
|
|
|
private static $defaults = array(
|
|
|
|
"ProvideComments" => false,
|
|
|
|
);
|
2013-07-21 12:23:35 +02:00
|
|
|
|
2014-12-11 11:42:36 +01:00
|
|
|
private static $description = 'Adds a blog to your website.';
|
2013-07-21 12:23:35 +02:00
|
|
|
|
|
|
|
public function getCMSFields() {
|
2014-07-27 07:34:43 +02:00
|
|
|
$self =& $this;
|
|
|
|
$this->beforeUpdateCMSFields(function($fields) use ($self) {
|
2013-07-21 12:23:35 +02:00
|
|
|
|
2014-06-13 17:19:15 +02:00
|
|
|
// Create categories and tag config
|
|
|
|
$config = GridFieldConfig_RecordEditor::create();
|
|
|
|
$config->removeComponentsByType("GridFieldAddNewButton");
|
|
|
|
$config->addComponent(new GridFieldAddByDBField("buttons-before-left"));
|
2013-08-04 18:38:26 +02:00
|
|
|
|
2014-06-13 17:19:15 +02:00
|
|
|
$categories = GridField::create(
|
|
|
|
"Categories",
|
|
|
|
_t("Blog.Categories", "Categories"),
|
2014-07-27 07:34:43 +02:00
|
|
|
$self->Categories(),
|
2014-06-13 17:19:15 +02:00
|
|
|
$config
|
|
|
|
);
|
2013-08-04 18:38:26 +02:00
|
|
|
|
2014-06-13 17:19:15 +02:00
|
|
|
$tags = GridField::create(
|
|
|
|
"Tags",
|
|
|
|
_t("Blog.Tags", "Tags"),
|
2014-07-27 07:34:43 +02:00
|
|
|
$self->Tags(),
|
2014-06-13 17:19:15 +02:00
|
|
|
$config
|
|
|
|
);
|
2013-08-04 18:38:26 +02:00
|
|
|
|
2014-06-13 17:19:15 +02:00
|
|
|
$fields->addFieldsToTab("Root.BlogOptions", array(
|
|
|
|
$categories,
|
|
|
|
$tags
|
|
|
|
));
|
|
|
|
});
|
|
|
|
|
|
|
|
$fields = parent::getCMSFields();
|
2013-08-04 18:38:26 +02:00
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
2015-03-06 03:52:07 +01:00
|
|
|
/**
|
|
|
|
* Check if this member is an editor of the blog
|
|
|
|
*
|
|
|
|
* @param Member $member
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isEditor($member) {
|
|
|
|
$isEditor = $this->isMemberOf($member, $this->Editors());
|
|
|
|
$this->extend('updateIsEditor', $isEditor, $member);
|
|
|
|
return $isEditor;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if this member is a writer of the blog
|
|
|
|
*
|
|
|
|
* @param Member $member
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isWriter($member) {
|
|
|
|
$isWriter = $this->isMemberOf($member, $this->Writers());
|
|
|
|
$this->extend('updateIsWriter', $isWriter, $member);
|
|
|
|
return $isWriter;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if this member is a contributor of the blog
|
|
|
|
*
|
|
|
|
* @param Member $member
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isContributor($member) {
|
|
|
|
$isContributor = $this->isMemberOf($member, $this->Contributors());
|
|
|
|
$this->extend('updateIsContributor', $isContributor, $member);
|
|
|
|
return $isContributor;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if the given member belongs to the given subrelation
|
|
|
|
*
|
|
|
|
* @param Member $member
|
|
|
|
* @param DataList $list Relation to check
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
protected function isMemberOf($member, $list) {
|
|
|
|
if(!$member || !$member->exists()) return false;
|
|
|
|
|
|
|
|
if($list instanceof UnsavedRelationList) {
|
|
|
|
return in_array($member->ID, $list->getIDList());
|
|
|
|
}
|
|
|
|
|
|
|
|
return $list->byID($member->ID) !== null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function canEdit($member = null) {
|
|
|
|
$member = $member ?: Member::currentUser();
|
|
|
|
if(is_numeric($member)) $member = Member::get()->byID($member);
|
|
|
|
|
|
|
|
// Allow editors to edit this page
|
|
|
|
if($this->isEditor($member)) return true;
|
|
|
|
|
|
|
|
return parent::canEdit($member);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if this user can edit the editors list
|
|
|
|
*
|
|
|
|
* @param Member $member
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function canEditEditors($member = null) {
|
|
|
|
$member = $member ?: Member::currentUser();
|
|
|
|
|
|
|
|
$extended = $this->extendedCan('canEditEditors', $member);
|
|
|
|
if($extended !== null) return $extended;
|
|
|
|
|
|
|
|
// Check permission
|
|
|
|
return Permission::checkMember($member, self::MANAGE_USERS);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if this user can edit writers list
|
|
|
|
*
|
|
|
|
* @param Member $member
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function canEditWriters($member = null) {
|
|
|
|
$member = $member ?: Member::currentUser();
|
|
|
|
if(is_numeric($member)) $member = Member::get()->byID($member);
|
|
|
|
|
|
|
|
$extended = $this->extendedCan('canEditWriters', $member);
|
|
|
|
if($extended !== null) return $extended;
|
|
|
|
|
|
|
|
// Editors can edit writers
|
|
|
|
if($this->isEditor($member)) return true;
|
|
|
|
|
|
|
|
// Check permission
|
|
|
|
return Permission::checkMember($member, self::MANAGE_USERS);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines if this user can edit the contributors list
|
|
|
|
*
|
|
|
|
* @param type $member
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function canEditContributors($member = null) {
|
|
|
|
$member = $member ?: Member::currentUser();
|
|
|
|
if(is_numeric($member)) $member = Member::get()->byID($member);
|
|
|
|
|
|
|
|
$extended = $this->extendedCan('canEditContributors', $member);
|
|
|
|
if($extended !== null) return $extended;
|
|
|
|
|
|
|
|
// Editors can edit writers
|
|
|
|
if($this->isEditor($member)) return true;
|
|
|
|
|
|
|
|
// Check permission
|
|
|
|
return Permission::checkMember($member, self::MANAGE_USERS);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function canAddChildren($member = null) {
|
|
|
|
$member = $member ?: Member::currentUser();
|
|
|
|
if(is_numeric($member)) $member = Member::get()->byID($member);
|
|
|
|
|
|
|
|
// Editors, Writers and Contributors can add children
|
|
|
|
if($this->isEditor($member) || $this->isWriter($member) || $this->isContributor($member)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::canAddChildren($member);
|
|
|
|
}
|
2013-08-04 18:38:26 +02:00
|
|
|
|
2014-07-27 10:40:08 +02:00
|
|
|
|
2013-08-04 18:38:26 +02:00
|
|
|
public function getSettingsFields() {
|
|
|
|
$fields = parent::getSettingsFields();
|
2013-10-10 00:09:28 +02:00
|
|
|
$fields->addFieldToTab("Root.Settings",
|
2014-02-16 06:19:26 +01:00
|
|
|
NumericField::create("PostsPerPage", _t("Blog.PostsPerPage", "Posts Per Page"))
|
|
|
|
);
|
2015-03-06 03:52:07 +01:00
|
|
|
|
|
|
|
// Roles and Permissions
|
|
|
|
$members = $this->getCandidateUsers()->map()->toArray();
|
|
|
|
|
|
|
|
// Editors
|
|
|
|
$editorField = ListboxField::create('Editors', 'Editors', $members)
|
|
|
|
->setMultiple(true)
|
|
|
|
->setDescription('Editors are able to manage this blog and its posts');
|
|
|
|
if(!$this->canEditEditors()) {
|
|
|
|
$editorField = $editorField->performDisabledTransformation();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Writers
|
|
|
|
$writerField = ListboxField::create('Writers', 'Writers', $members)
|
|
|
|
->setMultiple(true)
|
|
|
|
->setDescription('Writers are able to write and publish posts');
|
|
|
|
if(!$this->canEditWriters()) {
|
|
|
|
$writerField = $writerField->performDisabledTransformation();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Contributors
|
|
|
|
$contributorField = ListboxField::create('Contributors', 'Contributors', $members)
|
|
|
|
->setMultiple(true)
|
|
|
|
->setDescription('Contributors are able to write, but not publish, posts');
|
|
|
|
if(!$this->canEditContributors()) {
|
|
|
|
$contributorField = $contributorField->performDisabledTransformation();
|
|
|
|
}
|
|
|
|
|
|
|
|
$fields->addFieldsToTab('Root.Users', array(
|
|
|
|
$editorField,
|
|
|
|
$writerField,
|
|
|
|
$contributorField
|
|
|
|
));
|
|
|
|
|
2013-07-21 12:23:35 +02:00
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2014-12-11 11:42:36 +01:00
|
|
|
* Return blog posts
|
2013-07-21 12:23:35 +02:00
|
|
|
*
|
|
|
|
* @return DataList of BlogPost objects
|
|
|
|
**/
|
|
|
|
public function getBlogPosts() {
|
2013-10-09 16:20:46 +02:00
|
|
|
$blogPosts = BlogPost::get()->filter("ParentID", $this->ID);
|
|
|
|
//Allow decorators to manipulate list
|
|
|
|
$this->extend('updateGetBlogPosts', $blogPosts);
|
|
|
|
return $blogPosts;
|
2013-07-21 12:23:35 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 00:09:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns blogs posts for a given date period.
|
|
|
|
*
|
|
|
|
* @param $year int
|
|
|
|
* @param $month int
|
2015-03-06 03:52:07 +01:00
|
|
|
* @param $day int
|
2013-10-10 00:09:28 +02:00
|
|
|
*
|
|
|
|
* @return DataList
|
|
|
|
**/
|
|
|
|
public function getArchivedBlogPosts($year, $month = null, $day = null) {
|
|
|
|
$query = $this->getBlogPosts()->dataQuery();
|
|
|
|
|
|
|
|
$stage = $query->getQueryParam("Versioned.stage");
|
|
|
|
if($stage) $stage = '_' . Convert::raw2sql($stage);
|
|
|
|
|
|
|
|
$query->innerJoin("BlogPost", "`SiteTree" . $stage . "`.`ID` = `BlogPost" . $stage . "`.`ID`");
|
|
|
|
$query->where("YEAR(PublishDate) = '" . Convert::raw2sql($year) . "'");
|
|
|
|
if($month) {
|
|
|
|
$query->where("MONTH(PublishDate) = '" . Convert::raw2sql($month) . "'");
|
|
|
|
if($day) {
|
|
|
|
$query->where("DAY(PublishDate) = '" . Convert::raw2sql($day) . "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->getBlogPosts()->setDataQuery($query);
|
|
|
|
}
|
|
|
|
|
2014-12-11 11:42:36 +01:00
|
|
|
|
2015-03-22 23:18:02 +01:00
|
|
|
/**
|
|
|
|
* Get a link to a Member profile.
|
|
|
|
*
|
|
|
|
* @param urlSegment
|
|
|
|
* @return String
|
|
|
|
*/
|
|
|
|
public function ProfileLink($urlSegment) {
|
|
|
|
return Controller::join_links($this->Link(), 'profile', $urlSegment);
|
|
|
|
}
|
|
|
|
|
2015-02-05 05:30:27 +01:00
|
|
|
|
2014-12-11 11:42:36 +01:00
|
|
|
/**
|
|
|
|
* This sets the title for our gridfield
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getLumberjackTitle() {
|
|
|
|
return _t('Blog.LumberjackTitle', 'Blog Posts');
|
|
|
|
}
|
|
|
|
|
2015-02-05 05:30:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This overwrites lumberjacks default gridfield config.
|
|
|
|
*
|
|
|
|
* @return GridFieldConfig
|
|
|
|
*/
|
|
|
|
public function getLumberjackGridFieldConfig() {
|
2015-02-07 00:52:45 +01:00
|
|
|
return GridFieldConfig_BlogPost::create();
|
2015-02-05 05:30:27 +01:00
|
|
|
}
|
|
|
|
|
2015-03-06 03:52:07 +01:00
|
|
|
public function providePermissions() {
|
|
|
|
return array(
|
|
|
|
Blog::MANAGE_USERS => array(
|
|
|
|
'name' => _t(
|
|
|
|
'Blog.PERMISSION_MANAGE_USERS_DESCRIPTION',
|
|
|
|
'Manage users for individual blogs'
|
|
|
|
),
|
|
|
|
'help' => _t(
|
|
|
|
'Blog.PERMISSION_MANAGE_USERS_HELP',
|
|
|
|
'Allow assignment of Editors, Writers, or Contributors to blogs'
|
|
|
|
),
|
|
|
|
'category' => _t('Blog.PERMISSIONS_CATEGORY', 'Blog permissions'),
|
|
|
|
'sort' => 100
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the list of user candidates to be assigned to assist with this blog
|
|
|
|
*
|
|
|
|
* @return SS_List
|
|
|
|
*/
|
|
|
|
protected function getCandidateUsers() {
|
|
|
|
if($this->config()->grant_user_access) {
|
|
|
|
// If we are allowed to grant CMS access, all users are candidates
|
|
|
|
return Member::get();
|
|
|
|
} else {
|
|
|
|
// If access cannot be granted, limit users to those who can access the CMS
|
|
|
|
// This is useful for more secure sites
|
|
|
|
$permission = $this->config()->grant_user_permission;
|
|
|
|
return Permission::get_members_by_permission($permission);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets or creates the group used to assign CMS access
|
|
|
|
*
|
|
|
|
* @return Group
|
|
|
|
*/
|
|
|
|
protected function getUserGroup() {
|
|
|
|
$code = $this->config()->grant_user_group;
|
|
|
|
$group = Group::get()->filter('Code', $code)->first();
|
|
|
|
if($group) return $group;
|
|
|
|
|
|
|
|
// Create new group
|
|
|
|
$group = new Group();
|
|
|
|
$group->Title = 'Blog users';
|
|
|
|
$group->Code = $code;
|
|
|
|
$group->write();
|
|
|
|
|
|
|
|
// Add permission
|
|
|
|
$permission = new Permission();
|
|
|
|
$permission->Code = $this->config()->grant_user_permission;
|
|
|
|
$group->Permissions()->add($permission);
|
|
|
|
|
|
|
|
return $group;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function onBeforeWrite() {
|
|
|
|
parent::onBeforeWrite();
|
|
|
|
$this->assignGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assign users as necessary to the blog group
|
|
|
|
*/
|
|
|
|
protected function assignGroup() {
|
|
|
|
// Ensure that any user granted editor, writer, or contributor have CMS_ACCESS_CMSMain access
|
|
|
|
if(!$this->config()->grant_user_access) return;
|
|
|
|
|
|
|
|
// Generate or retrieve the group
|
|
|
|
$group = $this->getUserGroup();
|
|
|
|
foreach(array($this->Editors(), $this->Writers(), $this->Contributors()) as $userlist) {
|
|
|
|
foreach($userlist as $user) {
|
|
|
|
// Ensure user exists in the group
|
|
|
|
if(!$user->inGroup($group)) $user->Groups()->add($group);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-21 12:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Blog Controller
|
|
|
|
*
|
|
|
|
* @package silverstripe
|
|
|
|
* @subpackage blog
|
|
|
|
*
|
2014-03-24 01:19:27 +01:00
|
|
|
* @author Michael Strong <github@michaelstrong.co.uk>
|
2013-07-21 12:23:35 +02:00
|
|
|
**/
|
|
|
|
class Blog_Controller extends Page_Controller {
|
|
|
|
|
|
|
|
private static $allowed_actions = array(
|
|
|
|
'archive',
|
|
|
|
'tag',
|
|
|
|
'category',
|
2013-08-11 00:34:46 +02:00
|
|
|
'rss',
|
2015-03-22 23:18:02 +01:00
|
|
|
'profile'
|
2013-07-21 12:23:35 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
private static $url_handlers = array(
|
2013-08-04 18:38:26 +02:00
|
|
|
'tag/$Tag!' => 'tag',
|
|
|
|
'category/$Category!' => 'category',
|
2013-08-11 00:34:46 +02:00
|
|
|
'archive/$Year!/$Month/$Day' => 'archive',
|
2015-03-22 23:18:02 +01:00
|
|
|
'profile/$URLSegment!' => 'profile'
|
2013-07-21 12:23:35 +02:00
|
|
|
);
|
|
|
|
|
2013-08-04 18:38:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The current Blog Post DataList query.
|
|
|
|
*
|
|
|
|
* @var DataList
|
|
|
|
**/
|
2013-07-21 12:23:35 +02:00
|
|
|
protected $blogPosts;
|
|
|
|
|
2013-08-04 18:38:26 +02:00
|
|
|
|
|
|
|
|
2013-07-21 12:23:35 +02:00
|
|
|
public function index() {
|
2013-08-04 18:38:26 +02:00
|
|
|
$this->blogPosts = $this->getBlogPosts();
|
2013-07-21 12:23:35 +02:00
|
|
|
return $this->render();
|
|
|
|
}
|
|
|
|
|
2015-03-22 23:18:02 +01:00
|
|
|
/**
|
|
|
|
* Renders a Blog Member's profile.
|
|
|
|
*
|
|
|
|
* @return SS_HTTPResponse
|
|
|
|
**/
|
|
|
|
public function profile() {
|
|
|
|
$profile = $this->getCurrentProfile();
|
|
|
|
|
|
|
|
if(!$profile) {
|
|
|
|
return $this->httpError(404, 'Not Found');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->blogPosts = $this->getCurrentProfilePosts();
|
|
|
|
|
|
|
|
return $this->render();
|
|
|
|
}
|
2013-07-21 12:23:35 +02:00
|
|
|
|
2015-03-22 23:18:02 +01:00
|
|
|
/**
|
|
|
|
* Get the Member associated with the current URL segment.
|
|
|
|
*
|
|
|
|
* @return Member|null
|
|
|
|
**/
|
|
|
|
public function getCurrentProfile() {
|
|
|
|
$urlSegment = $this->request->param('URLSegment');
|
|
|
|
|
|
|
|
if($urlSegment) {
|
|
|
|
return Member::get()
|
|
|
|
->filter('URLSegment', $urlSegment)
|
|
|
|
->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get posts related to the current Member profile
|
|
|
|
*
|
|
|
|
* @return DataList|null
|
|
|
|
**/
|
|
|
|
public function getCurrentProfilePosts() {
|
|
|
|
$profile = $this->getCurrentProfile();
|
|
|
|
|
|
|
|
if($profile) {
|
|
|
|
return $profile->AuthoredPosts()->filter('ParentID', $this->ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2013-08-04 18:38:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders an archive for a specificed date. This can be by year or year/month
|
|
|
|
*
|
|
|
|
* @return SS_HTTPResponse
|
|
|
|
**/
|
2013-07-21 12:23:35 +02:00
|
|
|
public function archive() {
|
2013-08-04 18:38:26 +02:00
|
|
|
$year = $this->getArchiveYear();
|
|
|
|
$month = $this->getArchiveMonth();
|
2013-08-11 00:34:46 +02:00
|
|
|
$day = $this->getArchiveDay();
|
2013-08-04 18:38:26 +02:00
|
|
|
|
|
|
|
// If an invalid month has been passed, we can return a 404.
|
|
|
|
if($this->request->param("Month") && !$month) {
|
|
|
|
return $this->httpError(404, "Not Found");
|
2014-04-10 14:44:17 +02:00
|
|
|
}
|
2013-08-04 18:38:26 +02:00
|
|
|
|
2014-04-10 14:44:17 +02:00
|
|
|
// Check for valid day
|
|
|
|
if($month && $this->request->param("Day") && !$day) {
|
|
|
|
return $this->httpError(404, "Not Found");
|
2013-08-11 00:34:46 +02:00
|
|
|
}
|
2013-08-04 18:38:26 +02:00
|
|
|
|
2013-08-11 00:34:46 +02:00
|
|
|
if($year) {
|
2013-10-10 00:09:28 +02:00
|
|
|
$this->blogPosts = $this->getArchivedBlogPosts($year, $month, $day);
|
2013-08-04 18:38:26 +02:00
|
|
|
return $this->render();
|
|
|
|
}
|
|
|
|
return $this->httpError(404, "Not Found");
|
2013-07-21 12:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-04 18:38:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the blog posts for a given tag.
|
|
|
|
*
|
|
|
|
* @return SS_HTTPResponse
|
|
|
|
**/
|
2013-07-21 12:23:35 +02:00
|
|
|
public function tag() {
|
2013-08-04 18:38:26 +02:00
|
|
|
$tag = $this->getCurrentTag();
|
2013-07-21 12:23:35 +02:00
|
|
|
if($tag) {
|
2013-08-04 18:38:26 +02:00
|
|
|
$this->blogPosts = $tag->BlogPosts();
|
|
|
|
return $this->render();
|
2013-07-21 12:23:35 +02:00
|
|
|
}
|
|
|
|
return $this->httpError(404, "Not Found");
|
|
|
|
}
|
|
|
|
|
2013-08-04 18:38:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the blog posts for a given category
|
|
|
|
*
|
|
|
|
* @return SS_HTTPResponse
|
|
|
|
**/
|
2013-07-21 12:23:35 +02:00
|
|
|
public function category() {
|
2013-08-04 18:38:26 +02:00
|
|
|
$category = $this->getCurrentCategory();
|
2013-07-21 12:23:35 +02:00
|
|
|
if($category) {
|
2013-08-04 18:38:26 +02:00
|
|
|
$this->blogPosts = $category->BlogPosts();
|
|
|
|
return $this->render();
|
2013-07-21 12:23:35 +02:00
|
|
|
}
|
|
|
|
return $this->httpError(404, "Not Found");
|
|
|
|
}
|
|
|
|
|
2013-08-04 18:38:26 +02:00
|
|
|
|
|
|
|
|
2013-08-11 00:34:46 +02:00
|
|
|
/**
|
|
|
|
* Displays an RSS feed of blog posts
|
|
|
|
*
|
|
|
|
* @return string HTML
|
|
|
|
**/
|
|
|
|
public function rss() {
|
2014-09-29 10:47:23 +02:00
|
|
|
$rss = new RSSFeed($this->getBlogPosts(), $this->Link(), $this->MetaTitle, $this->MetaDescription);
|
2014-10-02 11:19:13 +02:00
|
|
|
$this->extend('updateRss', $rss);
|
2014-07-27 07:34:43 +02:00
|
|
|
return $rss->outputToBrowser();
|
2013-08-11 00:34:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-08-04 18:38:26 +02:00
|
|
|
/**
|
|
|
|
* Returns a list of paginated blog posts based on the blogPost dataList
|
|
|
|
*
|
|
|
|
* @return PaginatedList
|
|
|
|
**/
|
|
|
|
public function PaginatedList() {
|
|
|
|
$posts = new PaginatedList($this->blogPosts);
|
|
|
|
|
|
|
|
// If pagination is set to '0' then no pagination will be shown.
|
2015-03-04 23:20:47 +01:00
|
|
|
if($this->PostsPerPage > 0) {
|
|
|
|
$posts->setPageLength($this->PostsPerPage);
|
|
|
|
} else {
|
|
|
|
$pageSize = $this->getBlogPosts()->count() ?: 99999;
|
|
|
|
$posts->setPageLength($pageSize);
|
|
|
|
}
|
2013-08-04 18:38:26 +02:00
|
|
|
|
|
|
|
$start = $this->request->getVar($posts->getPaginationGetVar());
|
|
|
|
$posts->setPageStart($start);
|
|
|
|
|
|
|
|
return $posts;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tag Getter for use in templates.
|
|
|
|
*
|
|
|
|
* @return BlogTag|null
|
|
|
|
**/
|
|
|
|
public function getCurrentTag() {
|
|
|
|
$tag = $this->request->param("Tag");
|
|
|
|
if($tag) {
|
|
|
|
return $this->dataRecord->Tags()
|
|
|
|
->filter("URLSegment", $tag)
|
|
|
|
->first();
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Category Getter for use in templates.
|
|
|
|
*
|
|
|
|
* @return BlogCategory|null
|
|
|
|
**/
|
|
|
|
public function getCurrentCategory() {
|
|
|
|
$category = $this->request->param("Category");
|
|
|
|
if($category) {
|
|
|
|
return $this->dataRecord->Categories()
|
|
|
|
->filter("URLSegment", $category)
|
|
|
|
->first();
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetches the archive year from the url
|
|
|
|
*
|
|
|
|
* @return int|null
|
|
|
|
**/
|
|
|
|
public function getArchiveYear() {
|
|
|
|
$year = $this->request->param("Year");
|
|
|
|
if(preg_match("/^[0-9]{4}$/", $year)) {
|
2013-08-11 00:34:46 +02:00
|
|
|
return (int) $year;
|
2013-08-04 18:38:26 +02:00
|
|
|
}
|
|
|
|
return null;
|
2013-07-21 12:23:35 +02:00
|
|
|
}
|
2013-08-04 18:38:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetches the archive money from the url.
|
|
|
|
*
|
|
|
|
* @return int|null
|
|
|
|
**/
|
|
|
|
public function getArchiveMonth() {
|
|
|
|
$month = $this->request->param("Month");
|
|
|
|
if(preg_match("/^[0-9]{1,2}$/", $month)) {
|
2013-08-11 00:34:46 +02:00
|
|
|
if($month > 0 && $month < 13) {
|
|
|
|
// Check that we have a valid date.
|
|
|
|
if(checkdate($month, 01, $this->getArchiveYear())) {
|
|
|
|
return (int) $month;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetches the archive day from the url
|
|
|
|
*
|
|
|
|
* @return int|null
|
|
|
|
**/
|
|
|
|
public function getArchiveDay() {
|
|
|
|
$day = $this->request->param("Day");
|
|
|
|
if(preg_match("/^[0-9]{1,2}$/", $day)) {
|
|
|
|
|
|
|
|
// Check that we have a valid date
|
|
|
|
if(checkdate($this->getArchiveMonth(), $day, $this->getArchiveYear())) {
|
|
|
|
return (int) $day;
|
|
|
|
}
|
2013-08-04 18:38:26 +02:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-08-11 00:34:46 +02:00
|
|
|
/**
|
|
|
|
* Returns the current archive date.
|
|
|
|
*
|
|
|
|
* @return Date
|
|
|
|
**/
|
2013-08-04 18:38:26 +02:00
|
|
|
public function getArchiveDate() {
|
|
|
|
$year = $this->getArchiveYear();
|
|
|
|
$month = $this->getArchiveMonth();
|
2013-08-11 00:34:46 +02:00
|
|
|
$day = $this->getArchiveDay();
|
2013-08-04 18:38:26 +02:00
|
|
|
|
|
|
|
if($year) {
|
|
|
|
if($month) {
|
2013-08-11 00:34:46 +02:00
|
|
|
$date = $year . '-' . $month . '-01';
|
|
|
|
if($day) {
|
|
|
|
$date = $year . '-' . $month . '-' . $day;
|
|
|
|
}
|
2013-08-04 18:38:26 +02:00
|
|
|
} else {
|
2013-08-11 00:34:46 +02:00
|
|
|
$date = $year . '-01-01';
|
2013-08-04 18:38:26 +02:00
|
|
|
}
|
2013-08-11 00:34:46 +02:00
|
|
|
return DBField::create_field("Date", $date);
|
2013-08-04 18:38:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-11 00:34:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a link to the RSS feed.
|
|
|
|
*
|
|
|
|
* @return string URL
|
|
|
|
**/
|
|
|
|
public function getRSSLink() {
|
|
|
|
return $this->Link("rss");
|
|
|
|
}
|
|
|
|
|
2014-09-29 10:47:23 +02:00
|
|
|
}
|