はじまりの大地
This commit is contained in:
@@ -0,0 +1,221 @@
|
||||
<?php
|
||||
/**
|
||||
* Move Plugin Page Rename Functionality
|
||||
*
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
* @author Andreas Gohr <gohr@cosmocode.de>
|
||||
*/
|
||||
// must be run within Dokuwiki
|
||||
if(!defined('DOKU_INC')) die();
|
||||
|
||||
/**
|
||||
* Class action_plugin_move_rename
|
||||
*/
|
||||
class action_plugin_move_rename extends DokuWiki_Action_Plugin {
|
||||
|
||||
/**
|
||||
* Register event handlers.
|
||||
*
|
||||
* @param Doku_Event_Handler $controller The plugin controller
|
||||
*/
|
||||
public function register(Doku_Event_Handler $controller) {
|
||||
$controller->register_hook('DOKUWIKI_STARTED', 'AFTER', $this, 'handle_init');
|
||||
|
||||
// TODO: DEPRECATED JAN 2018
|
||||
$controller->register_hook('TEMPLATE_PAGETOOLS_DISPLAY', 'BEFORE', $this, 'handle_pagetools');
|
||||
|
||||
$controller->register_hook('MENU_ITEMS_ASSEMBLY', 'AFTER', $this, 'addsvgbutton', array());
|
||||
$controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, 'handle_ajax');
|
||||
$controller->register_hook('AJAX_CALL_UNKNOWN', 'BEFORE', $this, 'handleAjaxMediaManager');
|
||||
}
|
||||
|
||||
/**
|
||||
* set JavaScript info if renaming of current page is possible
|
||||
*/
|
||||
public function handle_init() {
|
||||
global $JSINFO;
|
||||
global $INFO;
|
||||
global $INPUT;
|
||||
global $USERINFO;
|
||||
|
||||
if (isset($INFO['id'])) {
|
||||
$JSINFO['move_renameokay'] = $this->renameOkay($INFO['id']);
|
||||
} else {
|
||||
$JSINFO['move_renameokay'] = false;
|
||||
}
|
||||
|
||||
$JSINFO['move_allowrename'] = auth_isMember(
|
||||
$this->getConf('allowrename'),
|
||||
$INPUT->server->str('REMOTE_USER'),
|
||||
$USERINFO['grps'] ?? []
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a button to the default template
|
||||
*
|
||||
* TODO: DEPRECATED JAN 2018
|
||||
*
|
||||
* @param Doku_Event $event
|
||||
*/
|
||||
public function handle_pagetools(Doku_Event $event) {
|
||||
if($event->data['view'] != 'main') return;
|
||||
if (!$this->getConf('pagetools_integration')) {
|
||||
return;
|
||||
}
|
||||
|
||||
$newitem = '<li class="plugin_move_page"><a href=""><span>' . $this->getLang('renamepage') . '</span></a></li>';
|
||||
$offset = count($event->data['items']) - 1;
|
||||
$event->data['items'] =
|
||||
array_slice($event->data['items'], 0, $offset, true) +
|
||||
array('plugin_move' => $newitem) +
|
||||
array_slice($event->data['items'], $offset, null, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add 'rename' button to page tools, new SVG based mechanism
|
||||
*
|
||||
* @param Doku_Event $event
|
||||
*/
|
||||
public function addsvgbutton(Doku_Event $event) {
|
||||
global $INFO, $JSINFO;
|
||||
if(
|
||||
$event->data['view'] !== 'page' ||
|
||||
!$this->getConf('pagetools_integration') ||
|
||||
empty($JSINFO['move_renameokay'])
|
||||
) {
|
||||
return;
|
||||
}
|
||||
if(!$INFO['exists']) {
|
||||
return;
|
||||
}
|
||||
array_splice($event->data['items'], -1, 0, array(new \dokuwiki\plugin\move\MenuItem()));
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename a single page
|
||||
*/
|
||||
public function handle_ajax(Doku_Event $event) {
|
||||
if($event->data != 'plugin_move_rename') return;
|
||||
$event->preventDefault();
|
||||
$event->stopPropagation();
|
||||
|
||||
global $MSG;
|
||||
global $INPUT;
|
||||
|
||||
$src = cleanID($INPUT->str('id'));
|
||||
$dst = cleanID($INPUT->str('newid'));
|
||||
|
||||
/** @var helper_plugin_move_op $MoveOperator */
|
||||
$MoveOperator = plugin_load('helper', 'move_op');
|
||||
|
||||
$JSON = new JSON();
|
||||
|
||||
header('Content-Type: application/json');
|
||||
|
||||
if($this->renameOkay($src) && $MoveOperator->movePage($src, $dst)) {
|
||||
// all went well, redirect
|
||||
echo $JSON->encode(array('redirect_url' => wl($dst, '', true, '&')));
|
||||
} else {
|
||||
if(isset($MSG[0])) {
|
||||
$error = $MSG[0]; // first error
|
||||
} else {
|
||||
$error = $this->getLang('cantrename');
|
||||
}
|
||||
echo $JSON->encode(array('error' => $error));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle media renames in media manager
|
||||
*
|
||||
* @param Doku_Event $event
|
||||
* @return void
|
||||
*/
|
||||
public function handleAjaxMediaManager(Doku_Event $event)
|
||||
{
|
||||
if ($event->data !== 'plugin_move_rename_mediamanager') return;
|
||||
|
||||
if (!checkSecurityToken()) {
|
||||
throw new \Exception('Security token did not match');
|
||||
}
|
||||
|
||||
$event->preventDefault();
|
||||
$event->stopPropagation();
|
||||
|
||||
global $INPUT;
|
||||
global $MSG;
|
||||
global $USERINFO;
|
||||
|
||||
$src = cleanID($INPUT->str('src'));
|
||||
$dst = cleanID($INPUT->str('dst'));
|
||||
|
||||
/** @var helper_plugin_move_op $moveOperator */
|
||||
$moveOperator = plugin_load('helper', 'move_op');
|
||||
|
||||
if ($src && $dst) {
|
||||
header('Content-Type: application/json');
|
||||
|
||||
$response = [];
|
||||
|
||||
// check user/group restrictions
|
||||
if (
|
||||
!auth_isMember($this->getConf('allowrename'), $INPUT->server->str('REMOTE_USER'), (array) $USERINFO['grps'])
|
||||
) {
|
||||
$response['error'] = $this->getLang('notallowed');
|
||||
echo json_encode($response);
|
||||
return;
|
||||
}
|
||||
|
||||
$response['success'] = $moveOperator->moveMedia($src, $dst);
|
||||
|
||||
if ($response['success']) {
|
||||
$ns = getNS($dst);
|
||||
$response['redirect_url'] = wl($dst, ['do' => 'media', 'ns' => $ns], true, '&');
|
||||
} else {
|
||||
$response['error'] = sprintf($this->getLang('mediamoveerror'), $src);
|
||||
if (isset($MSG)) {
|
||||
foreach ($MSG as $msg) {
|
||||
$response['error'] .= ' ' . $msg['msg'];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
echo json_encode($response);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines if it would be okay to show a rename page button for the given page and current user
|
||||
*
|
||||
* @param $id
|
||||
* @return bool
|
||||
*/
|
||||
public function renameOkay($id) {
|
||||
global $conf;
|
||||
global $ACT;
|
||||
global $USERINFO;
|
||||
if(!($ACT == 'show' || empty($ACT))) return false;
|
||||
if(!page_exists($id)) return false;
|
||||
if(auth_quickaclcheck($id) < AUTH_EDIT) return false;
|
||||
if(checklock($id) !== false || @file_exists(wikiLockFN($id))) return false;
|
||||
if(!$conf['useacl']) return true;
|
||||
if(!isset($_SERVER['REMOTE_USER'])) return false;
|
||||
if(!auth_isMember($this->getConf('allowrename'), $_SERVER['REMOTE_USER'], (array) $USERINFO['grps'])) return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Use this in your template to add a simple "move this page" link
|
||||
*
|
||||
* Alternatively give anything the class "plugin_move_page" - it will automatically be hidden and shown and
|
||||
* trigger the page move dialog.
|
||||
*/
|
||||
public function tpl() {
|
||||
echo '<a href="" class="plugin_move_page">';
|
||||
echo $this->getLang('renamepage');
|
||||
echo '</a>';
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user