-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.osl
More file actions
277 lines (218 loc) · 6.25 KB
/
notes.osl
File metadata and controls
277 lines (218 loc) · 6.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
def isValidTitle(string title) boolean (
if title.strip() == "" (
return false
)
for i title.len (
string char = title[i].toStr()
number ord = char.ord()
if ord < 32 or ord > 126 (
return false
)
)
return true
)
def writeNote(string token, string title, string content) boolean (
if !isValidTitle(title) (
return false
)
auto client = getClient(token)
string path = notesDir ++ "/" ++ title ++ ".txt"
any err = null
if client.Exists(path) (
err = client.WriteFile(path, content)
) else (
err = client.CreateFile(path, content)
)
client.Commit()
return err == null
)
def listNotes(string token) array (
auto client = getClient(token)
array dir = client.ListDir(notesDir)
array notes = []
for i dir.len (
if dir[i].toStr().endsWith(".txt") (
notes.append(dir[i].toStr().trim(1, -5))
)
)
return notes
)
def listNotesWithMetadata(string token) array (
auto client = getClient(token)
array dir = client.ListDir(notesDir)
array notes = []
for i dir.len (
if dir[i].toStr().endsWith(".txt") (
string title = dir[i].toStr().trim(1, -5)
string path = notesDir ++ "/" ++ dir[i].toStr()
auto file = client.ReadFile(path).toArray()
if file[2] == null (
number created = file[1][IdxCreated].toNum()
number edited = file[1][IdxEdited].toNum()
notes.append({
title: title,
created: created,
edited: edited
})
)
)
)
return notes
)
def noteExists(string token, string title) boolean (
if !isValidTitle(title) (
return false
)
auto client = getClient(token)
string path = notesDir ++ "/" ++ title ++ ".txt"
return client.Exists(path)
)
def readNote(string token, string title) string (
if !isValidTitle(title) (
return ""
)
auto client = getClient(token)
string path = notesDir ++ "/" ++ title ++ ".txt"
auto file = client.ReadFileContent(path).toArray()
if file[2] != null (
return ""
)
return file[1].assert(string)
)
def deleteNote(string token, string title) boolean (
if !isValidTitle(title) (
return false
)
auto client = getClient(token)
string path = notesDir ++ "/" ++ title ++ ".txt"
any err = client.Remove(path)
if err == null (
client.Commit()
return true
)
return false
)
def renameNote(string token, string oldTitle, string newTitle) boolean (
if !isValidTitle(oldTitle) or !isValidTitle(newTitle) (
return false
)
auto client = getClient(token)
string path = notesDir ++ "/" ++ oldTitle ++ ".txt"
string newPath = notesDir ++ "/" ++ newTitle ++ ".txt"
any err = client.Rename(path, newPath)
string tagsPath = notesDir ++ "/tags.json"
if client.Exists(tagsPath) (
object allTags = readAllTags(token)
if allTags.contains(oldTitle) (
allTags[newTitle] = allTags[oldTitle]
allTags.delete(oldTitle)
writeAllTags(token, allTags)
)
)
if err == null (
client.Commit()
return true
)
return false
)
def writeAllTags(string token, object allTags) boolean (
auto client = getClient(token)
string path = notesDir ++ "/tags.json"
string json = allTags.JsonStringify()
any err = null
if client.Exists(path) (
err = client.WriteFile(path, json)
) else (
err = client.CreateFile(path, json)
)
client.Commit()
return err == null
)
def readAllTags(string token) object (
auto client = getClient(token)
string path = notesDir ++ "/tags.json"
if !client.Exists(path) (
return {}
)
auto file = client.ReadFileContent(path).toArray()
if file[2] != null (
return {}
)
string json = file[1].assert(string)
any parsed = json.JsonParse()
if typeof(parsed) == "array" (
client.Remove(path)
client.Commit()
return {}
)
if typeof(parsed) != "object" (
return {}
)
return parsed.assert(object)
)
def writeTags(string token, string title, array tags) boolean (
object allTags = readAllTags(token)
allTags[title] = tags
return writeAllTags(token, allTags)
)
def readTags(string token, string title) array (
object allTags = readAllTags(token)
if allTags.contains(title) (
return allTags[title].assert(array)
)
return []
)
def deleteTags(string token, string title) boolean (
object allTags = readAllTags(token)
if allTags.contains(title) (
allTags.delete(title)
)
return writeAllTags(token, allTags)
)
def getAllTags(string token) array (
object allTags = readAllTags(token)
array uniqueTags = []
object tagSet = {}
array titles = allTags.getKeys()
for i titles.len (
string title = titles[i].toStr()
array tags = allTags[title].assert(array)
for j tags.len (
string tag = tags[j].toStr()
if !tagSet.contains(tag) (
tagSet[tag] = true
uniqueTags.append(tag)
)
)
)
return uniqueTags
)
def filterNotesByTags(string token, array filterTags) array (
object allTags = readAllTags(token)
array filteredNotes = []
array notes = listNotes(token)
for i notes.len (
string title = notes[i].toStr()
array noteTags = []
if allTags.contains(title) (
noteTags = allTags[title]
)
boolean matches = false
for j filterTags.len (
string filterTag = filterTags[j].toStr()
for k noteTags.len (
if noteTags[k].toStr() == filterTag (
matches = true
break
)
)
if matches (
break
)
)
if matches (
filteredNotes.append(title)
)
)
return filteredNotes
)