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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
|
<?php
namespace Wcms;
class Opt extends Item
{
protected $sortby = 'id';
protected $order = 1;
protected $tagfilter = [];
protected $tagcompare = 'AND';
protected $authorfilter = [];
protected $authorcompare = 'AND';
protected $secure = 4;
protected $linkto = '';
protected $col = ['id'];
protected $taglist = [];
protected $authorlist = [];
protected $invert = 0;
protected $limit = 0;
protected $pageidlist = [];
protected $pagevarlist;
public function __construct(array $donnees = [])
{
$this->hydrate($donnees);
}
public function resetall()
{
$varlist = get_class_vars(self::class);
foreach ($varlist as $var => $default) {
$method = 'set' . $var;
$this->$method($default);
}
}
public function reset($var)
{
$varlist = get_class_vars(self::class);
if (in_array($var, $varlist)) {
$this->$var = $varlist[$var];
}
}
public function submit()
{
if (isset($_GET['submit'])) {
if ($_GET['submit'] == 'reset') {
$_SESSION['opt'] = [];
} elseif ($_GET['submit'] == 'filter') {
$this->getall();
}
} else {
$this->sessionall();
}
}
public function getall()
{
$optlist = ['sortby', 'order', 'secure', 'tagcompare', 'tagfilter', 'authorcompare', 'authorfilter', 'limit', 'invert', 'linkto'];
foreach ($optlist as $method) {
if (method_exists($this, $method)) {
if (isset($_GET[$method])) {
$setmethod = 'set' . $method;
$this->$setmethod($_GET[$method]);
} else {
$this->reset($method);
}
$_SESSION['opt'][$method] = $this->$method();
}
}
}
public function sessionall()
{
if (isset($_SESSION['opt'])) {
$this->hydrate($_SESSION['opt']);
}
}
public function getadress()
{
$object = $this->drylist(['sortby', 'order', 'secure', 'tagfilter', 'tagcompare', 'authorfilter', 'authorcompare', 'invert', 'limit']);
$object['submit'] = 'filter';
return '?' . urldecode(http_build_query($object));
}
public function sortbyorder($sortby = "")
{
$object = $this->drylist(['sortby', 'order', 'secure', 'tagfilter', 'tagcompare', 'authorfilter', 'authorcompare', 'invert', 'limit']);
if (!empty($sortby)) {
$object['sortby'] = $sortby;
}
$object['order'] = $object['order'] * -1;
$object['submit'] = 'filter';
return '?' . urldecode(http_build_query($object));
}
/**
* Get the link list for each tags of a page
*
* @param array $taglist List of tag to be abalysed
* @return string html code to be printed
*/
public function taglinks(array $taglist = []): string
{
$tagstring = "";
foreach ($taglist as $tag) {
$tagstring .= '<a class="tag tag_' . $tag . '" href="?' . $this->getfilteradress(['tagfilter' => [$tag]]) . '" >' . $tag . '</a>' . PHP_EOL;
}
return $tagstring;
}
/**
* Get the link list for each authors of an page
*
* @param array $authorlist List of author to be
* @return string html code to be printed
*/
public function authorlinks(array $authorlist = []): string
{
$authorstring = "";
foreach ($authorlist as $author) {
$authorstring .= '<a class="author author_' . $author . '" href="?' . $this->getfilteradress(['authorfilter' => [$author]]) . '" >' . $author . '</a>' . PHP_EOL;
}
return $authorstring;
}
public function securelink(int $level, string $secure)
{
return '<a class="secure ' . $secure . '" href="?' . $this->getfilteradress(['secure' => $level]) . '">' . $secure . '</a>' . PHP_EOL;
}
public function linktolink(array $linktolist)
{
$linktostring = "";
foreach ($linktolist as $linkto ) {
$linktostring .= '<a class="linkto" href="?' . $this->getfilteradress(['linkto' => $linkto]) . '" >' . $linkto . '</a>' . PHP_EOL;
}
return $linktostring;
}
public function getfilteradress(array $vars = [])
{
$varlist = ['sortby', 'order', 'secure', 'tagfilter', 'tagcompare', 'authorfilter', 'authorcompare', 'linkto', 'invert', 'limit'];
// array_filter($vars, function ())
$object = $this->drylist($varlist);
$object = array_merge($object, $vars);
$object['submit'] = 'filter';
return urldecode(http_build_query($object));
}
/**
* Get the query as http string
*
* @return string The resulted query
*/
public function getquery(): string
{
$class = get_class_vars(get_class($this));
$object = get_object_vars($this);
$class['pagevarlist'] = $object['pagevarlist'];
$class['taglist'] = $object['taglist'];
$class['authorlist'] = $object['authorlist'];
$query = array_diff_assoc_recursive($object, $class);
return urldecode(http_build_query($query));
}
public function parsetagcss(string $cssstring)
{
$classprefix = 'tag';
$pattern = '%a\.' . $classprefix . '\_([a-z0-9\-\_]*)\s*\{\s*(background-color):\s*(#[A-F0-6]{6})\;\s*\}%';
preg_match($pattern, $cssstring, $matches);
foreach ($matches as $value) {
}
}
public function tocss($cssdatas)
{
$string = '';
foreach ($cssdatas as $element => $css) {
$string .= PHP_EOL . $element . ' {';
foreach ($css as $param => $value) {
$string .= PHP_EOL . ' ' . $param . ': ' . $value . ';';
}
$string .= PHP_EOL . '}' . PHP_EOL;
}
return $string;
}
// _______________________________________________ G E T _______________________________________________
public function sortby()
{
return $this->sortby;
}
public function order()
{
return $this->order;
}
public function secure()
{
return $this->secure;
}
public function tagfilter($type = 'array')
{
return $this->tagfilter;
}
public function tagcompare()
{
return $this->tagcompare;
}
public function authorfilter($type = 'array')
{
return $this->authorfilter;
}
public function authorcompare()
{
return $this->authorcompare;
}
public function linkto($type = 'string')
{
return $this->linkto;
}
public function col($type = 'array')
{
if ($type == 'string') {
return implode(', ', $this->col);
} else {
return ($this->col);
}
}
public function taglist()
{
return $this->taglist;
}
public function authorlist()
{
return $this->authorlist;
}
public function invert()
{
return $this->invert;
}
public function pagevarlist()
{
return $this->pagevarlist;
}
public function limit()
{
return $this->limit;
}
public function pageidlist()
{
return $this->pageidlist;
}
// __________________________________________________ S E T _____________________________________________
public function setsortby($sortby)
{
if (is_string($sortby) && in_array($sortby, $this->pagevarlist) && in_array($sortby, Model::COLUMNS)) {
$this->sortby = strtolower(strip_tags($sortby));
}
}
public function setorder($order)
{
$order = intval($order);
if (in_array($order, [-1, 0, 1])) {
$this->order = $order;
}
}
public function settagfilter($tagfilter)
{
if (!empty($tagfilter) && is_array($tagfilter)) {
$tagfilterverif = [];
foreach ($tagfilter as $tag) {
if (array_key_exists($tag, $this->taglist)) {
$tagfilterverif[] = $tag;
}
}
$this->tagfilter = $tagfilterverif;
}
}
public function settagcompare($tagcompare)
{
if (in_array($tagcompare, ['OR', 'AND'])) {
$this->tagcompare = $tagcompare;
}
}
public function setauthorfilter($authorfilter)
{
if (!empty($authorfilter) && is_array($authorfilter)) {
$authorfilterverif = [];
foreach ($authorfilter as $author) {
if (array_key_exists($author, $this->authorlist)) {
$authorfilterverif[] = $author;
}
}
$this->authorfilter = $authorfilterverif;
}
}
public function setauthorcompare($authorcompare)
{
if (in_array($authorcompare, ['OR', 'AND'])) {
$this->authorcompare = $authorcompare;
}
}
public function setsecure($secure)
{
if ($secure >= 0 && $secure <= 5) {
$this->secure = intval($secure);
}
}
public function setlinkto($linkto) : bool
{
if (is_string($linkto)) {
if(empty($this->pageidlist)) {
$this->linkto = idclean($linkto);
return true;
} elseif (in_array($linkto, $this->pageidlist)) {
$this->linkto = idclean($linkto);
return true;
} else {
return false;
}
} else {
return false;
}
}
public function setcol($col)
{
if (is_array($col)) {
$this->col = array_intersect($this->pagevarlist, $col);
}
}
public function settaglist(array $pagelist)
{
$taglist = [];
foreach ($pagelist as $page) {
foreach ($page->tag('array') as $tag) {
if (!array_key_exists($tag, $taglist)) {
$taglist[$tag] = 1;
} else {
$taglist[$tag]++;
}
}
}
$taglistsorted = arsort($taglist);
$this->taglist = $taglist;
}
public function setauthorlist(array $pagelist)
{
$authorlist = [];
foreach ($pagelist as $page) {
foreach ($page->authors('array') as $author) {
if (!array_key_exists($author, $authorlist)) {
$authorlist[$author] = 1;
} else {
$authorlist[$author]++;
}
}
}
$authorlistsorted = arsort($authorlist);
$this->authorlist = $authorlist;
}
public function setinvert(int $invert)
{
if ($invert == 0 || $invert == 1) {
$this->invert = $invert;
} else {
$this->invert = 0;
}
}
public function setlimit($limit)
{
$limit = intval($limit);
if ($limit < 0) {
$limit = 0;
} elseif ($limit >= 10000) {
$limit = 9999;
}
$this->limit = $limit;
}
/**
* Import list of pages IDs
*
* @param array $pageidlist could be array of IDs or array of Page Object
*
* @return bool false if array content isn't string or Pages, otherwise : true
*/
public function setpageidlist(array $pageidlist) : bool
{
$idlist = [];
foreach ($pageidlist as $item) {
if (is_string($item)) {
$idlist[] = $item;
} elseif ($item instanceof Page) {
$idlist[] = $item->id();
} else {
return false;
}
}
$this->pageidlist = $idlist;
return true;
}
public function setpagevarlist(array $pagevarlist)
{
$this->pagevarlist = $pagevarlist;
}
}
|