forked from cosmocode/dokuwiki-plugin-struct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearchConfig.php
245 lines (207 loc) · 6.79 KB
/
SearchConfig.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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<?php
namespace dokuwiki\plugin\struct\meta;
/**
* Class SearchConfig
*
* The same as @see Search but can be initialized by a configuration array
*
* @package dokuwiki\plugin\struct\meta
*/
class SearchConfig extends Search
{
/** @var int default aggregation caching (depends on last struct save) */
public static $CACHE_DEFAULT = 1;
/** @var int caching depends on current user */
public static $CACHE_USER = 2;
/** @var int caching depends on current date */
public static $CACHE_DATE = 4;
/**
* @var array hold the configuration as parsed and extended by dynamic params
*/
protected $config;
/**
* @var SearchConfigParameters manages dynamic parameters
*/
protected $dynamicParameters;
/**
* @var int the cache flag to use (binary flags)
*/
protected $cacheFlag;
/**
* SearchConfig constructor.
* @param array $config The parsed configuration for this search
*/
public function __construct($config)
{
parent::__construct();
// setup schemas and columns
if (!empty($config['schemas'])) foreach ($config['schemas'] as $schema) {
$this->addSchema($schema[0], $schema[1]);
}
if (!empty($config['cols'])) foreach ($config['cols'] as $col) {
$this->addColumn($col);
}
// cache flag setting
$this->cacheFlag = self::$CACHE_DEFAULT;
if (!empty($config['filters'])) $this->cacheFlag = $this->determineCacheFlag($config['filters']);
// apply dynamic paramters
$this->dynamicParameters = new SearchConfigParameters($this);
$config = $this->dynamicParameters->updateConfig($config);
// configure search from configuration
if (!empty($config['filter'])) foreach ($config['filter'] as $filter) {
$this->addFilter($filter[0], $this->applyFilterVars($filter[2]), $filter[1], $filter[3]);
}
if (!empty($config['sort'])) foreach ($config['sort'] as $sort) {
$this->addSort($sort[0], $sort[1]);
}
if (!empty($config['limit'])) {
$this->setLimit($config['limit']);
}
if (!empty($config['offset'])) {
$this->setOffset($config['offset']);
}
$this->config = $config;
}
/**
* Set the cache flag accordingly to the set filter placeholders
*
* @param array $filters
* @return int
*/
protected function determineCacheFlag($filters)
{
$flags = self::$CACHE_DEFAULT;
foreach ($filters as $filter) {
if (is_array($filter)) $filter = $filter[2]; // this is the format we get fro the config parser
if (strpos($filter, '$USER$') !== false) {
$flags |= self::$CACHE_USER;
} elseif (strpos($filter, '$TODAY$') !== false) {
$flags |= self::$CACHE_DATE;
}
}
return $flags;
}
/**
* Replaces placeholders in the given filter value by the proper value
*
* @param string $filter
* @return string|string[] Result may be an array when a multi column placeholder is used
*/
protected function applyFilterVars($filter)
{
global $INFO;
// apply inexpensive filters first
$filter = str_replace(
array(
'$ID$',
'$NS$',
'$PAGE$',
'$USER$',
'$TODAY$'
),
array(
$INFO['id'],
getNS($INFO['id']),
noNS($INFO['id']),
isset($_SERVER['REMOTE_USER']) ? $_SERVER['REMOTE_USER'] : '',
date('Y-m-d')
),
$filter
);
// apply struct column placeholder (we support only one!)
if (preg_match('/^(.*?)(?:\$STRUCT\.(.*?)\$)(.*?)$/', $filter, $match)) {
$filter = $this->applyFilterVarsStruct($match);
} elseif (preg_match('/^(.*?)(?:\$USER\.(.*?)\$)(.*?)$/', $filter, $match)) {
$filter = $this->applyFilterVarsUser($match);
}
return $filter;
}
/**
* Replaces struct placeholders in the given filter value by the proper value
*
* @param string $match
* @return string|string[] Result may be an array when a multi column placeholder is used
*/
protected function applyFilterVarsStruct($match)
{
global $INFO;
$key = $match[2];
// we try to resolve the key via current schema aliases first, otherwise take it literally
$column = $this->findColumn($key);
if ($column) {
$label = $column->getLabel();
$table = $column->getTable();
} else {
list($table, $label) = explode('.', $key);
}
// get the data from the current page
if ($table && $label) {
$schemaData = AccessTable::getPageAccess($table, $INFO['id']);
$data = $schemaData->getData();
if (!isset($data[$label])) {
throw new StructException("column not in table", $label, $table);
}
$value = $data[$label]->getCompareValue();
if (is_array($value) && !count($value)) {
$value = '';
}
} else {
$value = '';
}
// apply any pre and postfixes, even when multi value
if (is_array($value)) {
$filter = array();
foreach ($value as $item) {
$filter[] = $match[1] . $item . $match[3];
}
} else {
$filter = $match[1] . $value . $match[3];
}
return $filter;
}
/**
* Replaces user placeholders in the given filter value by the proper value
*
* @param string $match
* @return string|string[] String for name and mail, array for grps
*/
protected function applyFilterVarsUser($match)
{
global $INFO;
$key = strtolower($match[2]);
if (!in_array($key, array('name', 'mail', 'grps'))) {
throw new StructException('"%s" is not a valid USER key', $key);
}
if (empty($INFO['userinfo'])) {
$filter = '';
} else {
$filter = $INFO['userinfo'][$key];
}
return $filter;
}
/**
* @return int cacheflag for this search
*/
public function getCacheFlag()
{
return $this->cacheFlag;
}
/**
* Access the dynamic paramters of this search
*
* Note: This call returns a clone of the parameters as they were initialized
*
* @return SearchConfigParameters
*/
public function getDynamicParameters()
{
return clone $this->dynamicParameters;
}
/**
* @return array the current config
*/
public function getConf()
{
return $this->config;
}
}