2016-06-02 03:11:05 +02:00
|
|
|
<?php
|
|
|
|
|
2016-12-15 04:41:49 +01:00
|
|
|
namespace SilverStripe\Blog\Model;
|
|
|
|
|
|
|
|
use SilverStripe\Control\Controller;
|
2017-01-26 23:47:53 +01:00
|
|
|
use SilverStripe\Core\ClassInfo;
|
2016-12-15 04:41:49 +01:00
|
|
|
use SilverStripe\Forms\FieldList;
|
|
|
|
use SilverStripe\Forms\Tab;
|
|
|
|
use SilverStripe\Forms\TabSet;
|
|
|
|
use SilverStripe\Forms\TextField;
|
|
|
|
use SilverStripe\ORM\DataList;
|
|
|
|
use SilverStripe\Security\Permission;
|
|
|
|
use SilverStripe\View\Parsers\URLSegmentFilter;
|
|
|
|
|
2016-06-02 03:11:05 +02:00
|
|
|
/**
|
|
|
|
* An object shared by BlogTag and BlogCategory.
|
|
|
|
*
|
|
|
|
* @package silverstripe
|
|
|
|
* @subpackage blog
|
|
|
|
*/
|
2016-12-15 04:41:49 +01:00
|
|
|
trait BlogObject
|
|
|
|
{
|
2016-06-02 03:11:05 +02:00
|
|
|
/**
|
|
|
|
* @return DataList
|
|
|
|
*/
|
|
|
|
public function BlogPosts()
|
|
|
|
{
|
|
|
|
$blogPosts = parent::BlogPosts();
|
|
|
|
|
|
|
|
$this->extend('updateGetBlogPosts', $blogPosts);
|
|
|
|
|
|
|
|
return $blogPosts;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function getCMSFields()
|
|
|
|
{
|
2017-01-26 23:47:53 +01:00
|
|
|
$shortClass = ClassInfo::shortName(self::class);
|
2017-01-13 03:33:53 +01:00
|
|
|
$fields = TabSet::create(
|
|
|
|
'Root',
|
|
|
|
Tab::create(
|
|
|
|
'Main',
|
2017-01-26 23:47:53 +01:00
|
|
|
TextField::create('Title', _t($shortClass . '.Title', 'Title'))
|
2016-06-02 03:11:05 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$fields = FieldList::create($fields);
|
|
|
|
$this->extend('updateCMSFields', $fields);
|
|
|
|
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
2016-12-15 04:41:49 +01:00
|
|
|
* @return ValidationResult
|
2016-06-02 03:11:05 +02:00
|
|
|
*/
|
|
|
|
public function validate()
|
|
|
|
{
|
2016-12-15 04:41:49 +01:00
|
|
|
/** @var ValidationResult $validation */
|
2016-06-02 03:11:05 +02:00
|
|
|
$validation = parent::validate();
|
2016-12-15 04:41:49 +01:00
|
|
|
if (!$validation->isValid()) {
|
2016-06-02 03:11:05 +02:00
|
|
|
return $validation;
|
|
|
|
}
|
|
|
|
|
|
|
|
$blog = $this->Blog();
|
2016-12-15 04:41:49 +01:00
|
|
|
if (!$blog || !$blog->exists()) {
|
2016-06-02 03:11:05 +02:00
|
|
|
return $validation;
|
|
|
|
}
|
|
|
|
|
2017-01-13 03:33:53 +01:00
|
|
|
if ($this->getDuplicatesByField('Title')->count() > 0) {
|
2016-12-15 04:41:49 +01:00
|
|
|
$validation->addError($this->getDuplicateError(), self::DUPLICATE_EXCEPTION);
|
2016-06-02 03:11:05 +02:00
|
|
|
}
|
2017-01-13 03:33:53 +01:00
|
|
|
|
2016-06-02 03:11:05 +02:00
|
|
|
return $validation;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a relative link to this category.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getLink()
|
|
|
|
{
|
|
|
|
return Controller::join_links(
|
|
|
|
$this->Blog()->Link(),
|
|
|
|
$this->getListUrlSegment(),
|
|
|
|
$this->URLSegment
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inherits from the parent blog or can be overwritten using a DataExtension.
|
|
|
|
*
|
|
|
|
* @param null|Member $member
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function canView($member = null)
|
|
|
|
{
|
|
|
|
$extended = $this->extendedCan(__FUNCTION__, $member);
|
|
|
|
|
|
|
|
if ($extended !== null) {
|
|
|
|
return $extended;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->Blog()->canView($member);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function canCreate($member = null, $context = array())
|
|
|
|
{
|
|
|
|
$extended = $this->extendedCan(__FUNCTION__, $member);
|
|
|
|
|
|
|
|
if ($extended !== null) {
|
|
|
|
return $extended;
|
|
|
|
}
|
|
|
|
|
|
|
|
$permission = Blog::config()->grant_user_permission;
|
|
|
|
|
|
|
|
return Permission::checkMember($member, $permission);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inherits from the parent blog or can be overwritten using a DataExtension.
|
|
|
|
*
|
|
|
|
* @param null|Member $member
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function canDelete($member = null)
|
|
|
|
{
|
|
|
|
$extended = $this->extendedCan(__FUNCTION__, $member);
|
|
|
|
|
|
|
|
if ($extended !== null) {
|
|
|
|
return $extended;
|
|
|
|
}
|
|
|
|
|
2017-01-13 03:33:53 +01:00
|
|
|
return $this->Blog()->canDelete($member);
|
2016-06-02 03:11:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inherits from the parent blog or can be overwritten using a DataExtension.
|
|
|
|
*
|
|
|
|
* @param null|Member $member
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function canEdit($member = null)
|
|
|
|
{
|
|
|
|
$extended = $this->extendedCan(__FUNCTION__, $member);
|
|
|
|
|
|
|
|
if ($extended !== null) {
|
|
|
|
return $extended;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->Blog()->canEdit($member);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
protected function onBeforeWrite()
|
|
|
|
{
|
|
|
|
parent::onBeforeWrite();
|
2017-01-26 09:28:42 +01:00
|
|
|
if ($this->exists() || empty($this->URLSegment)) {
|
2016-06-02 03:11:05 +02:00
|
|
|
return $this->generateURLSegment();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates a unique URLSegment from the title.
|
|
|
|
*
|
|
|
|
* @param int $increment
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function generateURLSegment($increment = 0)
|
|
|
|
{
|
|
|
|
$increment = (int) $increment;
|
2016-12-15 04:41:49 +01:00
|
|
|
$filter = URLSegmentFilter::create();
|
2016-06-02 03:11:05 +02:00
|
|
|
|
2017-01-26 09:28:42 +01:00
|
|
|
// Setting this to on. Because of the UI flow, it would be quite a lot of work
|
|
|
|
// to support turning this off. (ie. the add by title flow would not work).
|
|
|
|
// If this becomes a problem we can approach it then.
|
|
|
|
// @see https://github.com/silverstripe/silverstripe-blog/issues/376
|
|
|
|
$filter->setAllowMultibyte(true);
|
|
|
|
|
2017-01-13 03:33:53 +01:00
|
|
|
$this->URLSegment = $filter->filter($this->Title);
|
2016-06-02 03:11:05 +02:00
|
|
|
|
|
|
|
if ($increment > 0) {
|
|
|
|
$this->URLSegment .= '-' . $increment;
|
|
|
|
}
|
|
|
|
|
2017-01-13 03:33:53 +01:00
|
|
|
if ($this->getDuplicatesByField('URLSegment')->count() > 0) {
|
|
|
|
$this->generateURLSegment($increment + 1);
|
2016-06-02 03:11:05 +02:00
|
|
|
}
|
|
|
|
|
2017-01-13 03:33:53 +01:00
|
|
|
return $this->URLSegment;
|
2016-06-02 03:11:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-13 03:33:53 +01:00
|
|
|
* Looks for objects o the same type and the same value by the given Field
|
2016-06-02 03:11:05 +02:00
|
|
|
*
|
2017-01-13 03:33:53 +01:00
|
|
|
* @param string $field E.g. URLSegment or Title
|
2016-06-02 03:11:05 +02:00
|
|
|
* @return DataList
|
|
|
|
*/
|
2017-01-13 03:33:53 +01:00
|
|
|
protected function getDuplicatesByField($field)
|
2016-06-02 03:11:05 +02:00
|
|
|
{
|
2016-12-15 04:41:49 +01:00
|
|
|
$duplicates = DataList::create(self::class)
|
|
|
|
->filter(
|
2017-01-13 03:33:53 +01:00
|
|
|
[
|
|
|
|
$field => $this->$field,
|
|
|
|
'BlogID' => (int) $this->BlogID
|
|
|
|
]
|
2016-12-15 04:41:49 +01:00
|
|
|
);
|
2016-06-02 03:11:05 +02:00
|
|
|
|
|
|
|
if ($this->ID) {
|
2017-01-13 03:55:48 +01:00
|
|
|
$duplicates = $duplicates->exclude('ID', $this->ID);
|
2016-06-02 03:11:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $duplicates;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This returns the url segment for the listing page.
|
|
|
|
* eg. 'categories' in /my-blog/categories/category-url
|
|
|
|
*
|
|
|
|
* This is not editable at the moment, but a method is being used incase we want
|
|
|
|
* to make it editable in the future. We can use this method to provide logic
|
|
|
|
* without replacing multiple areas of the code base. We're also not being opinionated
|
|
|
|
* about how the segment should be obtained at the moment and allowing for the
|
|
|
|
* implementation to decide.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
abstract protected function getListUrlSegment();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an error message for this object when it tries to write a duplicate.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
abstract protected function getDuplicateError();
|
|
|
|
}
|