]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/bookmark/BookmarkFilter.php
Merge pull request #1626 from ArthurHoaro/fix/vintage-webpack
[github/shaarli/Shaarli.git] / application / bookmark / BookmarkFilter.php
CommitLineData
822bffce
A
1<?php
2
efb7d21b
A
3declare(strict_types=1);
4
6696729b
V
5namespace Shaarli\Bookmark;
6
7use Exception;
336a28fa 8use Shaarli\Bookmark\Exception\BookmarkNotFoundException;
f24896b2 9
822bffce
A
10/**
11 * Class LinkFilter.
12 *
13 * Perform search and filter operation on link data list.
14 */
336a28fa 15class BookmarkFilter
822bffce
A
16{
17 /**
18 * @var string permalinks.
19 */
6696729b 20 public static $FILTER_HASH = 'permalink';
822bffce
A
21
22 /**
23 * @var string text search.
24 */
6696729b 25 public static $FILTER_TEXT = 'fulltext';
822bffce
A
26
27 /**
28 * @var string tag filter.
29 */
6696729b 30 public static $FILTER_TAG = 'tags';
822bffce
A
31
32 /**
33 * @var string filter by day.
34 */
6696729b 35 public static $FILTER_DAY = 'FILTER_DAY';
822bffce 36
336a28fa
A
37 /**
38 * @var string filter by day.
39 */
40 public static $DEFAULT = 'NO_FILTER';
41
42 /** @var string Visibility: all */
43 public static $ALL = 'all';
44
45 /** @var string Visibility: public */
46 public static $PUBLIC = 'public';
47
48 /** @var string Visibility: private */
49 public static $PRIVATE = 'private';
50
9ccca401
A
51 /**
52 * @var string Allowed characters for hashtags (regex syntax).
53 */
54 public static $HASHTAG_CHARS = '\p{Pc}\p{N}\p{L}\p{Mn}';
55
822bffce 56 /**
336a28fa 57 * @var Bookmark[] all available bookmarks.
822bffce 58 */
336a28fa 59 private $bookmarks;
822bffce
A
60
61 /**
336a28fa 62 * @param Bookmark[] $bookmarks initialization.
822bffce 63 */
336a28fa 64 public function __construct($bookmarks)
822bffce 65 {
336a28fa 66 $this->bookmarks = $bookmarks;
822bffce
A
67 }
68
69 /**
336a28fa 70 * Filter bookmarks according to parameters.
822bffce
A
71 *
72 * @param string $type Type of filter (eg. tags, permalink, etc.).
528a6f8a 73 * @param mixed $request Filter content.
822bffce 74 * @param bool $casesensitive Optional: Perform case sensitive filter if true.
336a28fa
A
75 * @param string $visibility Optional: return only all/private/public bookmarks
76 * @param bool $untaggedonly Optional: return only untagged bookmarks. Applies only if $type includes FILTER_TAG
77 *
78 * @return Bookmark[] filtered bookmark list.
822bffce 79 *
336a28fa 80 * @throws BookmarkNotFoundException
822bffce 81 */
efb7d21b
A
82 public function filter(
83 string $type,
84 $request,
85 bool $casesensitive = false,
86 string $visibility = 'all',
87 bool $untaggedonly = false
88 ) {
6696729b 89 if (!in_array($visibility, ['all', 'public', 'private'])) {
7f96d9ec
A
90 $visibility = 'all';
91 }
92
f211e417 93 switch ($type) {
822bffce
A
94 case self::$FILTER_HASH:
95 return $this->filterSmallHash($request);
f210d94f
LC
96 case self::$FILTER_TAG | self::$FILTER_TEXT: // == "vuotext"
97 $noRequest = empty($request) || (empty($request[0]) && empty($request[1]));
98 if ($noRequest) {
99 if ($untaggedonly) {
100 return $this->filterUntagged($visibility);
c51fae92 101 }
f210d94f 102 return $this->noFilter($visibility);
c51fae92 103 }
f210d94f
LC
104 if ($untaggedonly) {
105 $filtered = $this->filterUntagged($visibility);
106 } else {
336a28fa 107 $filtered = $this->bookmarks;
f210d94f
LC
108 }
109 if (!empty($request[0])) {
336a28fa 110 $filtered = (new BookmarkFilter($filtered))->filterTags($request[0], $casesensitive, $visibility);
f210d94f
LC
111 }
112 if (!empty($request[1])) {
336a28fa 113 $filtered = (new BookmarkFilter($filtered))->filterFulltext($request[1], $visibility);
f210d94f
LC
114 }
115 return $filtered;
822bffce 116 case self::$FILTER_TEXT:
7f96d9ec 117 return $this->filterFulltext($request, $visibility);
822bffce 118 case self::$FILTER_TAG:
f210d94f
LC
119 if ($untaggedonly) {
120 return $this->filterUntagged($visibility);
121 } else {
122 return $this->filterTags($request, $casesensitive, $visibility);
123 }
822bffce 124 case self::$FILTER_DAY:
27ddfec3 125 return $this->filterDay($request, $visibility);
822bffce 126 default:
7f96d9ec 127 return $this->noFilter($visibility);
822bffce
A
128 }
129 }
130
131 /**
132 * Unknown filter, but handle private only.
133 *
336a28fa 134 * @param string $visibility Optional: return only all/private/public bookmarks
822bffce 135 *
336a28fa 136 * @return Bookmark[] filtered bookmarks.
822bffce 137 */
efb7d21b 138 private function noFilter(string $visibility = 'all')
822bffce 139 {
7f96d9ec 140 if ($visibility === 'all') {
336a28fa 141 return $this->bookmarks;
822bffce
A
142 }
143
144 $out = array();
336a28fa
A
145 foreach ($this->bookmarks as $key => $value) {
146 if ($value->isPrivate() && $visibility === 'private') {
7f96d9ec 147 $out[$key] = $value;
336a28fa 148 } elseif (!$value->isPrivate() && $visibility === 'public') {
01878a75 149 $out[$key] = $value;
822bffce
A
150 }
151 }
152
822bffce
A
153 return $out;
154 }
155
156 /**
157 * Returns the shaare corresponding to a smallHash.
158 *
159 * @param string $smallHash permalink hash.
160 *
efb7d21b 161 * @return Bookmark[] $filtered array containing permalink data.
528a6f8a 162 *
efb7d21b 163 * @throws BookmarkNotFoundException if the smallhash doesn't match any link.
822bffce 164 */
efb7d21b 165 private function filterSmallHash(string $smallHash)
822bffce 166 {
336a28fa
A
167 foreach ($this->bookmarks as $key => $l) {
168 if ($smallHash == $l->getShortUrl()) {
822bffce 169 // Yes, this is ugly and slow
336a28fa 170 return [$key => $l];
822bffce
A
171 }
172 }
528a6f8a 173
336a28fa 174 throw new BookmarkNotFoundException();
822bffce
A
175 }
176
177 /**
336a28fa 178 * Returns the list of bookmarks corresponding to a full-text search
822bffce
A
179 *
180 * Searches:
181 * - in the URLs, title and description;
bedd176a
A
182 * - are case-insensitive;
183 * - terms surrounded by quotes " are exact terms search.
184 * - terms starting with a dash - are excluded (except exact terms).
822bffce
A
185 *
186 * Example:
187 * print_r($mydb->filterFulltext('hollandais'));
188 *
189 * mb_convert_case($val, MB_CASE_LOWER, 'UTF-8')
190 * - allows to perform searches on Unicode text
191 * - see https://github.com/shaarli/Shaarli/issues/75 for examples
192 *
193 * @param string $searchterms search query.
336a28fa 194 * @param string $visibility Optional: return only all/private/public bookmarks.
822bffce 195 *
efb7d21b 196 * @return Bookmark[] search results.
822bffce 197 */
efb7d21b 198 private function filterFulltext(string $searchterms, string $visibility = 'all')
822bffce 199 {
c51fae92 200 if (empty($searchterms)) {
7f96d9ec 201 return $this->noFilter($visibility);
c51fae92
A
202 }
203
4e3875c0 204 $filtered = [];
ebd8075a 205 $search = mb_convert_case(html_entity_decode($searchterms), MB_CASE_LOWER, 'UTF-8');
bedd176a
A
206 $exactRegex = '/"([^"]+)"/';
207 // Retrieve exact search terms.
208 preg_match_all($exactRegex, $search, $exactSearch);
209 $exactSearch = array_values(array_filter($exactSearch[1]));
210
211 // Remove exact search terms to get AND terms search.
212 $explodedSearchAnd = explode(' ', trim(preg_replace($exactRegex, '', $search)));
213 $explodedSearchAnd = array_values(array_filter($explodedSearchAnd));
214
215 // Filter excluding terms and update andSearch.
4e3875c0
A
216 $excludeSearch = [];
217 $andSearch = [];
bedd176a
A
218 foreach ($explodedSearchAnd as $needle) {
219 if ($needle[0] == '-' && strlen($needle) > 1) {
220 $excludeSearch[] = substr($needle, 1);
221 } else {
222 $andSearch[] = $needle;
223 }
224 }
225
822bffce 226 // Iterate over every stored link.
336a28fa
A
227 foreach ($this->bookmarks as $id => $link) {
228 // ignore non private bookmarks when 'privatonly' is on.
7f96d9ec 229 if ($visibility !== 'all') {
336a28fa 230 if (!$link->isPrivate() && $visibility === 'private') {
7f96d9ec 231 continue;
336a28fa 232 } elseif ($link->isPrivate() && $visibility === 'public') {
7f96d9ec
A
233 continue;
234 }
822bffce
A
235 }
236
4e3875c0
A
237 $lengths = [];
238 $content = $this->buildFullTextSearchableLink($link, $lengths);
522b278b
A
239
240 // Be optimistic
241 $found = true;
4e3875c0 242 $foundPositions = [];
522b278b
A
243
244 // First, we look for exact term search
4e3875c0 245 // Then iterate over keywords, if keyword is not found,
522b278b 246 // no need to check for the others. We want all or nothing.
4e3875c0
A
247 foreach ([$exactSearch, $andSearch] as $search) {
248 for ($i = 0; $i < count($search) && $found !== false; $i++) {
249 $found = mb_strpos($content, $search[$i]);
250 if ($found === false) {
251 break;
252 }
253
254 $foundPositions[] = ['start' => $found, 'end' => $found + mb_strlen($search[$i])];
255 }
522b278b
A
256 }
257
258 // Exclude terms.
4e3875c0 259 for ($i = 0; $i < count($excludeSearch) && $found !== false; $i++) {
522b278b
A
260 $found = strpos($content, $excludeSearch[$i]) === false;
261 }
262
4e3875c0
A
263 if ($found !== false) {
264 $link->addAdditionalContentEntry(
265 'search_highlight',
266 $this->postProcessFoundPositions($lengths, $foundPositions)
267 );
268
01878a75 269 $filtered[$id] = $link;
822bffce
A
270 }
271 }
272
822bffce
A
273 return $filtered;
274 }
275
341527ba
WE
276 /**
277 * generate a regex fragment out of a tag
6696729b 278 *
341527ba 279 * @param string $tag to to generate regexs from. may start with '-' to negate, contain '*' as wildcard
6696729b 280 *
341527ba
WE
281 * @return string generated regex fragment
282 */
efb7d21b 283 private static function tag2regex(string $tag): string
341527ba
WE
284 {
285 $len = strlen($tag);
f211e417 286 if (!$len || $tag === "-" || $tag === "*") {
341527ba
WE
287 // nothing to search, return empty regex
288 return '';
289 }
f211e417 290 if ($tag[0] === "-") {
341527ba
WE
291 // query is negated
292 $i = 1; // use offset to start after '-' character
293 $regex = '(?!'; // create negative lookahead
294 } else {
295 $i = 0; // start at first character
296 $regex = '(?='; // use positive lookahead
297 }
298 $regex .= '.*(?:^| )'; // before tag may only be a space or the beginning
299 // iterate over string, separating it into placeholder and content
f211e417
V
300 for (; $i < $len; $i++) {
301 if ($tag[$i] === '*') {
341527ba
WE
302 // placeholder found
303 $regex .= '[^ ]*?';
304 } else {
305 // regular characters
306 $offset = strpos($tag, '*', $i);
f211e417 307 if ($offset === false) {
341527ba
WE
308 // no placeholder found, set offset to end of string
309 $offset = $len;
310 }
311 // subtract one, as we want to get before the placeholder or end of string
312 $offset -= 1;
313 // we got a tag name that we want to search for. escape any regex characters to prevent conflicts.
314 $regex .= preg_quote(substr($tag, $i, $offset - $i + 1), '/');
315 // move $i on
316 $i = $offset;
317 }
318 }
319 $regex .= '(?:$| ))'; // after the tag may only be a space or the end
320 return $regex;
321 }
322
822bffce 323 /**
336a28fa 324 * Returns the list of bookmarks associated with a given list of tags
822bffce
A
325 *
326 * You can specify one or more tags, separated by space or a comma, e.g.
327 * print_r($mydb->filterTags('linux programming'));
328 *
efb7d21b
A
329 * @param string|array $tags list of tags, separated by commas or blank spaces if passed as string.
330 * @param bool $casesensitive ignore case if false.
331 * @param string $visibility Optional: return only all/private/public bookmarks.
822bffce 332 *
efb7d21b 333 * @return Bookmark[] filtered bookmarks.
822bffce 334 */
efb7d21b 335 public function filterTags($tags, bool $casesensitive = false, string $visibility = 'all')
822bffce 336 {
341527ba
WE
337 // get single tags (we may get passed an array, even though the docs say different)
338 $inputTags = $tags;
f211e417 339 if (!is_array($tags)) {
341527ba
WE
340 // we got an input string, split tags
341 $inputTags = preg_split('/(?:\s+)|,/', $inputTags, -1, PREG_SPLIT_NO_EMPTY);
342 }
343
f211e417 344 if (!count($inputTags)) {
341527ba 345 // no input tags
7f96d9ec 346 return $this->noFilter($visibility);
c51fae92
A
347 }
348
336a28fa
A
349 // If we only have public visibility, we can't look for hidden tags
350 if ($visibility === self::$PUBLIC) {
351 $inputTags = array_values(array_filter($inputTags, function ($tag) {
352 return ! startsWith($tag, '.');
353 }));
354
355 if (empty($inputTags)) {
356 return [];
357 }
358 }
359
341527ba
WE
360 // build regex from all tags
361 $re = '/^' . implode(array_map("self::tag2regex", $inputTags)) . '.*$/';
f211e417 362 if (!$casesensitive) {
341527ba
WE
363 // make regex case insensitive
364 $re .= 'i';
21979ff1 365 }
822bffce 366
341527ba 367 // create resulting array
336a28fa 368 $filtered = [];
341527ba
WE
369
370 // iterate over each link
336a28fa 371 foreach ($this->bookmarks as $key => $link) {
341527ba 372 // check level of visibility
336a28fa 373 // ignore non private bookmarks when 'privateonly' is on.
7f96d9ec 374 if ($visibility !== 'all') {
336a28fa 375 if (!$link->isPrivate() && $visibility === 'private') {
7f96d9ec 376 continue;
336a28fa 377 } elseif ($link->isPrivate() && $visibility === 'public') {
7f96d9ec
A
378 continue;
379 }
822bffce 380 }
336a28fa
A
381 $search = $link->getTagsString(); // build search string, start with tags of current link
382 if (strlen(trim($link->getDescription())) && strpos($link->getDescription(), '#') !== false) {
341527ba
WE
383 // description given and at least one possible tag found
384 $descTags = array();
385 // find all tags in the form of #tag in the description
386 preg_match_all(
387 '/(?<![' . self::$HASHTAG_CHARS . '])#([' . self::$HASHTAG_CHARS . ']+?)\b/sm',
336a28fa 388 $link->getDescription(),
341527ba
WE
389 $descTags
390 );
f211e417 391 if (count($descTags[1])) {
341527ba
WE
392 // there were some tags in the description, add them to the search string
393 $search .= ' ' . implode(' ', $descTags[1]);
21979ff1 394 }
341527ba
WE
395 };
396 // match regular expression with search string
f211e417 397 if (!preg_match($re, $search)) {
341527ba
WE
398 // this entry does _not_ match our regex
399 continue;
21979ff1 400 }
341527ba 401 $filtered[$key] = $link;
822bffce 402 }
822bffce
A
403 return $filtered;
404 }
405
7d86f40b 406 /**
336a28fa 407 * Return only bookmarks without any tag.
7d86f40b 408 *
336a28fa 409 * @param string $visibility return only all/private/public bookmarks.
7d86f40b 410 *
efb7d21b 411 * @return Bookmark[] filtered bookmarks.
7d86f40b 412 */
efb7d21b 413 public function filterUntagged(string $visibility)
7d86f40b
A
414 {
415 $filtered = [];
336a28fa 416 foreach ($this->bookmarks as $key => $link) {
7d86f40b 417 if ($visibility !== 'all') {
336a28fa 418 if (!$link->isPrivate() && $visibility === 'private') {
7d86f40b 419 continue;
336a28fa 420 } elseif ($link->isPrivate() && $visibility === 'public') {
7d86f40b
A
421 continue;
422 }
423 }
424
336a28fa 425 if (empty(trim($link->getTagsString()))) {
7d86f40b
A
426 $filtered[$key] = $link;
427 }
428 }
429
430 return $filtered;
431 }
432
822bffce
A
433 /**
434 * Returns the list of articles for a given day, chronologically sorted
435 *
436 * Day must be in the form 'YYYYMMDD' (e.g. '20120125'), e.g.
437 * print_r($mydb->filterDay('20120125'));
438 *
439 * @param string $day day to filter.
27ddfec3
A
440 * @param string $visibility return only all/private/public bookmarks.
441
efb7d21b 442 * @return Bookmark[] all link matching given day.
822bffce
A
443 *
444 * @throws Exception if date format is invalid.
445 */
efb7d21b 446 public function filterDay(string $day, string $visibility)
822bffce 447 {
6696729b 448 if (!checkDateFormat('Ymd', $day)) {
822bffce
A
449 throw new Exception('Invalid date format');
450 }
451
69e29ff6 452 $filtered = [];
27ddfec3
A
453 foreach ($this->bookmarks as $key => $bookmark) {
454 if ($visibility === static::$PUBLIC && $bookmark->isPrivate()) {
455 continue;
456 }
457
458 if ($bookmark->getCreated()->format('Ymd') == $day) {
459 $filtered[$key] = $bookmark;
822bffce
A
460 }
461 }
01878a75
A
462
463 // sort by date ASC
464 return array_reverse($filtered, true);
822bffce
A
465 }
466
467 /**
468 * Convert a list of tags (str) to an array. Also
469 * - handle case sensitivity.
470 * - accepts spaces commas as separator.
822bffce
A
471 *
472 * @param string $tags string containing a list of tags.
473 * @param bool $casesensitive will convert everything to lowercase if false.
474 *
efb7d21b 475 * @return string[] filtered tags string.
7f96d9ec 476 */
efb7d21b 477 public static function tagsStrToArray(string $tags, bool $casesensitive): array
822bffce
A
478 {
479 // We use UTF-8 conversion to handle various graphemes (i.e. cyrillic, or greek)
480 $tagsOut = $casesensitive ? $tags : mb_convert_case($tags, MB_CASE_LOWER, 'UTF-8');
481 $tagsOut = str_replace(',', ' ', $tagsOut);
482
b3051a6a 483 return preg_split('/\s+/', $tagsOut, -1, PREG_SPLIT_NO_EMPTY);
822bffce 484 }
4e3875c0
A
485
486 /**
487 * This method finalize the content of the foundPositions array,
488 * by associated all search results to their associated bookmark field,
489 * making sure that there is no overlapping results, etc.
490 *
491 * @param array $fieldLengths Start and end positions of every bookmark fields in the aggregated bookmark content.
492 * @param array $foundPositions Positions where the search results were found in the aggregated content.
493 *
494 * @return array Updated $foundPositions, by bookmark field.
495 */
496 protected function postProcessFoundPositions(array $fieldLengths, array $foundPositions): array
497 {
498 // Sort results by starting position ASC.
499 usort($foundPositions, function (array $entryA, array $entryB): int {
500 return $entryA['start'] > $entryB['start'] ? 1 : -1;
501 });
502
503 $out = [];
504 $currentMax = -1;
505 foreach ($foundPositions as $foundPosition) {
506 // we do not allow overlapping highlights
507 if ($foundPosition['start'] < $currentMax) {
508 continue;
509 }
510
511 $currentMax = $foundPosition['end'];
512 foreach ($fieldLengths as $part => $length) {
513 if ($foundPosition['start'] < $length['start'] || $foundPosition['start'] > $length['end']) {
514 continue;
515 }
516
517 $out[$part][] = [
518 'start' => $foundPosition['start'] - $length['start'],
519 'end' => $foundPosition['end'] - $length['start'],
520 ];
521 break;
522 }
523 }
524
525 return $out;
526 }
527
528 /**
529 * Concatenate link fields to search across fields. Adds a '\' separator for exact search terms.
530 * Also populate $length array with starting and ending positions of every bookmark field
531 * inside concatenated content.
532 *
533 * @param Bookmark $link
534 * @param array $lengths (by reference)
535 *
536 * @return string Lowercase concatenated fields content.
537 */
538 protected function buildFullTextSearchableLink(Bookmark $link, array &$lengths): string
539 {
540 $content = mb_convert_case($link->getTitle(), MB_CASE_LOWER, 'UTF-8') .'\\';
541 $content .= mb_convert_case($link->getDescription(), MB_CASE_LOWER, 'UTF-8') .'\\';
542 $content .= mb_convert_case($link->getUrl(), MB_CASE_LOWER, 'UTF-8') .'\\';
543 $content .= mb_convert_case($link->getTagsString(), MB_CASE_LOWER, 'UTF-8') .'\\';
544
545 $lengths['title'] = ['start' => 0, 'end' => mb_strlen($link->getTitle())];
546 $nextField = $lengths['title']['end'] + 1;
547 $lengths['description'] = ['start' => $nextField, 'end' => $nextField + mb_strlen($link->getDescription())];
548 $nextField = $lengths['description']['end'] + 1;
549 $lengths['url'] = ['start' => $nextField, 'end' => $nextField + mb_strlen($link->getUrl())];
550 $nextField = $lengths['url']['end'] + 1;
551 $lengths['tags'] = ['start' => $nextField, 'end' => $nextField + mb_strlen($link->getTagsString())];
552
553 return $content;
554 }
822bffce 555}