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