]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/LinkFilter.php
Improved search: combine AND, exact terms and exclude search.
[github/shaarli/Shaarli.git] / application / LinkFilter.php
CommitLineData
822bffce
A
1<?php
2
3/**
4 * Class LinkFilter.
5 *
6 * Perform search and filter operation on link data list.
7 */
8class LinkFilter
9{
10 /**
11 * @var string permalinks.
12 */
13 public static $FILTER_HASH = 'permalink';
14
15 /**
16 * @var string text search.
17 */
18 public static $FILTER_TEXT = 'fulltext';
19
20 /**
21 * @var string tag filter.
22 */
23 public static $FILTER_TAG = 'tags';
24
25 /**
26 * @var string filter by day.
27 */
28 public static $FILTER_DAY = 'FILTER_DAY';
29
30 /**
31 * @var array all available links.
32 */
33 private $links;
34
35 /**
36 * @param array $links initialization.
37 */
38 public function __construct($links)
39 {
40 $this->links = $links;
41 }
42
43 /**
44 * Filter links according to parameters.
45 *
46 * @param string $type Type of filter (eg. tags, permalink, etc.).
47 * @param string $request Filter content.
48 * @param bool $casesensitive Optional: Perform case sensitive filter if true.
49 * @param bool $privateonly Optional: Only returns private links if true.
50 *
51 * @return array filtered link list.
52 */
53 public function filter($type, $request, $casesensitive = false, $privateonly = false)
54 {
55 switch($type) {
56 case self::$FILTER_HASH:
57 return $this->filterSmallHash($request);
58 break;
59 case self::$FILTER_TEXT:
60 return $this->filterFulltext($request, $privateonly);
61 break;
62 case self::$FILTER_TAG:
63 return $this->filterTags($request, $casesensitive, $privateonly);
64 break;
65 case self::$FILTER_DAY:
66 return $this->filterDay($request);
67 break;
68 default:
69 return $this->noFilter($privateonly);
70 }
71 }
72
73 /**
74 * Unknown filter, but handle private only.
75 *
76 * @param bool $privateonly returns private link only if true.
77 *
78 * @return array filtered links.
79 */
80 private function noFilter($privateonly = false)
81 {
82 if (! $privateonly) {
83 krsort($this->links);
84 return $this->links;
85 }
86
87 $out = array();
88 foreach ($this->links as $value) {
89 if ($value['private']) {
90 $out[$value['linkdate']] = $value;
91 }
92 }
93
94 krsort($out);
95 return $out;
96 }
97
98 /**
99 * Returns the shaare corresponding to a smallHash.
100 *
101 * @param string $smallHash permalink hash.
102 *
103 * @return array $filtered array containing permalink data.
104 */
105 private function filterSmallHash($smallHash)
106 {
107 $filtered = array();
108 foreach ($this->links as $l) {
109 if ($smallHash == smallHash($l['linkdate'])) {
110 // Yes, this is ugly and slow
111 $filtered[$l['linkdate']] = $l;
112 return $filtered;
113 }
114 }
115 return $filtered;
116 }
117
118 /**
119 * Returns the list of links corresponding to a full-text search
120 *
121 * Searches:
122 * - in the URLs, title and description;
bedd176a
A
123 * - are case-insensitive;
124 * - terms surrounded by quotes " are exact terms search.
125 * - terms starting with a dash - are excluded (except exact terms).
822bffce
A
126 *
127 * Example:
128 * print_r($mydb->filterFulltext('hollandais'));
129 *
130 * mb_convert_case($val, MB_CASE_LOWER, 'UTF-8')
131 * - allows to perform searches on Unicode text
132 * - see https://github.com/shaarli/Shaarli/issues/75 for examples
133 *
134 * @param string $searchterms search query.
135 * @param bool $privateonly return only private links if true.
136 *
137 * @return array search results.
138 */
139 private function filterFulltext($searchterms, $privateonly = false)
140 {
ebd8075a 141 $search = mb_convert_case(html_entity_decode($searchterms), MB_CASE_LOWER, 'UTF-8');
bedd176a
A
142 $exactRegex = '/"([^"]+)"/';
143 // Retrieve exact search terms.
144 preg_match_all($exactRegex, $search, $exactSearch);
145 $exactSearch = array_values(array_filter($exactSearch[1]));
146
147 // Remove exact search terms to get AND terms search.
148 $explodedSearchAnd = explode(' ', trim(preg_replace($exactRegex, '', $search)));
149 $explodedSearchAnd = array_values(array_filter($explodedSearchAnd));
150
151 // Filter excluding terms and update andSearch.
152 $excludeSearch = array();
153 $andSearch = array();
154 foreach ($explodedSearchAnd as $needle) {
155 if ($needle[0] == '-' && strlen($needle) > 1) {
156 $excludeSearch[] = substr($needle, 1);
157 } else {
158 $andSearch[] = $needle;
159 }
160 }
161
822bffce 162 $keys = array('title', 'description', 'url', 'tags');
ebd8075a 163
822bffce
A
164 // Iterate over every stored link.
165 foreach ($this->links as $link) {
822bffce
A
166
167 // ignore non private links when 'privatonly' is on.
168 if (! $link['private'] && $privateonly === true) {
169 continue;
170 }
171
172 // Iterate over searchable link fields.
173 foreach ($keys as $key) {
ebd8075a
FV
174 // Be optimistic
175 $found = true;
176
ebd8075a
FV
177 $haystack = mb_convert_case($link[$key], MB_CASE_LOWER, 'UTF-8');
178
bedd176a
A
179 // First, we look for exact term search
180 for ($i = 0; $i < count($exactSearch) && $found; $i++) {
181 $found = strpos($haystack, $exactSearch[$i]) !== false;
182 }
183
184 // Iterate over keywords, if keyword is not found,
185 // no need to check for the others. We want all or nothing.
186 for ($i = 0; $i < count($andSearch) && $found; $i++) {
187 $found = strpos($haystack, $andSearch[$i]) !== false;
822bffce 188 }
bedd176a
A
189
190 // Exclude terms.
191 for ($i = 0; $i < count($excludeSearch) && $found; $i++) {
192 $found = strpos($haystack, $excludeSearch[$i]) === false;
ebd8075a
FV
193 }
194
195 // One of the fields of the link matches, no need to check the other.
822bffce
A
196 if ($found) {
197 break;
198 }
199 }
ebd8075a 200
822bffce
A
201 if ($found) {
202 $filtered[$link['linkdate']] = $link;
203 }
204 }
205
206 krsort($filtered);
207 return $filtered;
208 }
209
210 /**
211 * Returns the list of links associated with a given list of tags
212 *
213 * You can specify one or more tags, separated by space or a comma, e.g.
214 * print_r($mydb->filterTags('linux programming'));
215 *
216 * @param string $tags list of tags separated by commas or blank spaces.
217 * @param bool $casesensitive ignore case if false.
218 * @param bool $privateonly returns private links only.
219 *
220 * @return array filtered links.
221 */
222 public function filterTags($tags, $casesensitive = false, $privateonly = false)
223 {
21979ff1 224 $searchtags = self::tagsStrToArray($tags, $casesensitive);
822bffce 225 $filtered = array();
21979ff1
A
226 if (empty($searchtags)) {
227 return $filtered;
228 }
822bffce 229
21979ff1 230 foreach ($this->links as $link) {
822bffce 231 // ignore non private links when 'privatonly' is on.
21979ff1 232 if (! $link['private'] && $privateonly === true) {
822bffce
A
233 continue;
234 }
235
21979ff1 236 $linktags = self::tagsStrToArray($link['tags'], $casesensitive);
822bffce 237
21979ff1
A
238 $found = true;
239 for ($i = 0 ; $i < count($searchtags) && $found; $i++) {
240 // Exclusive search, quit if tag found.
241 // Or, tag not found in the link, quit.
242 if (($searchtags[$i][0] == '-' && in_array(substr($searchtags[$i], 1), $linktags))
243 || ($searchtags[$i][0] != '-') && ! in_array($searchtags[$i], $linktags)
244 ) {
245 $found = false;
246 }
247 }
248
249 if ($found) {
250 $filtered[$link['linkdate']] = $link;
822bffce
A
251 }
252 }
253 krsort($filtered);
254 return $filtered;
255 }
256
257 /**
258 * Returns the list of articles for a given day, chronologically sorted
259 *
260 * Day must be in the form 'YYYYMMDD' (e.g. '20120125'), e.g.
261 * print_r($mydb->filterDay('20120125'));
262 *
263 * @param string $day day to filter.
264 *
265 * @return array all link matching given day.
266 *
267 * @throws Exception if date format is invalid.
268 */
269 public function filterDay($day)
270 {
271 if (! checkDateFormat('Ymd', $day)) {
272 throw new Exception('Invalid date format');
273 }
274
275 $filtered = array();
276 foreach ($this->links as $l) {
277 if (startsWith($l['linkdate'], $day)) {
278 $filtered[$l['linkdate']] = $l;
279 }
280 }
281 ksort($filtered);
282 return $filtered;
283 }
284
285 /**
286 * Convert a list of tags (str) to an array. Also
287 * - handle case sensitivity.
288 * - accepts spaces commas as separator.
822bffce
A
289 *
290 * @param string $tags string containing a list of tags.
291 * @param bool $casesensitive will convert everything to lowercase if false.
292 *
293 * @return array filtered tags string.
294 */
21979ff1 295 public static function tagsStrToArray($tags, $casesensitive)
822bffce
A
296 {
297 // We use UTF-8 conversion to handle various graphemes (i.e. cyrillic, or greek)
298 $tagsOut = $casesensitive ? $tags : mb_convert_case($tags, MB_CASE_LOWER, 'UTF-8');
299 $tagsOut = str_replace(',', ' ', $tagsOut);
300
21979ff1 301 return array_filter(explode(' ', trim($tagsOut)), 'strlen');
822bffce
A
302 }
303}