1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
<?php
use dokuwiki\Extension\ActionPlugin;
use dokuwiki\Extension\EventHandler;
use dokuwiki\Extension\Event;
/**
* DokuWiki Plugin safefnrecode (Action Component)
*
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
* @author Andreas Gohr <andi@splitbrain.org>
*/
class action_plugin_safefnrecode extends ActionPlugin
{
/** @inheritdoc */
public function register(EventHandler $controller)
{
$controller->register_hook('INDEXER_TASKS_RUN', 'BEFORE', $this, 'handleIndexerTasksRun');
}
/**
* Handle indexer event
*
* @param Event $event
* @param $param
*/
public function handleIndexerTasksRun(Event $event, $param)
{
global $conf;
if ($conf['fnencode'] != 'safe') return;
if (!file_exists($conf['datadir'] . '_safefn.recoded')) {
$this->recode($conf['datadir']);
touch($conf['datadir'] . '_safefn.recoded');
}
if (!file_exists($conf['olddir'] . '_safefn.recoded')) {
$this->recode($conf['olddir']);
touch($conf['olddir'] . '_safefn.recoded');
}
if (!file_exists($conf['metadir'] . '_safefn.recoded')) {
$this->recode($conf['metadir']);
touch($conf['metadir'] . '_safefn.recoded');
}
if (!file_exists($conf['mediadir'] . '_safefn.recoded')) {
$this->recode($conf['mediadir']);
touch($conf['mediadir'] . '_safefn.recoded');
}
}
/**
* Recursive function to rename all safe encoded files to use the new
* square bracket post indicator
*/
private function recode($dir)
{
$dh = opendir($dir);
if (!$dh) return;
while (($file = readdir($dh)) !== false) {
if ($file == '.' || $file == '..') continue; # cur and upper dir
if (is_dir("$dir/$file")) $this->recode("$dir/$file"); #recurse
if (strpos($file, '%') === false) continue; # no encoding used
$new = preg_replace('/(%[^\]]*?)\./', '\1]', $file); # new post indicator
if (preg_match('/%[^\]]+$/', $new)) $new .= ']'; # fix end FS#2122
rename("$dir/$file", "$dir/$new"); # rename it
}
closedir($dh);
}
}
|