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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
<?php
/**
* DokuWiki AJAX call handler
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Andreas Gohr <andi@splitbrain.org>
*/
//fix for Opera XMLHttpRequests
if(!count($_POST) && $HTTP_RAW_POST_DATA){
parse_str($HTTP_RAW_POST_DATA, $_POST);
}
if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/');
require_once(DOKU_INC.'inc/init.php');
require_once(DOKU_INC.'inc/common.php');
require_once(DOKU_INC.'inc/pageutils.php');
require_once(DOKU_INC.'inc/auth.php');
//close sesseion
session_write_close();
header('Content-Type: text/html; charset=utf-8');
//call the requested function
if (!isset($_POST['call'])) { return; }
$call = 'ajax_'.$_POST['call'];
if(function_exists($call)){
$call();
}else{
$call = $_POST['call'];
$evt = new Doku_Event('AJAX_CALL_UNKNOWN', $call);
if ($evt->advise_before()) {
print "AJAX call '".htmlspecialchars($_POST['call'])."' unknown!\n";
}
$evt->advise_after();
unset($evt);
}
/**
* Searches for matching pagenames
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
function ajax_qsearch(){
global $conf;
global $lang;
$query = cleanID($_POST['q']);
if(empty($query)) return;
require_once(DOKU_INC.'inc/html.php');
require_once(DOKU_INC.'inc/fulltext.php');
$data = array();
$data = ft_pageLookup($query);
if(!count($data)) return;
print '<strong>'.$lang['quickhits'].'</strong>';
print '<ul>';
foreach($data as $id){
print '<li>';
print html_wikilink(':'.$id);
print '</li>';
}
print '</ul>';
}
/**
* Refresh a page lock and save draft
*
* Andreas Gohr <andi@splitbrain.org>
*/
function ajax_lock(){
global $conf;
global $lang;
$id = cleanID($_POST['id']);
if(empty($id)) return;
if(!checklock($id)){
lock($id);
echo 1;
}
if($conf['usedraft'] && $_POST['wikitext']){
$client = $_SERVER['REMOTE_USER'];
if(!$client) $client = clientIP(true);
$draft = array('id' => $id,
'prefix' => $_POST['prefix'],
'text' => $_POST['wikitext'],
'suffix' => $_POST['suffix'],
'date' => $_POST['date'],
'client' => $client,
);
$cname = getCacheName($draft['client'].$id,'.draft');
if(io_saveFile($cname,serialize($draft))){
echo $lang['draftdate'].' '.date($conf['dformat']);
}
}
}
/**
* Delete a draft
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
function ajax_draftdel(){
$id = cleanID($_POST['id']);
if(empty($id)) return;
$client = $_SERVER['REMOTE_USER'];
if(!$client) $client = clientIP(true);
$cname = getCacheName($client.$id,'.draft');
@unlink($cname);
}
/**
* Return subnamespaces for the Mediamanager
*/
function ajax_medians(){
global $conf;
require_once(DOKU_INC.'inc/search.php');
require_once(DOKU_INC.'inc/media.php');
// wanted namespace
$ns = cleanID($_POST['ns']);
$dir = utf8_encodeFN(str_replace(':','/',$ns));
$lvl = count(explode(':',$ns));
$data = array();
search($data,$conf['mediadir'],'search_index',array('nofiles' => true),$dir);
foreach($data as $item){
$item['level'] = $lvl+1;
echo media_nstree_li($item);
echo media_nstree_item($item);
echo '</li>';
}
}
/**
* Return subnamespaces for the Mediamanager
*/
function ajax_medialist(){
global $conf;
require_once(DOKU_INC.'inc/media.php');
media_filelist($_POST['ns']);
}
//Setup VIM: ex: et ts=2 enc=utf-8 :
?>
|