-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.php
70 lines (62 loc) · 1.99 KB
/
action.php
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
<?php
/**
* DokuWiki Plugin searchform (Action Component)
*
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
* @author Gerrit Uitslag <[email protected]>
*/
use dokuwiki\Extension\ActionPlugin;
use dokuwiki\Extension\Event;
use dokuwiki\Extension\EventHandler;
/**
* Class action_plugin_searchform
*/
class action_plugin_searchform extends ActionPlugin {
/**
* Registers a callback function for a given event
*
* @param EventHandler $controller DokuWiki's event controller object
* @return void
*/
public function register(EventHandler $controller) {
$controller->register_hook('DOKUWIKI_STARTED', 'AFTER', $this, 'changeQuery');
}
/**
* Restrict the global query to namespace given as url parameter
*
* @param Event $event event object by reference
* @param mixed $param [the parameters passed as fifth argument to register_hook() when this
* handler was registered]
* @return void
*/
public function changeQuery(Event $event, $param) {
global $QUERY;
global $ACT;
if($ACT != 'search'){
return;
}
$this->addNamespaceToQuery($QUERY);
}
/**
* Extend query string with namespace, if it doesn't contain a namespace expression
*
* @param string &$query (reference) search query string
*/
private function addNamespaceToQuery(&$query) {
global $INPUT;
$ns = cleanID($INPUT->str('ns'));
if($ns) {
//add namespace if user hasn't already provide one
if(!preg_match('/(?:^| )(?:\^|@|-ns:|ns:)[\w:]+/u', $query, $matches)) {
$query .= ' @' . $ns;
}
}
$notns = cleanID($INPUT->str('-ns'));
if($notns) {
//add namespace if user hasn't already provide one
if(!preg_match('/(?:^| )(?:\^|@|-ns:|ns:)[\w:]+/u', $query, $matches)) {
$query .= ' ^' . $notns;
}
}
}
}