2013-07-21 12:23:35 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Blog Holder
|
|
|
|
*
|
|
|
|
* @package silverstripe
|
|
|
|
* @subpackage blog
|
|
|
|
*
|
|
|
|
* @author Michael String <micmania@hotmail.co.uk>
|
|
|
|
**/
|
|
|
|
class Blog extends Page {
|
|
|
|
|
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
|
|
|
);
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
public function getCMSFields() {
|
|
|
|
$fields = parent::getCMSFields();
|
2013-08-11 00:34:46 +02:00
|
|
|
if(!Config::inst()->get("BlogPost", "show_in_sitetree")) {
|
2013-07-21 12:23:35 +02:00
|
|
|
$gridField = new GridField(
|
|
|
|
"BlogPost",
|
2013-08-11 00:34:46 +02:00
|
|
|
_t("Blog.BlogPosts", "Blog Posts"),
|
|
|
|
$this->getBlogPosts(),
|
|
|
|
GridFieldConfig_BlogPost::create()
|
2013-07-21 12:23:35 +02:00
|
|
|
);
|
|
|
|
$fields->addFieldToTab("Root.BlogPosts", $gridField);
|
|
|
|
}
|
|
|
|
|
2013-08-04 18:38:26 +02:00
|
|
|
// Create categories and tag config
|
|
|
|
$config = GridFieldConfig_RecordEditor::create();
|
|
|
|
$config->removeComponentsByType("GridFieldAddNewButton");
|
|
|
|
$config->addComponent(new GridFieldAddByDBField("buttons-before-left"));
|
|
|
|
|
|
|
|
$categories = GridField::create(
|
|
|
|
"Categories",
|
2013-08-11 00:34:46 +02:00
|
|
|
_t("Blog.Categories", "Categories"),
|
2013-08-04 18:38:26 +02:00
|
|
|
$this->Categories(),
|
|
|
|
$config
|
|
|
|
);
|
|
|
|
|
|
|
|
$tags = GridField::create(
|
|
|
|
"Tags",
|
2013-08-11 00:34:46 +02:00
|
|
|
_t("Blog.Tags", "Tags"),
|
2013-08-04 18:38:26 +02:00
|
|
|
$this->Tags(),
|
|
|
|
$config
|
|
|
|
);
|
|
|
|
|
|
|
|
$fields->addFieldsToTab("Root.BlogOptions", array(
|
|
|
|
$categories,
|
|
|
|
$tags
|
|
|
|
));
|
2013-07-21 12:23:35 +02:00
|
|
|
|
2013-08-04 18:38:26 +02:00
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function getSettingsFields() {
|
|
|
|
$fields = parent::getSettingsFields();
|
2013-10-10 00:09:28 +02:00
|
|
|
$fields->addFieldToTab("Root.Settings",
|
|
|
|
NumericField::create("PostsPerPage", _t("Blog.PostsPerPage", "Posts Per Page")));
|
2013-07-21 12:23:35 +02:00
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loops through subclasses of BlogPost and checks whether they have been configured
|
|
|
|
* to be hidden. If so, then they will be excluded from the SiteTree.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
**/
|
|
|
|
public function getExcludedSiteTreeClassNames() {
|
|
|
|
$classes = array();
|
|
|
|
$tmpClasses = ClassInfo::subClassesFor("BlogPost");
|
2013-08-11 00:34:46 +02:00
|
|
|
if(!Config::inst()->get("BlogPost", "show_in_sitetree")) {
|
|
|
|
foreach($tmpClasses as $class) {
|
2013-07-21 12:23:35 +02:00
|
|
|
$classes[$class] = $class;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $classes;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return blogs posts
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
* @param $dat int
|
|
|
|
*
|
|
|
|
* @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);
|
|
|
|
}
|
|
|
|
|
2013-07-21 12:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Blog Controller
|
|
|
|
*
|
|
|
|
* @package silverstripe
|
|
|
|
* @subpackage blog
|
|
|
|
*
|
|
|
|
* @author Michael String <micmania@hotmail.co.uk>
|
|
|
|
**/
|
|
|
|
class Blog_Controller extends Page_Controller {
|
|
|
|
|
|
|
|
private static $allowed_actions = array(
|
|
|
|
'archive',
|
|
|
|
'tag',
|
|
|
|
'category',
|
2013-08-11 00:34:46 +02:00
|
|
|
'rss',
|
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',
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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");
|
|
|
|
|
2013-08-11 00:34:46 +02:00
|
|
|
// Check for valid day
|
|
|
|
if($this->request->param("Day") && !$day) {
|
|
|
|
return $this->httpError(404, "Not Found");
|
2013-08-04 18:38:26 +02:00
|
|
|
}
|
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() {
|
|
|
|
$rss = new RSSFeed($this->getBlogPosts(), $this->Link(), $this->MetaDescription, $this->MetaTitle);
|
|
|
|
return $rss->outputToBrowser();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
if($this->PostsPerPage > 0) $posts->setPageLength($this->PostsPerPage);
|
|
|
|
else $posts->setPageLength($this->getBlogPosts()->count());
|
|
|
|
|
|
|
|
$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");
|
|
|
|
}
|
|
|
|
|
2013-07-21 12:23:35 +02:00
|
|
|
}
|