2009-05-14 23:51:54 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A class representing back actions
|
|
|
|
*
|
|
|
|
* <code>
|
|
|
|
* CMSMain::register_batch_action('publishitems', new CMSBatchAction('doPublish',
|
2009-05-14 23:56:35 +02:00
|
|
|
* _t('CMSBatchActions.PUBLISHED_PAGES', 'published %d pages')));
|
2009-05-14 23:51:54 +02:00
|
|
|
* </code>
|
2009-05-14 23:56:35 +02:00
|
|
|
*
|
|
|
|
* @package cms
|
|
|
|
* @subpackage batchaction
|
2009-05-14 23:51:54 +02:00
|
|
|
*/
|
|
|
|
abstract class CMSBatchAction extends Object {
|
|
|
|
/**
|
|
|
|
* The the text to show in the dropdown for this action
|
|
|
|
*/
|
|
|
|
abstract function getActionTitle();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get text to be shown while the action is being processed, of the form
|
|
|
|
* "publishing pages".
|
|
|
|
*/
|
|
|
|
abstract function getDoingText();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Run this action for the given set of pages.
|
|
|
|
* Return a set of status-updated JavaScript to return to the CMS.
|
|
|
|
*/
|
|
|
|
abstract function run(DataObjectSet $pages);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper method for processing batch actions.
|
|
|
|
* Returns a set of status-updating JavaScript to return to the CMS.
|
|
|
|
*
|
|
|
|
* @param $pages The DataObjectSet of SiteTree objects to perform this batch action
|
|
|
|
* on.
|
|
|
|
* @param $helperMethod The method to call on each of those objects.
|
|
|
|
* @para
|
|
|
|
*/
|
2009-10-16 00:44:08 +02:00
|
|
|
public function batchaction(DataObjectSet $pages, $helperMethod, $successMessage, $arguments = array()) {
|
2009-10-30 04:27:27 +01:00
|
|
|
$failures = 0;
|
|
|
|
|
2009-05-14 23:51:54 +02:00
|
|
|
foreach($pages as $page) {
|
2009-10-16 00:44:08 +02:00
|
|
|
|
2009-05-14 23:51:54 +02:00
|
|
|
// Perform the action
|
2010-01-13 01:14:29 +01:00
|
|
|
if (call_user_func_array(array($page, $helperMethod), $arguments) === false) {
|
2009-10-30 04:27:27 +01:00
|
|
|
$failures++;
|
2010-01-13 01:14:29 +01:00
|
|
|
FormResponse::add("\$('sitetree').addNodeClassByIdx('$page->ID', 'failed');");
|
2009-10-30 04:27:27 +01:00
|
|
|
}
|
2010-01-13 01:14:29 +01:00
|
|
|
|
2009-05-14 23:51:54 +02:00
|
|
|
|
|
|
|
// Now make sure the tree title is appropriately updated
|
|
|
|
$publishedRecord = DataObject::get_by_id('SiteTree', $page->ID);
|
2009-08-02 23:57:26 +02:00
|
|
|
if ($publishedRecord) {
|
|
|
|
$JS_title = Convert::raw2js($publishedRecord->TreeTitle());
|
|
|
|
FormResponse::add("\$('sitetree').setNodeTitle($page->ID, '$JS_title');");
|
|
|
|
}
|
2009-05-14 23:51:54 +02:00
|
|
|
$page->destroy();
|
|
|
|
unset($page);
|
|
|
|
}
|
|
|
|
|
2009-10-30 01:55:37 +01:00
|
|
|
$message = sprintf($successMessage, $pages->Count()-$failures, $failures);
|
|
|
|
|
2009-05-14 23:51:54 +02:00
|
|
|
FormResponse::add('statusMessage("'.$message.'","good");');
|
|
|
|
|
|
|
|
return FormResponse::respond();
|
|
|
|
}
|
2010-01-13 01:08:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper method for applicablePages() methods. Acts as a skeleton implementation.
|
|
|
|
*
|
|
|
|
* @param $ids The IDs passed to applicablePages
|
|
|
|
* @param $methodName The canXXX() method to call on each page to check if the action is applicable
|
|
|
|
* @param $checkStagePages Set to true if you want to check stage pages
|
|
|
|
* @param $checkLivePages Set to true if you want to check live pages (e.g, for deleted-from-draft)
|
|
|
|
*/
|
|
|
|
function applicablePagesHelper($ids, $methodName, $checkStagePages = true, $checkLivePages = true) {
|
|
|
|
if(!is_array($ids)) user_error("Bad \$ids passed to applicablePagesHelper()", E_USER_WARNING);
|
|
|
|
if(!is_string($methodName)) user_error("Bad \$methodName passed to applicablePagesHelper()", E_USER_WARNING);
|
|
|
|
|
|
|
|
$applicableIDs = array();
|
|
|
|
|
|
|
|
$SQL_ids = implode(', ', array_filter($ids, 'is_numeric'));
|
|
|
|
$draftPages = DataObject::get("SiteTree", "\"SiteTree\".\"ID\" IN ($SQL_ids)");
|
|
|
|
|
|
|
|
$onlyOnLive = array_fill_keys($ids, true);
|
|
|
|
if($checkStagePages) {
|
|
|
|
foreach($draftPages as $page) {
|
|
|
|
unset($onlyOnLive[$page->ID]);
|
|
|
|
if($page->$methodName()) $applicableIDs[] = $page->ID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the pages that only exist on live (deleted from stage)
|
|
|
|
if($checkLivePages && $onlyOnLive) {
|
|
|
|
$SQL_ids = implode(', ', array_keys($onlyOnLive));
|
|
|
|
$livePages = Versioned::get_by_stage("SiteTree", "Live", "\"SiteTree\".\"ID\" IN ($SQL_ids)");
|
|
|
|
|
|
|
|
if($livePages) foreach($livePages as $page) {
|
|
|
|
if($page->$methodName()) $applicableIDs[] = $page->ID;
|
|
|
|
}
|
|
|
|
}
|
2010-01-13 01:09:30 +01:00
|
|
|
|
2010-01-13 01:08:44 +01:00
|
|
|
return $applicableIDs;
|
|
|
|
}
|
2009-05-14 23:51:54 +02:00
|
|
|
|
2009-10-16 00:44:08 +02:00
|
|
|
// if your batchaction has parameters, return a fieldset here
|
|
|
|
function getParameterFields() {
|
|
|
|
return false;
|
|
|
|
}
|
2010-01-13 01:09:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If you wish to restrict the batch action to some users, overload this function.
|
|
|
|
*/
|
|
|
|
function canView() {
|
|
|
|
return true;
|
|
|
|
}
|
2009-05-14 23:51:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Publish items batch action.
|
2009-05-14 23:56:35 +02:00
|
|
|
*
|
|
|
|
* @package cms
|
|
|
|
* @subpackage batchaction
|
2009-05-14 23:51:54 +02:00
|
|
|
*/
|
|
|
|
class CMSBatchAction_Publish extends CMSBatchAction {
|
|
|
|
function getActionTitle() {
|
|
|
|
return _t('CMSBatchActions.PUBLISH_PAGES', 'Publish');
|
|
|
|
}
|
|
|
|
function getDoingText() {
|
|
|
|
return _t('CMSBatchActions.PUBLISHING_PAGES', 'Publishing pages');
|
|
|
|
}
|
|
|
|
|
|
|
|
function run(DataObjectSet $pages) {
|
|
|
|
return $this->batchaction($pages, 'doPublish',
|
2009-10-30 01:55:37 +01:00
|
|
|
_t('CMSBatchActions.PUBLISHED_PAGES', 'Published %d pages, %d failures')
|
2009-05-14 23:51:54 +02:00
|
|
|
);
|
|
|
|
}
|
2010-01-13 01:08:44 +01:00
|
|
|
|
|
|
|
function applicablePages($ids) {
|
|
|
|
return $this->applicablePagesHelper($ids, 'canPublish', true, false);
|
|
|
|
}
|
2009-05-14 23:51:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete items batch action.
|
2009-05-14 23:56:35 +02:00
|
|
|
*
|
|
|
|
* @package cms
|
|
|
|
* @subpackage batchaction
|
2009-05-14 23:51:54 +02:00
|
|
|
*/
|
|
|
|
class CMSBatchAction_Delete extends CMSBatchAction {
|
|
|
|
function getActionTitle() {
|
2010-01-13 01:07:40 +01:00
|
|
|
return _t('CMSBatchActions.DELETE_DRAFT_PAGES', 'Delete from draft site');
|
2009-05-14 23:51:54 +02:00
|
|
|
}
|
|
|
|
function getDoingText() {
|
2010-01-13 01:07:40 +01:00
|
|
|
return _t('CMSBatchActions.DELETING_DRAFT_PAGES', 'Deleting selected pages from the draft site');
|
2009-05-14 23:51:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function run(DataObjectSet $pages) {
|
2010-01-13 00:59:49 +01:00
|
|
|
$failures = 0;
|
|
|
|
|
2009-05-14 23:51:54 +02:00
|
|
|
foreach($pages as $page) {
|
|
|
|
$id = $page->ID;
|
|
|
|
|
|
|
|
// Perform the action
|
|
|
|
if($page->canDelete()) $page->delete();
|
2010-01-13 00:59:49 +01:00
|
|
|
else $failures++;
|
2009-05-14 23:51:54 +02:00
|
|
|
|
|
|
|
// check to see if the record exists on the live site, if it doesn't remove the tree node
|
2009-05-21 07:11:14 +02:00
|
|
|
$liveRecord = Versioned::get_one_by_stage( 'SiteTree', 'Live', "\"SiteTree\".\"ID\"=$id");
|
2009-05-14 23:51:54 +02:00
|
|
|
if($liveRecord) {
|
|
|
|
$liveRecord->IsDeletedFromStage = true;
|
|
|
|
$title = Convert::raw2js($liveRecord->TreeTitle());
|
|
|
|
FormResponse::add("$('sitetree').setNodeTitle($id, '$title');");
|
|
|
|
FormResponse::add("$('Form_EditForm').reloadIfSetTo($id);");
|
|
|
|
} else {
|
|
|
|
FormResponse::add("var node = $('sitetree').getTreeNodeByIdx('$id');");
|
|
|
|
FormResponse::add("if(node && node.parentTreeNode) node.parentTreeNode.removeTreeNode(node);");
|
|
|
|
FormResponse::add("$('Form_EditForm').reloadIfSetTo($id);");
|
|
|
|
}
|
|
|
|
|
|
|
|
$page->destroy();
|
|
|
|
unset($page);
|
|
|
|
}
|
|
|
|
|
2010-01-13 01:07:31 +01:00
|
|
|
$message = sprintf(_t('CMSBatchActions.DELETED_DRAFT_PAGES', 'Deleted %d pages from the draft site, %d failures'), $pages->Count()-$failures, $failures);
|
2009-05-14 23:51:54 +02:00
|
|
|
FormResponse::add('statusMessage("'.$message.'","good");');
|
|
|
|
|
|
|
|
return FormResponse::respond();
|
|
|
|
}
|
2010-01-13 01:08:44 +01:00
|
|
|
|
|
|
|
function applicablePages($ids) {
|
|
|
|
return $this->applicablePagesHelper($ids, 'canDelete', true, false);
|
|
|
|
}
|
2009-05-14 23:51:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-11-10 22:37:11 +01:00
|
|
|
* Unpublish (delete from live site) items batch action.
|
2009-05-14 23:56:35 +02:00
|
|
|
*
|
|
|
|
* @package cms
|
|
|
|
* @subpackage batchaction
|
2009-05-14 23:51:54 +02:00
|
|
|
*/
|
|
|
|
class CMSBatchAction_DeleteFromLive extends CMSBatchAction {
|
|
|
|
function getActionTitle() {
|
|
|
|
return _t('CMSBatchActions.DELETE_PAGES', 'Delete from published site');
|
|
|
|
}
|
|
|
|
function getDoingText() {
|
|
|
|
return _t('CMSBatchActions.DELETING_PAGES', 'Deleting selected pages from the published site');
|
|
|
|
}
|
|
|
|
|
|
|
|
function run(DataObjectSet $pages) {
|
2009-10-30 01:55:37 +01:00
|
|
|
$ids = $pages->column('ID');
|
|
|
|
$this->batchaction($pages, 'doUnpublish',
|
|
|
|
_t('CMSBatchActions.DELETED_PAGES', 'Deleted %d pages from the published site, %d failures')
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach($ids as $pageID) {
|
|
|
|
$id = $pageID;
|
2009-05-14 23:51:54 +02:00
|
|
|
|
2010-01-13 00:59:49 +01:00
|
|
|
// check to see if the record exists on the stage site, if it doesn't remove the tree node
|
2009-05-21 07:11:14 +02:00
|
|
|
$stageRecord = Versioned::get_one_by_stage( 'SiteTree', 'Stage', "\"SiteTree\".\"ID\"=$id");
|
2009-05-14 23:51:54 +02:00
|
|
|
if($stageRecord) {
|
|
|
|
$stageRecord->IsAddedToStage = true;
|
|
|
|
$title = Convert::raw2js($stageRecord->TreeTitle());
|
|
|
|
FormResponse::add("$('sitetree').setNodeTitle($id, '$title');");
|
|
|
|
FormResponse::add("$('Form_EditForm').reloadIfSetTo($id);");
|
|
|
|
} else {
|
|
|
|
FormResponse::add("var node = $('sitetree').getTreeNodeByIdx('$id');");
|
|
|
|
FormResponse::add("if(node && node.parentTreeNode) node.parentTreeNode.removeTreeNode(node);");
|
|
|
|
FormResponse::add("$('Form_EditForm').reloadIfSetTo($id);");
|
|
|
|
}
|
|
|
|
}
|
2010-01-13 00:59:49 +01:00
|
|
|
|
2009-05-14 23:51:54 +02:00
|
|
|
return FormResponse::respond();
|
|
|
|
}
|
2010-01-13 01:08:44 +01:00
|
|
|
|
|
|
|
function applicablePages($ids) {
|
|
|
|
return $this->applicablePagesHelper($ids, 'canDelete', false, true);
|
|
|
|
}
|
2009-05-14 23:51:54 +02:00
|
|
|
}
|
|
|
|
|
2010-01-13 00:59:49 +01:00
|
|
|
|
|
|
|
|