-
Notifications
You must be signed in to change notification settings - Fork 9
/
storage.reb
514 lines (425 loc) · 14.4 KB
/
storage.reb
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
Rebol [
File: %storage.reb
Summary: {File "Scheme" for Persistent Browser Storage}
Project: "JavaScript REPLpad for Ren-C branch of Rebol 3"
Homepage: https://github.com/hostilefork/replpad-js/
Type: module
Name: ReplStorage ; !!! seems needed to get into system/modules list
Exports: [storage]
Rights: {
Copyright (c) 2021 Christopher Ross-Gill
See README.md and CREDITS.md for more information
}
License: {
Licensed under the Lesser GPL, Version 3.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.gnu.org/licenses/lgpl-3.0.html
}
Description: {
In the terminology of URL handling, a "scheme" is the part of the URL
that precedes the initial colon (e.g. the `http` in `http://whatever`).
Because Rebol has a separate data type for URLs, it allows hooks to be
installed for handling READ and WRITE of different schemes. This
gives a handler for `file://` style URLs that speaks to the browser
storage API.
}
Notes: {
"This currently is a very spongey filesystem. Probably better to
create entries for directories and manage them through MAKE-DIR, etc."
Per-web-app browser storage is limited, and since it stores strings
and not binaries it's further limited by the fact that we encode the
data as Base64.
https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API/Using_the_Web_Storage_API
Long term, it may be desirable to somehow fuse the file:// API with
the %xxx style of FILE!, so that you can `mount` local storage into
a virtual hierarchy that coexists with resources on web servers.
}
]
storage-enabled?: js-native [] {
return reb.Logic(
typeof Storage !== 'undefined'
)
}
storage-set: js-native [
store [text!]
path [text! file!]
value [text!]
] {
let store = (reb.Spell("store") == 'session')
? sessionStorage
: localStorage
store.setItem(
reb.Spell("path"),
reb.Spell("value")
)
}
storage-get: js-native [
store [text!]
path [text! file!]
] {
let store = reb.Spell("store") == 'session'
? sessionStorage
: localStorage
let value = store.getItem(reb.Spell("path"))
return (typeof value !== 'undefined' && value !== null)
? reb.Text(value)
: null
}
storage-unset: js-native [
store [text!]
path [text! file!]
] {
let store = reb.Spell("store") == 'session'
? sessionStorage
: localStorage
store.removeItem(reb.Spell("path"))
return null
}
storage-clear: js-native [
store [text!]
] {
let store = reb.Spell("store") == 'session'
? sessionStorage
: localStorage
console.log(store)
store.clear()
return null
}
; STORAGE-LIST and STORAGE-LIST-DIR are very similar, it may be desirable to
; combine the two with some type of generic filter refinement
storage-list: js-native [
store [text!]
] {
let store = reb.Spell("store") == 'session'
? sessionStorage
: localStorage
console.log(store)
let listing = []
listing.push('[')
let offset
for (
offset = 0;
offset < store.length;
offset++
) {
// TODO: need to escape carets
listing.push('"' + store.key(offset) + '"')
}
listing.push(']')
return reb.Value.apply(
null, listing
)
}
storage-list-dir: js-native [
store [text!]
path [text! file!]
] {
let store = reb.Spell("store") == 'session'
? sessionStorage
: localStorage
let test = new RegExp(
'\x5E' // starting caret -- lost when used literally
+ reb.Spell("path").replace( // convert path as text to regex blob
/[|\\\/{}()[\]\x5E)$+*?.]/g,
'\\$&'
)
+ '([\x5E\/]+\/?)$' // only match non-slash characters
)
let listing = []
listing.push('[')
let offset
for (
offset = 0;
offset < store.length;
offset++
) {
// match each key against our pattern
let parts = store.key(offset).match(test)
if (parts && listing.indexOf(parts[1]) == -1) {
// TODO: need to escape carets
listing.push('%"' + parts[1] + '"')
}
}
listing.push(']')
console.log(listing)
return reb.Value.apply(
null, listing
)
}
storage-exists?: js-native [
store [text!]
path [text! file!]
] {
let store = reb.Spell("store") == 'session'
? sessionStorage
: localStorage
return reb.Logic(
store.hasOwnProperty(
reb.Spell("path")
)
)
}
storage: [
local _
session _
]
if storage-enabled? [ ; Browser reported that it is storage-capable
sys.util.make-scheme [
title: "Browser Storage API"
name: 'storage
init: func [return: [~] port [port!]] [
if not all [
has port.spec 'ref
url? port.spec.ref
[@ port.spec.path]: find/match form port.spec.ref storage::
find ["local" "session"] port.spec.path
][
fail "Could not initiate storage port"
]
]
actor: make object! [
pick: select: lambda [port key] [
storage-get port.spec.path form key
]
poke: lambda [port key value] [
either null? :value [
storage-unset port.spec.path form key
][
storage-set port.spec.path form key form value
]
]
query: copy: lambda [port] [
storage-list port.spec.path
]
clear: func [port] [
storage-clear port.spec.path
return port
]
]
]
storage.local: make port! storage::local
storage.session: make port! storage::session
sys.util.make-scheme [
title: "File Access"
name: 'file
init: func [return: [~] port [port!]] [
case [
not all [
has port.spec 'ref
file? port.spec.ref
][
fail "File scheme is only accessible through the FILE! datatype"
]
equal? #"/" last port.spec.ref [
fail "File scheme only accesses files, not folders"
]
]
switch type of port.spec.ref: clean-path port.spec.ref [
file! [
extend port.spec 'target either find/match port.spec.ref %/tmp/ [
"session"
][
"local"
]
]
url! [
; possibly some kind of check here to ensure a scheme exists
; and convert to FILE! if using file:// notation
]
(fail "Cannot resolve file")
]
]
actor: [
read: lambda [port] [
switch type of port.spec.ref [
file! [
either storage-exists? port.spec.target form port.spec.ref [
any [
attempt [debase/base storage-get port.spec.target form port.spec.ref 64]
as binary! storage-get port.spec.target form port.spec.ref
]
][
fail "No such file or directory"
]
]
url! [
read port.spec.ref
]
]
]
write: lambda [port data <local> dir] [
switch type of port.spec.ref [
file! [
ensure [binary! text!] data
if text? data [
data: to binary! data ; could use AS ?
]
either exists? [_ @dir]: split-path port.spec.ref [
storage-set port.spec.target form port.spec.ref enbase/base data 64
port
][
fail "No such file or directory"
]
]
url! [
write port.spec.ref data
]
]
]
delete: lambda [port] [
switch type of port.spec.ref [
file! [
either storage-exists? port.spec.target form port.spec.ref [
storage-unset port.spec.target form port.spec.ref
][
fail "No such file or directory"
]
port.spec.ref
]
url! [
delete port.spec.ref
]
]
]
query: func [return: [<opt> object!] port [port!]] [
switch type of port.spec.ref [
file! [
let store: port.spec.target
let path: form port.spec.ref
if not storage-exists? store path [return null]
return make system.standard.file-info [
name: port.spec.ref
size: 0
date: lib.now ; we're in a module in a module
type: 'file
]
]
url! [
return query port.spec.ref
]
]
return null
]
]
]
sys.util.make-scheme [
title: "File Directory Access"
name: 'dir
init: func [return: [~] port [port!]] [
case [
not all [
has port.spec 'ref
file? port.spec.ref
; equal? #"/" first port.spec.ref
][
fail "File scheme is only accessible through the FILE! datatype"
]
not equal? #"/" last port.spec.ref [
fail "Directory scheme only accesses folders, not files"
]
]
switch type of port.spec.ref: clean-path port.spec.ref [
file! [
extend port.spec 'target either find/match port.spec.ref %/tmp/ [
"session"
][
"local"
]
]
url! [
; possibly some kind of check here to ensure a scheme exists
; and convert to FILE! if using file:// notation
]
(fail "Cannot resolve file")
]
]
actor: [
read: lambda [port] [
switch type of port.spec.ref [
file! [
either any [
find [%/ %/tmp/] port.spec.ref
storage-exists? port.spec.target form port.spec.ref
][
collect [
if port.spec.ref = %/ [
keep %tmp/
]
keep spread (
storage-list-dir port.spec.target form port.spec.ref
)
]
][
fail "No such file or directory"
]
]
url! [
read port.spec.ref
]
]
]
create: lambda [port] [
switch type of port.spec.ref [
file! [
if any [
find [%/ %/tmp/] port.spec.ref
storage-exists? port.spec.target form port.spec.ref
][
fail "Directory already exists"
]
storage-set port.spec.target form port.spec.ref ""
port.spec.ref
]
url! [
create port.spec.ref
]
]
]
delete: lambda [port] [
switch type of port.spec.ref [
file! [
case [
find [%/ %/tmp/] port.spec.ref [
port
]
not storage-exists? port.spec.target form port.spec.ref [
fail "No such file or directory"
]
not empty? read port.spec.ref [
fail "Directory not empty"
]
<else> [
storage-unset port.spec.target form port.spec.ref
port
]
]
]
url! [
delete port.spec.ref
]
]
]
query: lambda [port] [
switch type of port.spec.ref [
file! [
if any [
find [%/ %/tmp/] port.spec.ref
storage-exists? port.spec.target form port.spec.ref
][
make system.standard.file-info [
name: port.spec.ref
size: 0
date: lib.now ; we're in a module in a module
type: 'dir
]
]
]
url! [
query port.spec.ref
]
]
]
]
]
]