aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2014-08-22 22:16:16 +0200
committerChristian Weiske <cweiske@cweiske.de>2014-08-22 22:16:16 +0200
commit3e3dfcc65e13be5a49423bb90fc12e67f6b613dd (patch)
tree450ed5b99de648f2a9b86720ecb82fba62cfe50c /lib
parentcd37bde4ef0747a11c1221e937027fe17f2894fe (diff)
downloadgrauphel-3e3dfcc65e13be5a49423bb90fc12e67f6b613dd.tar.gz
grauphel-3e3dfcc65e13be5a49423bb90fc12e67f6b613dd.zip
show tags and note titles in the notebook
Diffstat (limited to 'lib')
-rw-r--r--lib/notestorage.php22
1 files changed, 19 insertions, 3 deletions
diff --git a/lib/notestorage.php b/lib/notestorage.php
index f3a904d..d9ceaab 100644
--- a/lib/notestorage.php
+++ b/lib/notestorage.php
@@ -54,6 +54,17 @@ class NoteStorage
public function getTags()
{
+ $result = \OC_DB::executeAudited(
+ 'SELECT `note_tags` FROM `*PREFIX*grauphel_notes`'
+ . ' WHERE note_user = ?',
+ array($this->username)
+ );
+
+ $tags = array();
+ while ($row = $result->fetchRow()) {
+ $tags = array_merge($tags, json_decode($row['note_tags']));
+ }
+ return array_unique($tags);
}
/**
@@ -273,24 +284,29 @@ class NoteStorage
* Load notes for the given user in short form.
* Optionally only those changed after $since revision
*
- * @param integer $since Revision number after which the notes changed
+ * @param integer $since Revision number after which the notes changed
+ * @param string $rawtag Filter by tags
*
* @return array Array of short note objects
*/
- public function loadNotesOverview($since = null)
+ public function loadNotesOverview($since = null, $rawtag = null)
{
$result = \OC_DB::executeAudited(
- 'SELECT `note_guid`, `note_title`, `note_last_sync_revision`'
+ 'SELECT `note_guid`, `note_title`, `note_last_sync_revision`, `note_tags`'
. ' FROM `*PREFIX*grauphel_notes`'
. ' WHERE note_user = ?',
array($this->username)
);
$notes = array();
+ $jsRawtag = json_encode($rawtag);
while ($row = $result->fetchRow()) {
if ($since !== null && $row['note_last_sync_revision'] <= $since) {
continue;
}
+ if ($rawtag !== null && strpos($row['note_tags'], $jsRawtag) === false) {
+ continue;
+ }
$notes[] = array(
'guid' => $row['note_guid'],
'ref' => array(