]>
git.immae.eu Git - github/shaarli/Shaarli.git/blob - application/LinkDB.php
3 * Data storage for links.
5 * This object behaves like an associative array.
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'];
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. Can be absolute or relative.
21 * Relative URLs are permalinks (e.g.'?m-ukcw')
23 * Implements 3 interfaces:
24 * - ArrayAccess: behaves like an associative array;
25 * - Countable: there is a count() method;
26 * - Iterator: usable in foreach () loops.
28 class LinkDB
implements Iterator
, Countable
, ArrayAccess
30 // Links are stored as a PHP serialized string
33 // Datastore PHP prefix
34 protected static $phpPrefix = '<?php /* ';
36 // Datastore PHP suffix
37 protected static $phpSuffix = ' */ ?>';
39 // List of links (associative array)
40 // - key: link date (e.g. "20110823_124546"),
41 // - value: associative array (keys: title, description...)
44 // List of all recorded URLs (key=url, value=linkdate)
45 // for fast reserve search (url-->linkdate)
48 // List of linkdate keys (for the Iterator interface implementation)
51 // Position in the $this->_keys array (for the Iterator interface)
54 // Is the user logged in? (used to filter private links)
58 private $_hidePublicLinks;
61 * Creates a new LinkDB
63 * Checks if the datastore exists; else, attempts to create a dummy one.
65 * @param $isLoggedIn is the user logged in?
67 function __construct($datastore, $isLoggedIn, $hidePublicLinks)
69 $this->_datastore
= $datastore;
70 $this->_loggedIn
= $isLoggedIn;
71 $this->_hidePublicLinks
= $hidePublicLinks;
77 * Countable - Counts elements of an object
79 public function count()
81 return count($this->_links
);
85 * ArrayAccess - Assigns a value to the specified offset
87 public function offsetSet($offset, $value)
89 // TODO: use exceptions instead of "die"
90 if (!$this->_loggedIn
) {
91 die('You are not authorized to add a link.');
93 if (empty($value['linkdate']) || empty($value['url'])) {
94 die('Internal Error: A link should always have a linkdate and URL.');
97 die('You must specify a key.');
99 $this->_links
[$offset] = $value;
100 $this->_urls
[$value['url']]=$offset;
104 * ArrayAccess - Whether or not an offset exists
106 public function offsetExists($offset)
108 return array_key_exists($offset, $this->_links
);
112 * ArrayAccess - Unsets an offset
114 public function offsetUnset($offset)
116 if (!$this->_loggedIn
) {
117 // TODO: raise an exception
118 die('You are not authorized to delete a link.');
120 $url = $this->_links
[$offset]['url'];
121 unset($this->_urls
[$url]);
122 unset($this->_links
[$offset]);
126 * ArrayAccess - Returns the value at specified offset
128 public function offsetGet($offset)
130 return isset($this->_links
[$offset]) ? $this->_links
[$offset] : null;
134 * Iterator - Returns the current element
138 return $this->_links
[$this->_keys
[$this->_position
]];
142 * Iterator - Returns the key of the current element
146 return $this->_keys
[$this->_position
];
150 * Iterator - Moves forward to next element
158 * Iterator - Rewinds the Iterator to the first element
160 * Entries are sorted by date (latest first)
164 $this->_keys
= array_keys($this->_links
);
166 $this->_position
= 0;
170 * Iterator - Checks if current position is valid
174 return isset($this->_keys
[$this->_position
]);
178 * Checks if the DB directory and file exist
180 * If no DB file is found, creates a dummy DB.
182 private function _checkDB()
184 if (file_exists($this->_datastore
)) {
188 // Create a dummy database for example
189 $this->_links
= array();
191 'title'=>' Shaarli: the personal, minimalist, super-fast, no-database delicious clone',
192 'url'=>'https://github.com/shaarli/Shaarli/wiki',
193 'description'=>'Welcome to Shaarli! This is your first public bookmark. To edit or delete me, you must first login.
195 To learn how to use Shaarli, consult the link "Help/documentation" at the bottom of this page.
197 You use the community supported version of the original Shaarli project, by Sebastien Sauvage.',
199 'linkdate'=> date('Ymd_His'),
200 'tags'=>'opensource software'
202 $this->_links
[$link['linkdate']] = $link;
205 'title'=>'My secret stuff... - Pastebin.com',
206 'url'=>'http://sebsauvage.net/paste/?8434b27936c09649#bR7XsXhoTiLcqCpQbmOpBi3rq2zzQUC5hBI7ZT1O3x8=',
207 'description'=>'Shhhh! I\'m a private link only YOU can see. You can delete me too.',
209 'linkdate'=> date('Ymd_His', strtotime('-1 minute')),
210 'tags'=>'secretstuff'
212 $this->_links
[$link['linkdate']] = $link;
214 // Write database to disk
215 // TODO: raise an exception if the file is not write-able
218 self
::$phpPrefix.base64_encode(gzdeflate(serialize($this->_links
))).self
::$phpSuffix
223 * Reads database from disk to memory
225 private function _readDB()
228 // Public links are hidden and user not logged in => nothing to show
229 if ($this->_hidePublicLinks
&& !$this->_loggedIn
) {
230 $this->_links
= array();
235 // Note that gzinflate is faster than gzuncompress.
236 // See: http://www.php.net/manual/en/function.gzdeflate.php#96439
237 $this->_links
= array();
239 if (file_exists($this->_datastore
)) {
240 $this->_links
= unserialize(gzinflate(base64_decode(
241 substr(file_get_contents($this->_datastore
),
242 strlen(self
::$phpPrefix), -strlen(self
::$phpSuffix)))));
245 // If user is not logged in, filter private links.
246 if (!$this->_loggedIn
) {
248 foreach ($this->_links
as $link) {
249 if ($link['private'] != 0) {
250 $toremove[] = $link['linkdate'];
253 foreach ($toremove as $linkdate) {
254 unset($this->_links
[$linkdate]);
258 // Keep the list of the mapping URLs-->linkdate up-to-date.
259 $this->_urls
= array();
260 foreach ($this->_links
as $link) {
261 $this->_urls
[$link['url']] = $link['linkdate'];
265 foreach($this->_links
as &$link) {
271 * Saves the database from memory to disk
273 public function savedb()
275 if (!$this->_loggedIn
) {
276 // TODO: raise an Exception instead
277 die('You are not authorized to change the database.');
281 self
::$phpPrefix.base64_encode(gzdeflate(serialize($this->_links
))).self
::$phpSuffix
287 * Returns the link for a given URL, or False if it does not exist.
289 public function getLinkFromUrl($url)
291 if (isset($this->_urls
[$url])) {
292 return $this->_links
[$this->_urls
[$url]];
298 * Returns the list of links corresponding to a full-text search
301 * - in the URLs, title and description;
302 * - are case-insensitive.
305 * print_r($mydb->filterFulltext('hollandais'));
307 * mb_convert_case($val, MB_CASE_LOWER, 'UTF-8')
308 * - allows to perform searches on Unicode text
309 * - see https://github.com/shaarli/Shaarli/issues/75 for examples
311 public function filterFulltext($searchterms)
313 // FIXME: explode(' ',$searchterms) and perform a AND search.
314 // FIXME: accept double-quotes to search for a string "as is"?
316 $search = mb_convert_case($searchterms, MB_CASE_LOWER
, 'UTF-8');
317 $keys = array('title', 'description', 'url', 'tags');
319 foreach ($this->_links
as $link) {
322 foreach ($keys as $key) {
323 if (strpos(mb_convert_case($link[$key], MB_CASE_LOWER
, 'UTF-8'),
324 $search) !== false) {
330 $filtered[$link['linkdate']] = $link;
338 * Returns the list of links associated with a given list of tags
340 * You can specify one or more tags, separated by space or a comma, e.g.
341 * print_r($mydb->filterTags('linux programming'));
343 public function filterTags($tags, $casesensitive=false)
345 // Same as above, we use UTF-8 conversion to handle various graphemes (i.e. cyrillic, or greek)
346 // FIXME: is $casesensitive ever true?
349 ($casesensitive ? $tags : mb_convert_case($tags, MB_CASE_LOWER
, 'UTF-8'))
352 $searchtags = explode(' ', $t);
355 foreach ($this->_links
as $l) {
358 ($casesensitive ? $l['tags']:mb_convert_case($l['tags'], MB_CASE_LOWER
, 'UTF-8'))
361 if (count(array_intersect($linktags, $searchtags)) == count($searchtags)) {
362 $filtered[$l['linkdate']] = $l;
371 * Returns the list of articles for a given day, chronologically sorted
373 * Day must be in the form 'YYYYMMDD' (e.g. '20120125'), e.g.
374 * print_r($mydb->filterDay('20120125'));
376 public function filterDay($day)
378 if (! checkDateFormat('Ymd', $day)) {
379 throw new Exception('Invalid date format');
383 foreach ($this->_links
as $l) {
384 if (startsWith($l['linkdate'], $day)) {
385 $filtered[$l['linkdate']] = $l;
393 * Returns the article corresponding to a smallHash
395 public function filterSmallHash($smallHash)
398 foreach ($this->_links
as $l) {
399 if ($smallHash == smallHash($l['linkdate'])) {
400 // Yes, this is ugly and slow
401 $filtered[$l['linkdate']] = $l;
409 * Returns the list of all tags
410 * Output: associative array key=tags, value=0
412 public function allTags()
415 foreach ($this->_links
as $link) {
416 foreach (explode(' ', $link['tags']) as $tag) {
418 $tags[$tag] = (empty($tags[$tag]) ? 1 : $tags[$tag] +
1);
422 // Sort tags by usage (most used tag first)
428 * Returns the list of days containing articles (oldest first)
429 * Output: An array containing days (in format YYYYMMDD).
431 public function days()
434 foreach (array_keys($this->_links
) as $day) {
435 $linkDays[substr($day, 0, 8)] = 0;
437 $linkDays = array_keys($linkDays);