silverstripe-contentreview/src/Extensions/ContentReviewCMSExtension.php

79 lines
2.0 KiB
PHP
Raw Normal View History

<?php
namespace SilverStripe\ContentReview\Extensions;
use SilverStripe\Admin\LeftAndMainExtension;
use SilverStripe\CMS\Model\SiteTree;
use SilverStripe\Control\HTTPResponse_Exception;
use SilverStripe\Forms\Form;
use SilverStripe\Security\Member;
use SilverStripe\Security\Security;
/**
2015-11-02 00:27:42 +01:00
* CMSPageEditController extension to receive the additional action button from
* SiteTreeContentReview::updateCMSActions()
*/
2015-11-02 00:27:42 +01:00
class ContentReviewCMSExtension extends LeftAndMainExtension
{
/**
* @var array
*/
private static $allowed_actions = array(
2015-11-12 03:56:19 +01:00
"savereview"
2015-11-02 00:27:42 +01:00
);
/**
* Save the review notes and redirect back to the page edit form.
*
* @param array $data
* @param Form $form
*
* @return string
*
* @throws HTTPResponse_Exception
2015-11-02 00:27:42 +01:00
*/
2015-11-12 03:56:19 +01:00
public function savereview($data, Form $form)
2015-11-02 00:27:42 +01:00
{
2015-11-03 04:57:07 +01:00
$page = $this->findRecord($data);
if (!$page->canEdit()) {
return Security::permissionFailure($this->owner);
2015-11-02 00:27:42 +01:00
}
$notes = (!empty($data["ReviewNotes"])
? $data["ReviewNotes"]
: _t("ContentReview.NOCOMMENTS", "(no comments)"));
2015-11-12 03:56:19 +01:00
$page->addReviewNote(Member::currentUser(), $notes);
2015-11-03 04:57:07 +01:00
$page->advanceReviewDate();
$this->owner->getResponse()
->addHeader("X-Status", _t("ContentReview.REVIEWSUCCESSFUL", "Content reviewed successfully"));
2015-11-12 03:56:19 +01:00
return $this->owner->redirectBack();
2015-11-03 04:57:07 +01:00
}
2015-11-03 04:57:07 +01:00
/**
* Find the page this form is updating
*
* @param array $data Form data
* @return SiteTree Record
* @throws SS_HTTPResponse_Exception
*/
protected function findRecord($data)
{
if (empty($data["ID"])) {
throw new HTTPResponse_Exception("No record ID", 404);
2015-11-03 04:57:07 +01:00
}
2015-11-02 00:27:42 +01:00
2015-11-03 04:57:07 +01:00
$page = null;
$id = $data["ID"];
if (is_numeric($id)) {
$page = SiteTree::get()->byID($id);
2015-11-02 00:27:42 +01:00
}
if (!$page || !$page->ID) {
throw new HTTPResponse_Exception("Bad record ID #{$id}", 404);
2015-11-02 00:27:42 +01:00
}
2015-11-03 04:57:07 +01:00
return $page;
2015-11-02 00:27:42 +01:00
}
}