mirror of
https://github.com/silverstripe/silverstripe-contentreview
synced 2024-10-22 17:05:47 +02:00
Merge pull request #31 from tractorcow/pulls/fix-save-form
BUG Fix form saving
This commit is contained in:
commit
c8a8c3b155
@ -6,12 +6,13 @@
|
|||||||
*/
|
*/
|
||||||
class ContentReviewCMSExtension extends LeftAndMainExtension
|
class ContentReviewCMSExtension extends LeftAndMainExtension
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
private static $allowed_actions = array(
|
private static $allowed_actions = array(
|
||||||
"reviewed",
|
"reviewed",
|
||||||
"save_review",
|
"AddReviewForm",
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -25,40 +26,42 @@ class ContentReviewCMSExtension extends LeftAndMainExtension
|
|||||||
*/
|
*/
|
||||||
public function reviewed($data, Form $form)
|
public function reviewed($data, Form $form)
|
||||||
{
|
{
|
||||||
if (!isset($data["ID"])) {
|
$record = $this->findRecord($data);
|
||||||
throw new SS_HTTPResponse_Exception("No record ID", 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$id = (int) $data["ID"];
|
|
||||||
$record = SiteTree::get()->byID($id);
|
|
||||||
|
|
||||||
if (!$record || !$record->ID) {
|
|
||||||
throw new SS_HTTPResponse_Exception("Bad record ID #{$id}", 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$record->canEdit()) {
|
if (!$record->canEdit()) {
|
||||||
return Security::permissionFailure($this->owner);
|
return Security::permissionFailure($this->owner);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Populate and respond
|
||||||
|
$form = $this->AddReviewForm();
|
||||||
|
$form->loadDataFrom($record);
|
||||||
|
return $form->forTemplate();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Form handler for this page
|
||||||
|
*
|
||||||
|
* @return CMSForm
|
||||||
|
*/
|
||||||
|
public function AddReviewForm()
|
||||||
|
{
|
||||||
$reviewNotes = TextareaField::create("ReviewNotes", _t("ContentReview.REVIEWNOTES", "Review notes"));
|
$reviewNotes = TextareaField::create("ReviewNotes", _t("ContentReview.REVIEWNOTES", "Review notes"));
|
||||||
$reviewNotes->setDescription(_t("ContentReview.REVIEWNOTESDESCRIPTION ", "Add comments for the content of this page."));
|
$reviewNotes->setDescription(_t("ContentReview.REVIEWNOTESDESCRIPTION ", "Add comments for the content of this page."));
|
||||||
$fields = new FieldList();
|
$fields = new FieldList();
|
||||||
$fields->push(HiddenField::create("ID", "ID", $id));
|
$fields->push(HiddenField::create("ID"));
|
||||||
$fields->push($reviewNotes);
|
$fields->push($reviewNotes);
|
||||||
|
|
||||||
$actions = new FieldList(
|
$actions = new FieldList(
|
||||||
FormAction::create("save_review", _t("ContentReview.SAVE", "Save"))
|
FormAction::create("save_review", _t("ContentReview.SAVE", "Save"))
|
||||||
);
|
);
|
||||||
|
|
||||||
$form = CMSForm::create($this->owner, "EditForm", $fields, $actions)->setHTMLID("Form_EditForm");
|
$form = CMSForm::create($this->owner, "AddReviewForm", $fields, $actions)->setHTMLID("Form_EditForm");
|
||||||
$form->setResponseNegotiator($this->owner->getResponseNegotiator());
|
$form->setResponseNegotiator($this->owner->getResponseNegotiator());
|
||||||
$form->loadDataFrom($record);
|
|
||||||
$form->disableDefaultAction();
|
$form->disableDefaultAction();
|
||||||
|
|
||||||
// TODO Can't merge $FormAttributes in template at the moment
|
// TODO Can't merge $FormAttributes in template at the moment
|
||||||
$form->setTemplate($this->owner->getTemplatesWithSuffix("LeftAndMain_EditForm"));
|
$form->setTemplate($this->owner->getTemplatesWithSuffix("LeftAndMain_EditForm"));
|
||||||
|
|
||||||
return $form->forTemplate();
|
return $form;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -73,19 +76,9 @@ class ContentReviewCMSExtension extends LeftAndMainExtension
|
|||||||
*/
|
*/
|
||||||
public function save_review($data, Form $form)
|
public function save_review($data, Form $form)
|
||||||
{
|
{
|
||||||
if (!isset($data["ID"])) {
|
$page = $this->findRecord($data);
|
||||||
throw new SS_HTTPResponse_Exception("No record ID", 404);
|
if (!$page->canEdit()) {
|
||||||
}
|
return Security::permissionFailure($this->owner);
|
||||||
|
|
||||||
$id = (int) $data["ID"];
|
|
||||||
$page = SiteTree::get()->byID($id);
|
|
||||||
|
|
||||||
if ($page && !$page->canEdit()) {
|
|
||||||
return Security::permissionFailure();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$page || !$page->ID) {
|
|
||||||
throw new SS_HTTPResponse_Exception("Bad record ID #{$id}", 404);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$page->addReviewNote(Member::currentUser(), $data["ReviewNotes"]);
|
$page->addReviewNote(Member::currentUser(), $data["ReviewNotes"]);
|
||||||
@ -93,4 +86,30 @@ class ContentReviewCMSExtension extends LeftAndMainExtension
|
|||||||
|
|
||||||
return $this->owner->redirect($this->owner->Link("show/" . $page->ID));
|
return $this->owner->redirect($this->owner->Link("show/" . $page->ID));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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 SS_HTTPResponse_Exception("No record ID", 404);
|
||||||
|
}
|
||||||
|
|
||||||
|
$page = null;
|
||||||
|
$id = $data["ID"];
|
||||||
|
if (is_numeric($id)) {
|
||||||
|
$page = SiteTree::get()->byID($id);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$page || !$page->ID) {
|
||||||
|
throw new SS_HTTPResponse_Exception("Bad record ID #{$id}", 404);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $page;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
*/
|
*/
|
||||||
abstract class ContentReviewBaseTest extends FunctionalTest
|
abstract class ContentReviewBaseTest extends FunctionalTest
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var bool
|
* @var bool
|
||||||
*/
|
*/
|
||||||
@ -38,5 +39,7 @@ abstract class ContentReviewBaseTest extends FunctionalTest
|
|||||||
SiteTree::add_extension("Translatable");
|
SiteTree::add_extension("Translatable");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
parent::tearDown();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -88,7 +88,7 @@ class ContentReviewCMSPageEditControllerTest extends ContentReviewBaseTest
|
|||||||
"ReviewNotes" => "This is the best page ever",
|
"ReviewNotes" => "This is the best page ever",
|
||||||
);
|
);
|
||||||
|
|
||||||
$response = $this->post("admin/pages/edit/EditForm", $data);
|
$response = $this->post("admin/pages/edit/AddReviewForm", $data);
|
||||||
|
|
||||||
$this->assertEquals("OK", $response->getStatusDescription());
|
$this->assertEquals("OK", $response->getStatusDescription());
|
||||||
$this->assertEquals(200, $response->getStatusCode());
|
$this->assertEquals(200, $response->getStatusCode());
|
||||||
|
Loading…
Reference in New Issue
Block a user