]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - application/LinkDB.php
Fixes #426 - Do not filter with blank tags.
[github/shaarli/Shaarli.git] / application / LinkDB.php
1 <?php
2 /**
3 * Data storage for links.
4 *
5 * This object behaves like an associative array.
6 *
7 * Example:
8 * $myLinks = new LinkDB();
9 * echo $myLinks['20110826_161819']['title'];
10 * foreach ($myLinks as $link)
11 * echo $link['title'].' at url '.$link['url'].'; description:'.$link['description'];
12 *
13 * Available keys:
14 * - description: description of the entry
15 * - linkdate: date of the creation of this entry, in the form YYYYMMDD_HHMMSS
16 * (e.g.'20110914_192317')
17 * - private: Is this link private? 0=no, other value=yes
18 * - tags: tags attached to this entry (separated by spaces)
19 * - title Title of the link
20 * - url URL of the link. Used for displayable links (no redirector, relative, etc.).
21 * Can be absolute or relative.
22 * Relative URLs are permalinks (e.g.'?m-ukcw')
23 * - real_url Absolute processed URL.
24 *
25 * Implements 3 interfaces:
26 * - ArrayAccess: behaves like an associative array;
27 * - Countable: there is a count() method;
28 * - Iterator: usable in foreach () loops.
29 */
30 class LinkDB implements Iterator, Countable, ArrayAccess
31 {
32 // Links are stored as a PHP serialized string
33 private $_datastore;
34
35 // Datastore PHP prefix
36 protected static $phpPrefix = '<?php /* ';
37
38 // Datastore PHP suffix
39 protected static $phpSuffix = ' */ ?>';
40
41 // List of links (associative array)
42 // - key: link date (e.g. "20110823_124546"),
43 // - value: associative array (keys: title, description...)
44 private $_links;
45
46 // List of all recorded URLs (key=url, value=linkdate)
47 // for fast reserve search (url-->linkdate)
48 private $_urls;
49
50 // List of linkdate keys (for the Iterator interface implementation)
51 private $_keys;
52
53 // Position in the $this->_keys array (for the Iterator interface)
54 private $_position;
55
56 // Is the user logged in? (used to filter private links)
57 private $_loggedIn;
58
59 // Hide public links
60 private $_hidePublicLinks;
61
62 // link redirector set in user settings.
63 private $_redirector;
64
65 /**
66 * @var LinkFilter instance.
67 */
68 private $linkFilter;
69
70 /**
71 * Creates a new LinkDB
72 *
73 * Checks if the datastore exists; else, attempts to create a dummy one.
74 *
75 * @param string $datastore datastore file path.
76 * @param boolean $isLoggedIn is the user logged in?
77 * @param boolean $hidePublicLinks if true all links are private.
78 * @param string $redirector link redirector set in user settings.
79 */
80 function __construct($datastore, $isLoggedIn, $hidePublicLinks, $redirector = '')
81 {
82 $this->_datastore = $datastore;
83 $this->_loggedIn = $isLoggedIn;
84 $this->_hidePublicLinks = $hidePublicLinks;
85 $this->_redirector = $redirector;
86 $this->_checkDB();
87 $this->_readDB();
88 $this->linkFilter = new LinkFilter($this->_links);
89 }
90
91 /**
92 * Countable - Counts elements of an object
93 */
94 public function count()
95 {
96 return count($this->_links);
97 }
98
99 /**
100 * ArrayAccess - Assigns a value to the specified offset
101 */
102 public function offsetSet($offset, $value)
103 {
104 // TODO: use exceptions instead of "die"
105 if (!$this->_loggedIn) {
106 die('You are not authorized to add a link.');
107 }
108 if (empty($value['linkdate']) || empty($value['url'])) {
109 die('Internal Error: A link should always have a linkdate and URL.');
110 }
111 if (empty($offset)) {
112 die('You must specify a key.');
113 }
114 $this->_links[$offset] = $value;
115 $this->_urls[$value['url']]=$offset;
116 }
117
118 /**
119 * ArrayAccess - Whether or not an offset exists
120 */
121 public function offsetExists($offset)
122 {
123 return array_key_exists($offset, $this->_links);
124 }
125
126 /**
127 * ArrayAccess - Unsets an offset
128 */
129 public function offsetUnset($offset)
130 {
131 if (!$this->_loggedIn) {
132 // TODO: raise an exception
133 die('You are not authorized to delete a link.');
134 }
135 $url = $this->_links[$offset]['url'];
136 unset($this->_urls[$url]);
137 unset($this->_links[$offset]);
138 }
139
140 /**
141 * ArrayAccess - Returns the value at specified offset
142 */
143 public function offsetGet($offset)
144 {
145 return isset($this->_links[$offset]) ? $this->_links[$offset] : null;
146 }
147
148 /**
149 * Iterator - Returns the current element
150 */
151 function current()
152 {
153 return $this->_links[$this->_keys[$this->_position]];
154 }
155
156 /**
157 * Iterator - Returns the key of the current element
158 */
159 function key()
160 {
161 return $this->_keys[$this->_position];
162 }
163
164 /**
165 * Iterator - Moves forward to next element
166 */
167 function next()
168 {
169 ++$this->_position;
170 }
171
172 /**
173 * Iterator - Rewinds the Iterator to the first element
174 *
175 * Entries are sorted by date (latest first)
176 */
177 function rewind()
178 {
179 $this->_keys = array_keys($this->_links);
180 rsort($this->_keys);
181 $this->_position = 0;
182 }
183
184 /**
185 * Iterator - Checks if current position is valid
186 */
187 function valid()
188 {
189 return isset($this->_keys[$this->_position]);
190 }
191
192 /**
193 * Checks if the DB directory and file exist
194 *
195 * If no DB file is found, creates a dummy DB.
196 */
197 private function _checkDB()
198 {
199 if (file_exists($this->_datastore)) {
200 return;
201 }
202
203 // Create a dummy database for example
204 $this->_links = array();
205 $link = array(
206 'title'=>' Shaarli: the personal, minimalist, super-fast, no-database delicious clone',
207 'url'=>'https://github.com/shaarli/Shaarli/wiki',
208 'description'=>'Welcome to Shaarli! This is your first public bookmark. To edit or delete me, you must first login.
209
210 To learn how to use Shaarli, consult the link "Help/documentation" at the bottom of this page.
211
212 You use the community supported version of the original Shaarli project, by Sebastien Sauvage.',
213 'private'=>0,
214 'linkdate'=> date('Ymd_His'),
215 'tags'=>'opensource software'
216 );
217 $this->_links[$link['linkdate']] = $link;
218
219 $link = array(
220 'title'=>'My secret stuff... - Pastebin.com',
221 'url'=>'http://sebsauvage.net/paste/?8434b27936c09649#bR7XsXhoTiLcqCpQbmOpBi3rq2zzQUC5hBI7ZT1O3x8=',
222 'description'=>'Shhhh! I\'m a private link only YOU can see. You can delete me too.',
223 'private'=>1,
224 'linkdate'=> date('Ymd_His', strtotime('-1 minute')),
225 'tags'=>'secretstuff'
226 );
227 $this->_links[$link['linkdate']] = $link;
228
229 // Write database to disk
230 $this->writeDB();
231 }
232
233 /**
234 * Reads database from disk to memory
235 */
236 private function _readDB()
237 {
238
239 // Public links are hidden and user not logged in => nothing to show
240 if ($this->_hidePublicLinks && !$this->_loggedIn) {
241 $this->_links = array();
242 return;
243 }
244
245 // Read data
246 // Note that gzinflate is faster than gzuncompress.
247 // See: http://www.php.net/manual/en/function.gzdeflate.php#96439
248 $this->_links = array();
249
250 if (file_exists($this->_datastore)) {
251 $this->_links = unserialize(gzinflate(base64_decode(
252 substr(file_get_contents($this->_datastore),
253 strlen(self::$phpPrefix), -strlen(self::$phpSuffix)))));
254 }
255
256 // If user is not logged in, filter private links.
257 if (!$this->_loggedIn) {
258 $toremove = array();
259 foreach ($this->_links as $link) {
260 if ($link['private'] != 0) {
261 $toremove[] = $link['linkdate'];
262 }
263 }
264 foreach ($toremove as $linkdate) {
265 unset($this->_links[$linkdate]);
266 }
267 }
268
269 // Keep the list of the mapping URLs-->linkdate up-to-date.
270 $this->_urls = array();
271 foreach ($this->_links as $link) {
272 $this->_urls[$link['url']] = $link['linkdate'];
273 }
274
275 // Escape links data
276 foreach($this->_links as &$link) {
277 sanitizeLink($link);
278 // Do not use the redirector for internal links (Shaarli note URL starting with a '?').
279 if (!empty($this->_redirector) && !startsWith($link['url'], '?')) {
280 $link['real_url'] = $this->_redirector . urlencode($link['url']);
281 }
282 else {
283 $link['real_url'] = $link['url'];
284 }
285 }
286 }
287
288 /**
289 * Saves the database from memory to disk
290 *
291 * @throws IOException the datastore is not writable
292 */
293 private function writeDB()
294 {
295 if (is_file($this->_datastore) && !is_writeable($this->_datastore)) {
296 // The datastore exists but is not writeable
297 throw new IOException($this->_datastore);
298 } else if (!is_file($this->_datastore) && !is_writeable(dirname($this->_datastore))) {
299 // The datastore does not exist and its parent directory is not writeable
300 throw new IOException(dirname($this->_datastore));
301 }
302
303 file_put_contents(
304 $this->_datastore,
305 self::$phpPrefix.base64_encode(gzdeflate(serialize($this->_links))).self::$phpSuffix
306 );
307
308 }
309
310 /**
311 * Saves the database from memory to disk
312 *
313 * @param string $pageCacheDir page cache directory
314 */
315 public function savedb($pageCacheDir)
316 {
317 if (!$this->_loggedIn) {
318 // TODO: raise an Exception instead
319 die('You are not authorized to change the database.');
320 }
321
322 $this->writeDB();
323
324 invalidateCaches($pageCacheDir);
325 }
326
327 /**
328 * Returns the link for a given URL, or False if it does not exist.
329 *
330 * @param string $url URL to search for
331 *
332 * @return mixed the existing link if it exists, else 'false'
333 */
334 public function getLinkFromUrl($url)
335 {
336 if (isset($this->_urls[$url])) {
337 return $this->_links[$this->_urls[$url]];
338 }
339 return false;
340 }
341
342 /**
343 * Filter links.
344 *
345 * @param string $type Type of filter.
346 * @param mixed $request Search request, string or array.
347 * @param bool $casesensitive Optional: Perform case sensitive filter
348 * @param bool $privateonly Optional: Returns private links only if true.
349 *
350 * @return array filtered links
351 */
352 public function filter($type, $request, $casesensitive = false, $privateonly = false) {
353 $requestFilter = is_array($request) ? implode(' ', $request) : $request;
354 return $this->linkFilter->filter($type, trim($requestFilter), $casesensitive, $privateonly);
355 }
356
357 /**
358 * Returns the list of all tags
359 * Output: associative array key=tags, value=0
360 */
361 public function allTags()
362 {
363 $tags = array();
364 foreach ($this->_links as $link) {
365 foreach (explode(' ', $link['tags']) as $tag) {
366 if (!empty($tag)) {
367 $tags[$tag] = (empty($tags[$tag]) ? 1 : $tags[$tag] + 1);
368 }
369 }
370 }
371 // Sort tags by usage (most used tag first)
372 arsort($tags);
373 return $tags;
374 }
375
376 /**
377 * Returns the list of days containing articles (oldest first)
378 * Output: An array containing days (in format YYYYMMDD).
379 */
380 public function days()
381 {
382 $linkDays = array();
383 foreach (array_keys($this->_links) as $day) {
384 $linkDays[substr($day, 0, 8)] = 0;
385 }
386 $linkDays = array_keys($linkDays);
387 sort($linkDays);
388 return $linkDays;
389 }
390 }