7ecf049af02a21fb3e351201c65e4ebcc91d5995
[grauphel.git] / lib / notestorage.php
1 <?php
2 /**
3  * Part of grauphel
4  *
5  * PHP version 5
6  *
7  * @category  Tools
8  * @package   Grauphel
9  * @author    Christian Weiske <cweiske@cweiske.de>
10  * @copyright 2014 Christian Weiske
11  * @license   http://www.gnu.org/licenses/agpl.html GNU AGPL v3
12  * @link      http://cweiske.de/grauphel.htm
13  */
14 namespace OCA\Grauphel\Lib;
15
16 /**
17  * Flat file storage for notes
18  *
19  * @category  Tools
20  * @package   Grauphel
21  * @author    Christian Weiske <cweiske@cweiske.de>
22  * @copyright 2014 Christian Weiske
23  * @license   http://www.gnu.org/licenses/agpl.html GNU AGPL v3
24  * @version   Release: @package_version@
25  * @link      http://cweiske.de/grauphel.htm
26  */
27 class NoteStorage
28 {
29     protected $urlGen;
30     protected $username;
31
32     public function __construct($urlGen)
33     {
34         $this->urlGen   = $urlGen;
35     }
36
37     public function setUsername($username)
38     {
39         $this->username = $username;
40     }
41
42     /**
43      * Create a new sync data object for fresh users.
44      * Used by loadSyncData()
45      *
46      * @return SyncData New synchronization statistics
47      */
48     protected function getNewSyncData()
49     {
50         $syncdata = new SyncData();
51         $syncdata->initNew($this->username);
52         return $syncdata;
53     }
54
55     public function getTags()
56     {
57         $result = \OC_DB::executeAudited(
58             'SELECT `note_tags` FROM `*PREFIX*grauphel_notes`'
59             . ' WHERE note_user = ?',
60             array($this->username)
61         );
62
63         $tags = array();
64         while ($row = $result->fetchRow()) {
65             $tags = array_merge($tags, json_decode($row['note_tags']));
66         }
67         return array_unique($tags);
68     }
69
70     /**
71      * Updates the given $note object with data from $noteUpdate.
72      * Sets the last-sync-revision to $syncRevision
73      *
74      * @param object  $note         Original note object
75      * @param object  $noteUpdate   Update note object from a PUT to the API
76      * @param integer $syncRevision Current sync revision number
77      *
78      * @return void
79      */
80     public function update($note, $noteUpdate, $syncRevision)
81     {
82         static $updateFields = array(
83             'create-date',
84             'last-change-date',
85             'last-metadata-change-date',
86             'note-content',
87             'note-content-version',
88             'open-on-startup',
89             'pinned',
90             'tags',
91             'title',
92         );
93
94         $changed = array();
95         foreach ($updateFields as $field) {
96             $changed[$field] = false;
97             if (isset($noteUpdate->$field)) {
98                 if ($note->$field != $noteUpdate->$field) {
99                     $note->$field = $noteUpdate->$field;
100                     $changed[$field] = true;
101                 }
102             }
103         }
104
105         if (!isset($noteUpdate->{'last-change-date'})
106             && ($changed['title'] || $changed['note-content'])
107         ) {
108             //no idea how to get the microseconds in there
109             $note->{'last-change-date'} = date('c');
110         }
111
112         if (!isset($noteUpdate->{'last-metadata-change-date'})) {
113             //no idea how to get the microseconds in there
114             $note->{'last-metadata-change-date'} = date('c');
115         }
116
117         if (isset($noteUpdate->{'node-content'})
118             && $note->{'note-content-version'} == 0
119         ) {
120             $note->{'note-content-version'} = 0.3;
121         }
122
123         $note->{'last-sync-revision'} = $syncRevision;
124     }
125
126     /**
127      * Loads synchronization data for the given user.
128      * Creates fresh sync data if there are none for the user.
129      *
130      * @return SyncData Synchronization statistics (revision, sync guid)
131      */
132     public function loadSyncData()
133     {
134         $row = \OC_DB::executeAudited(
135             'SELECT * FROM `*PREFIX*grauphel_syncdata`'
136             . ' WHERE `syncdata_user` = ?',
137             array($this->username)
138         )->fetchRow();
139
140         if ($row === false) {
141             $syncdata = $this->getNewSyncData();
142             $this->saveSyncData($syncdata);
143         } else {
144             $syncdata = new SyncData();
145             $syncdata->latestSyncRevision = (int) $row['syncdata_latest_sync_revision'];
146             $syncdata->currentSyncGuid    = $row['syncdata_current_sync_guid'];
147         }
148
149         return $syncdata;
150     }
151
152     /**
153      * Save synchronization data for the given user.
154      *
155      * @param SyncData $syncdata Synchronization data object
156      *
157      * @return void
158      */
159     public function saveSyncData(SyncData $syncdata)
160     {
161         $row = \OC_DB::executeAudited(
162             'SELECT * FROM `*PREFIX*grauphel_syncdata`'
163             . ' WHERE `syncdata_user` = ?',
164             array($this->username)
165         )->fetchRow();
166
167         if ($row === false) {
168             //INSERT
169             $sql = 'INSERT INTO `*PREFIX*grauphel_syncdata`'
170                 . '(`syncdata_user`, `syncdata_latest_sync_revision`, `syncdata_current_sync_guid`)'
171                 . ' VALUES(?, ?, ?)';
172             $params = array(
173                 $this->username,
174                 $syncdata->latestSyncRevision,
175                 $syncdata->currentSyncGuid
176             );
177         } else {
178             //UPDATE
179             $data = array(
180                 'syncdata_latest_sync_revision' => $syncdata->latestSyncRevision,
181                 'syncdata_current_sync_guid'    => $syncdata->currentSyncGuid,
182             );
183             $sql = 'UPDATE `*PREFIX*grauphel_syncdata` SET'
184                 . ' `' . implode('` = ?, `', array_keys($data)) . '` = ?'
185                 . ' WHERE `syncdata_user` = ?';
186             $params = array_values($data);
187             $params[] = $this->username;
188         }
189         \OC_DB::executeAudited($sql, $params);
190     }
191
192     /**
193      * Delete synchronization data for the given user.
194      *
195      * @param SyncData $syncdata Synchronization data object
196      *
197      * @return void
198      */
199     public function deleteSyncData()
200     {
201         \OC_DB::executeAudited(
202             'DELETE FROM `*PREFIX*grauphel_syncdata`'
203             . ' WHERE `syncdata_user` = ?',
204             array($this->username)
205         );
206     }
207
208     /**
209      * Load a note from the storage.
210      *
211      * @param string  $guid      Note identifier
212      * @param boolean $createNew Create a new note if it does not exist
213      *
214      * @return object Note object, NULL if !$createNew and note does not exist
215      */
216     public function load($guid, $createNew = true)
217     {
218         $row = \OC_DB::executeAudited(
219             'SELECT * FROM `*PREFIX*grauphel_notes`'
220             . ' WHERE `note_user` = ? AND `note_guid` = ?',
221             array($this->username, $guid)
222         )->fetchRow();
223
224         if ($row === false) {
225             if (!$createNew) {
226                 return null;
227             }
228             return (object) array(
229                 'guid' => $guid,
230
231                 'create-date'               => null,
232                 'last-change-date'          => null,
233                 'last-metadata-change-date' => null,
234
235                 'title'                => null,
236                 'note-content'         => null,
237                 'note-content-version' => 0.3,
238
239                 'open-on-startup' => false,
240                 'pinned'          => false,
241                 'tags'            => array(),
242             );
243         }
244
245         return $this->noteFromRow($row);
246     }
247
248     /**
249      * Load a GUID of a note by the note title
250      *
251      * @param string  $title Note title
252      *
253      * @return string GUID, NULL if note could not be found
254      */
255     public function loadGuidByTitle($title)
256     {
257         $row = \OC_DB::executeAudited(
258             'SELECT note_guid FROM `*PREFIX*grauphel_notes`'
259             . ' WHERE `note_user` = ? AND `note_title` = ?',
260             array($this->username, $title)
261         )->fetchRow();
262
263         if ($row === false) {
264             return null;
265         }
266
267         return $row['note_guid'];
268     }
269
270     /**
271      * Save a note into storage.
272      *
273      * @param object $note Note to save
274      *
275      * @return void
276      */
277     public function save($note)
278     {
279         $row = \OC_DB::executeAudited(
280             'SELECT * FROM `*PREFIX*grauphel_notes`'
281             . ' WHERE `note_user` = ? AND `note_guid` = ?',
282             array($this->username, $note->guid)
283         )->fetchRow();
284
285         $data = $this->rowFromNote($note);
286         if ($row === false) {
287             //INSERT
288             $data['note_user'] = $this->username;
289             $sql = 'INSERT INTO `*PREFIX*grauphel_notes`'
290                 . ' (`' . implode('`, `', array_keys($data)) . '`)'
291                 . ' VALUES(' . implode(', ', array_fill(0, count($data), '?')) . ')';
292             $params = array_values($data);
293         } else {
294             //UPDATE
295             $sql = 'UPDATE `*PREFIX*grauphel_notes` SET '
296                 . '`' . implode('` = ?, `', array_keys($data)) . '` = ?'
297                 . ' WHERE `note_user` = ? AND `note_guid` = ?';
298             $params = array_values($data);
299             $params[] = $this->username;
300             $params[] = $note->guid;
301         }
302         \OC_DB::executeAudited($sql, $params);
303     }
304
305     /**
306      * Delete a note from storage.
307      *
308      * @param object $guid ID of the note
309      *
310      * @return void
311      */
312     public function delete($guid)
313     {
314         \OC_DB::executeAudited(
315             'DELETE FROM `*PREFIX*grauphel_notes`'
316             . ' WHERE `note_user` = ? AND `note_guid` = ?',
317             array($this->username, $guid)
318         );
319     }
320
321     /**
322      * Delete all notes from storage.
323      *
324      * @return void
325      */
326     public function deleteAll()
327     {
328         \OC_DB::executeAudited(
329             'DELETE FROM `*PREFIX*grauphel_notes`'
330             . ' WHERE `note_user` = ?',
331             array($this->username)
332         );
333     }
334
335     /**
336      * Load notes for the given user in short form.
337      * Optionally only those changed after $since revision
338      *
339      * @param integer $since  Revision number after which the notes changed
340      * @param string  $rawtag Filter by tag. Special tags:
341      *                        - grauphel:special:all
342      *                        - grauphel:special:untagged
343      *
344      * @return array Array of short note objects
345      */
346     public function loadNotesOverview($since = null, $rawtag = null)
347     {
348         $result = \OC_DB::executeAudited(
349             'SELECT `note_guid`, `note_title`, `note_last_sync_revision`, `note_tags`'
350             . ' FROM `*PREFIX*grauphel_notes`'
351             . ' WHERE note_user = ?',
352             array($this->username)
353         );
354
355         $notes = array();
356         if ($rawtag == 'grauphel:special:all') {
357             $rawtag = null;
358         } else if ($rawtag == 'grauphel:special:untagged') {
359             $jsRawtag = json_encode(array());
360         } else {
361             $jsRawtag = json_encode($rawtag);
362         }
363         while ($row = $result->fetchRow()) {
364             if ($since !== null && $row['note_last_sync_revision'] <= $since) {
365                 continue;
366             }
367             if ($rawtag !== null && strpos($row['note_tags'], $jsRawtag) === false) {
368                 continue;
369             }
370             $notes[] = array(
371                 'guid' => $row['note_guid'],
372                 'ref'  => array(
373                     'api-ref' => $this->urlGen->getAbsoluteURL(
374                         $this->urlGen->linkToRoute(
375                             'grauphel.api.note',
376                             array(
377                                 'username' => $this->username,
378                                 'guid' => $row['note_guid']
379                             )
380                         )
381                     ),
382                     'href' => null,//FIXME
383                 ),
384                 'title' => $row['note_title'],
385             );
386         }
387
388         return $notes;
389     }
390
391     /**
392      * Load notes for the given user in full form.
393      * Optionally only those changed after $since revision
394      *
395      * @param integer $since Revision number after which the notes changed
396      *
397      * @return array Array of full note objects
398      */
399     public function loadNotesFull($since = null)
400     {
401         $result = \OC_DB::executeAudited(
402             'SELECT * FROM `*PREFIX*grauphel_notes`'
403             . ' WHERE note_user = ?',
404             array($this->username)
405         );
406
407         $notes = array();
408         while ($row = $result->fetchRow()) {
409             if ($since !== null && $row['note_last_sync_revision'] <= $since) {
410                 continue;
411             }
412             $notes[] = $this->noteFromRow($row);
413         }
414
415         return $notes;
416     }
417
418     protected function fixDate($date)
419     {
420         if (strlen($date) == 32) {
421             //Bug in grauphel 0.1.1; date fields in DB had only 32 instead of 33
422             // characters. The last digit of the time zone was missing
423             $date .= '0';
424         }
425         return $date;
426     }
427
428     protected function noteFromRow($row)
429     {
430         return (object) array(
431             'guid'  => $row['note_guid'],
432
433             'create-date'               => $this->fixDate($row['note_create_date']),
434             'last-change-date'          => $this->fixDate($row['note_last_change_date']),
435             'last-metadata-change-date' => $this->fixDate($row['note_last_metadata_change_date']),
436
437             'title'                => $row['note_title'],
438             'note-content'         => $row['note_content'],
439             'note-content-version' => $row['note_content_version'],
440
441             'open-on-startup' => (bool) $row['note_open_on_startup'],
442             'pinned'          => (bool) $row['note_pinned'],
443             'tags'            => json_decode($row['note_tags']),
444
445             'last-sync-revision' => (int) $row['note_last_sync_revision'],
446         );
447     }
448
449     protected function rowFromNote($note)
450     {
451         return array(
452             'note_guid'  => $note->guid,
453             'note_title' => (string) $note->title,
454
455             'note_content'         => (string) $note->{'note-content'},
456             'note_content_version' => (string) $note->{'note-content-version'},
457
458             'note_create_date'               => $note->{'create-date'},
459             'note_last_change_date'          => $note->{'last-change-date'},
460             'note_last_metadata_change_date' => $note->{'last-metadata-change-date'},
461
462             'note_open_on_startup' => (int) $note->{'open-on-startup'},
463             'note_pinned'          => (int) $note->pinned,
464             'note_tags'            => json_encode($note->tags),
465
466             'note_last_sync_revision' => $note->{'last-sync-revision'},
467         );
468     }
469 }
470 ?>