mirror of
https://github.com/flynx/pWiki.git
synced 2025-10-28 09:30:07 +00:00
536 lines
15 KiB
JavaScript
Executable File
536 lines
15 KiB
JavaScript
Executable File
/**********************************************************************
|
|
*
|
|
*
|
|
*
|
|
**********************************************************************/
|
|
((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define)
|
|
(function(require){ var module={} // make module AMD/node compatible...
|
|
/*********************************************************************/
|
|
|
|
var object = require('ig-object')
|
|
var types = require('ig-types')
|
|
|
|
var pwpath = require('../lib/path')
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
// Store...
|
|
|
|
//
|
|
// To create a store adapter:
|
|
// - inherit from BaseStore
|
|
// - overload:
|
|
// .__paths__()
|
|
// -> <keys>
|
|
// .__exists__(..)
|
|
// -> <path>
|
|
// -> false
|
|
// .__get__(..)
|
|
// -> <data>
|
|
// - optionally (for writable stores)
|
|
// .__update__(..)
|
|
// .__delete__(..)
|
|
// .load(..)
|
|
//
|
|
//
|
|
// NOTE: store keys must be normalized to avoid conditions where two
|
|
// forms of the same path exist at the same time...
|
|
//
|
|
//
|
|
// XXX potential architectural problems:
|
|
// - .paths()
|
|
// external index -- is this good???
|
|
// bottleneck??
|
|
// cache/index???
|
|
// ...can we avoid this??
|
|
//
|
|
// XXX LEADING_SLASH should this be strict about leading '/' in paths???
|
|
// ...this may lead to duplicate paths created -- '/a/b' and 'a/b'
|
|
// XXX should we support page symlinking???
|
|
// XXX async: not sure if we need to return this from async methods...
|
|
var BaseStore =
|
|
module.BaseStore = {
|
|
|
|
// XXX NEXT revise naming...
|
|
next: undefined,
|
|
|
|
// NOTE: .data is not part of the spec and can be implementation-specific,
|
|
// only .__<name>__(..) use it internally... (XXX check this)
|
|
__data: undefined,
|
|
get data(){
|
|
return this.__data
|
|
?? (this.__data = {}) },
|
|
set data(value){
|
|
this.__data = value },
|
|
|
|
|
|
// XXX might be a good idea to cache this...
|
|
__paths__: async function(){
|
|
return Object.keys(this.data) },
|
|
paths: async function(local=false){
|
|
return this.__paths__()
|
|
.iter()
|
|
// XXX NEXT
|
|
.concat((!local && (this.next || {}).paths) ?
|
|
this.next.paths()
|
|
: []) },
|
|
|
|
//
|
|
// .exists(<path>)
|
|
// -> <normalized-path>
|
|
// -> false
|
|
//
|
|
// XXX might be a good idea to cache this...
|
|
__exists__: async function(path){
|
|
return path in this.data
|
|
&& path },
|
|
exists: async function(path){
|
|
path = pwpath.normalize(path, 'string')
|
|
return (await this.__exists__(path, 'string'))
|
|
// NOTE: all paths at this point and in store are
|
|
// absolute, so we check both with the leading
|
|
// '/' and without it to make things a bit more
|
|
// relaxed and return the actual matching path...
|
|
|| (await this.__exists__(
|
|
path[0] == '/' ?
|
|
path.slice(1)
|
|
: ('/'+ path)))
|
|
// XXX NEXT
|
|
// delegate to .next...
|
|
|| ((this.next || {}).__exists__
|
|
&& (await this.next.__exists__(path)
|
|
|| await this.next.__exists__(
|
|
path[0] == '/' ?
|
|
path.slice(1)
|
|
: ('/'+ path))))
|
|
// normalize the output...
|
|
|| false },
|
|
// find the closest existing alternative path...
|
|
find: async function(path){
|
|
for(var p of await pwpath.paths(path)){
|
|
p = await this.exists(p)
|
|
if(p){
|
|
return p } } },
|
|
//
|
|
// Resolve page for path
|
|
// .match(<path>)
|
|
// -> <path>
|
|
//
|
|
// Match paths (non-strict mode)
|
|
// .match(<pattern>)
|
|
// .match(<pattern>, false)
|
|
// -> [<path>, ...]
|
|
// -> []
|
|
//
|
|
// Match pages (paths in strict mode)
|
|
// .match(<pattern>, true)
|
|
// -> [<path>, ...]
|
|
// -> []
|
|
//
|
|
// In strict mode the trailing star in the pattern will only match
|
|
// actual existing pages, while in non-strict mode the pattern will
|
|
// match all sub-paths.
|
|
//
|
|
match: async function(path, strict=false){
|
|
// pattern match * / **
|
|
if(path.includes('*')
|
|
|| path.includes('**')){
|
|
var order = (this.metadata(path) ?? {}).order || []
|
|
// NOTE: we are matching full paths only here so leading and
|
|
// trainling '/' are optional...
|
|
// NOTE: we ensure that we match full names and always split
|
|
// at '/' only...
|
|
var pattern = new RegExp(`^\\/?${
|
|
pwpath.normalize(path, 'string')
|
|
.replace(/^\/|\/$/g, '')
|
|
.replace(/\//g, '\\/')
|
|
.replace(/\*\*/g, '.+')
|
|
.replace(/\*/g, '[^\\/]+')
|
|
}(?=[\\\\\/]|$)`)
|
|
return [...(await this.paths())
|
|
// NOTE: we are not using .filter(..) here as wee
|
|
// need to keep parts of the path only and not
|
|
// return the whole thing...
|
|
.reduce(function(res, p){
|
|
// skip metadata paths...
|
|
if(p.includes('*')){
|
|
return res }
|
|
var m = p.match(pattern)
|
|
m
|
|
&& (!strict
|
|
|| m[0] == p)
|
|
&& res.add(m[0])
|
|
return res }, new Set())]
|
|
.sortAs(order) }
|
|
// direct search...
|
|
return this.find(path) },
|
|
//
|
|
// .resolve(<path>)
|
|
// -> <path>
|
|
//
|
|
// .resolve(<pattern>)
|
|
// -> [<path>, ...]
|
|
// -> []
|
|
//
|
|
// This is like .match(..) for non-pattern paths and paths ending
|
|
// with '/'; When patterns end with a non-pattern then match the
|
|
// basedir and add the basename to each resulting path...
|
|
//
|
|
// XXX should this be used by .get(..) instead of .match(..)???
|
|
// XXX EXPERIMENTAL
|
|
resolve: async function(path, strict){
|
|
// pattern match * / **
|
|
if(path.includes('*')
|
|
|| path.includes('**')){
|
|
path = pwpath.split(path)
|
|
// match basedir and addon basename to the result...
|
|
var name = path[path.length-1]
|
|
if(name
|
|
&& name != ''
|
|
&& !name.includes('*')){
|
|
path.pop()
|
|
path.push('')
|
|
return (await this.match(path.join('/'), strict))
|
|
.map(function(p){
|
|
return pwpath.join(p, name) }) } }
|
|
// direct...
|
|
return this.match(path, strict) },
|
|
//
|
|
// Resolve page
|
|
// .get(<path>)
|
|
// -> <value>
|
|
//
|
|
// Resolve pages (non-strict mode)
|
|
// .get(<pattern>)
|
|
// .get(<pattern>, false)
|
|
// -> [<value>, .. ]
|
|
//
|
|
// Get pages (strict mode)
|
|
// .get(<pattern>, true)
|
|
// -> [<value>, .. ]
|
|
//
|
|
// In strict mode this will not try to resolve pages and will not
|
|
// return pages at paths that do not explicitly exist.
|
|
//
|
|
// XXX should this call actions???
|
|
// XXX should this return a map for pattern matches???
|
|
__get__: async function(key){
|
|
return this.data[key] },
|
|
get: async function(path, strict=false){
|
|
var that = this
|
|
//path = this.match(path, strict)
|
|
path = await this.resolve(path, strict)
|
|
return path instanceof Array ?
|
|
// XXX should we return matched paths???
|
|
Promise.iter(path)
|
|
.map(function(p){
|
|
// NOTE: p can match a non existing page at this point,
|
|
// this can be the result of matching a/* in a a/b/c
|
|
// and returning a a/b which can be undefined...
|
|
return that.get(p) })
|
|
: (await this.__get__(path)
|
|
// XXX NEXT
|
|
?? ((this.next || {}).__get__
|
|
&& this.next.__get__(path))) },
|
|
|
|
//
|
|
// Get metadata...
|
|
// .metadata(<path>)
|
|
// -> <metadata>
|
|
// -> undefined
|
|
//
|
|
// Set metadata...
|
|
// .metadata(<path>, <data>[, <mode>])
|
|
// .update(<path>, <data>[, <mode>])
|
|
//
|
|
// Delete metadata...
|
|
// .delete(<path>)
|
|
//
|
|
// NOTE: .metadata(..) is the same as .data but supports pattern paths
|
|
// and does not try to acquire a target page.
|
|
// NOTE: setting/removing metadata is done via .update(..) / .delete(..)
|
|
// NOTE: this uses .__get__(..) internally...
|
|
metadata: async function(path, ...args){
|
|
// set...
|
|
if(args.length > 0){
|
|
return this.update(path, ...args) }
|
|
// get...
|
|
path = await this.exists(path)
|
|
return path
|
|
&& await this.__get__(path)
|
|
|| undefined },
|
|
|
|
// NOTE: deleting and updating only applies to explicit matching
|
|
// paths -- no page acquisition is performed...
|
|
// NOTE: edit methods are local-only...
|
|
// NOTE: if .__update__ and .__delete__ are set to null/false this
|
|
// will quietly go into read-only mode...
|
|
// XXX do we copy the data here or modify it????
|
|
__update__: async function(key, data, mode='update'){
|
|
this.data[key] = data },
|
|
update: async function(path, data, mode='update'){
|
|
// read-only...
|
|
if(this.__update__ == null){
|
|
return this }
|
|
var exists = await this.exists(path)
|
|
path = exists
|
|
|| pwpath.normalize(path, 'string')
|
|
data = data instanceof Promise ?
|
|
await data
|
|
: data
|
|
data =
|
|
typeof(data) == 'function' ?
|
|
data
|
|
: Object.assign(
|
|
{
|
|
__proto__: data.__proto__,
|
|
ctime: Date.now(),
|
|
},
|
|
(mode == 'update' && exists) ?
|
|
await this.get(path)
|
|
: {},
|
|
data,
|
|
{mtime: Date.now()})
|
|
await this.__update__(path, data, mode)
|
|
return this },
|
|
__delete__: async function(path){
|
|
delete this.data[path] },
|
|
delete: async function(path){
|
|
// read-only...
|
|
if(this.__delete__ == null){
|
|
return this }
|
|
path = await this.exists(path)
|
|
path
|
|
&& await this.__delete__(path)
|
|
return this },
|
|
|
|
// XXX NEXT might be a good idea to have an API to move pages from
|
|
// current store up the chain...
|
|
|
|
// load/json protocol...
|
|
//
|
|
// The .load(..) / .json(..) methods have two levels of implementation:
|
|
// - generic
|
|
// uses .update(..) and .paths()/.get(..) and is usable as-is
|
|
// in any store adapter implementing the base protocol.
|
|
// - batch
|
|
// implemented via .__batch_load__(..) and .__batch_json__(..)
|
|
// methods and can be adapter specific.
|
|
//
|
|
// NOTE: the generic level does not care about the nested stores
|
|
// and other details, as it uses the base API and will produce
|
|
// full and generic result regardless of actual store topology.
|
|
// NOTE: implementations of the batch level need to handle nested
|
|
// stores correctly.
|
|
// XXX not sure if we can avoid this at this stage...
|
|
// NOTE: care must be taken with inheriting the batch protocol methods
|
|
// as they take precedence over the generic protocol. It is
|
|
// recommended to either overload them or simply assign null or
|
|
// undefined to them when inheriting from a non-base-store.
|
|
//__batch_load__: function(data){
|
|
// // ...
|
|
// return this },
|
|
load: async function(...data){
|
|
var input = {}
|
|
for(var e of data){
|
|
input = {...input, ...e} }
|
|
// batch loader (optional)...
|
|
if(this.__batch_load__){
|
|
this.__batch_load__(input)
|
|
// one-by-one loader...
|
|
} else {
|
|
for(var [path, value] of Object.entries(input)){
|
|
this.update(path, value) } }
|
|
return this },
|
|
//__batch_json__: function(){
|
|
// // ...
|
|
// return json},
|
|
json: async function(asstring=false){
|
|
// batch...
|
|
if(this.__batch_json__){
|
|
var res = this.__batch_json__(asstring)
|
|
// generic...
|
|
} else {
|
|
var res = {}
|
|
for(var path of await this.paths()){
|
|
res[path] = await this.get(path) } }
|
|
return (asstring
|
|
&& typeof(res) != 'string') ?
|
|
JSON.stringify(res)
|
|
: res },
|
|
|
|
// XXX NEXT EXPERIMENTAL...
|
|
nest: function(base){
|
|
return {
|
|
__proto__: base
|
|
?? BaseStore,
|
|
next: this,
|
|
data: {}
|
|
} },
|
|
}
|
|
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
//
|
|
// XXX stores to experiment with:
|
|
// - cache
|
|
// - fs
|
|
// - PouchDB
|
|
//
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
// Meta-Store
|
|
//
|
|
// Extends BaseStore to handle other stores as pages. i.e. sub-paths can
|
|
// be handled by nested stores.
|
|
//
|
|
|
|
// XXX might be a good idea to normalize args...
|
|
var metaProxy =
|
|
function(meth, drop_cache=false, post){
|
|
var target = meth.replace(/__/g, '')
|
|
if(typeof(drop_cache) == 'function'){
|
|
post = drop_cache
|
|
drop_cache = false }
|
|
var func = async function(path, ...args){
|
|
var store = this.substore(path)
|
|
|
|
var res =
|
|
store == null ?
|
|
object.parentCall(MetaStore[meth], this, path, ...args)
|
|
: this.data[store][target](
|
|
// NOTE: we are normalizing for root/non-root paths...
|
|
path.slice(path.indexOf(store)+store.length),
|
|
...args)
|
|
|
|
if(drop_cache){
|
|
delete this.__substores }
|
|
post
|
|
&& (res = post.call(this, await res, store, path, ...args))
|
|
return res}
|
|
Object.defineProperty(func, 'name', {value: meth})
|
|
return func }
|
|
|
|
|
|
// XXX this gets stuff from .data, can we avoid this???
|
|
// ...this can restrict this to being in-memory...
|
|
// XXX not sure about the name...
|
|
// XXX should this be a mixin???
|
|
var MetaStore =
|
|
module.MetaStore = {
|
|
__proto__: BaseStore,
|
|
|
|
//data: undefined,
|
|
|
|
__substores: undefined,
|
|
get substores(){
|
|
return this.__substores
|
|
?? (this.__substores = Object.entries(this.data)
|
|
.filter(function([path, value]){
|
|
return object.childOf(value, BaseStore) })
|
|
.map(function([path, _]){
|
|
return path })) },
|
|
substore: function(path){
|
|
path = pwpath.normalize(path, 'string')
|
|
if(this.substores.includes(path)){
|
|
return path }
|
|
var root = path[0] == '/'
|
|
var store = this.substores
|
|
.filter(function(p){
|
|
return path.startsWith(
|
|
root ?
|
|
'/'+p
|
|
: p) })
|
|
.sort(function(a, b){
|
|
return a.length - b.length })
|
|
.pop()
|
|
return store == path ?
|
|
// the actual store is not stored within itself...
|
|
undefined
|
|
: store },
|
|
getstore: function(path){
|
|
return this.data[this.substore(path)] },
|
|
|
|
// XXX this depends on .data having keys...
|
|
__paths__: async function(){
|
|
var that = this
|
|
var data = this.data
|
|
//return Object.keys(data)
|
|
return Promise.iter(Object.keys(data)
|
|
.map(function(path){
|
|
return object.childOf(data[path], BaseStore) ?
|
|
data[path].paths()
|
|
.iter()
|
|
.map(function(s){
|
|
return pwpath.join(path, s) })
|
|
: path }))
|
|
.flat() },
|
|
// XXX revise...
|
|
__exists__: metaProxy('__exists__',
|
|
// normalize path...
|
|
function(res, store, path){
|
|
return (store && res) ?
|
|
path
|
|
: res }),
|
|
__get__: metaProxy('__get__'),
|
|
__delete__: metaProxy('__delete__', true),
|
|
// XXX BUG: this does not create stuff in sub-store...
|
|
__update__: metaProxy('__update__', true),
|
|
|
|
}
|
|
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
// XXX might be a fun idea to actually use this as a backend for BaseStore...
|
|
// XXX make this a mixin...
|
|
// XXX add cache invalidation strategies...
|
|
// - timeout
|
|
// - count
|
|
// XXX TEST...
|
|
var CachedStore =
|
|
module.CachedStore = {
|
|
//__proto__: FileStoreRO,
|
|
|
|
// format:
|
|
// {
|
|
// <path>: <value>,
|
|
// }
|
|
__cache: undefined,
|
|
__paths: undefined,
|
|
|
|
resetCache: function(){
|
|
delete this.__paths
|
|
delete this.__cache
|
|
return this },
|
|
|
|
__paths__: function(){
|
|
return this.__paths
|
|
?? (this.__paths =
|
|
object.parentCall(CachedStore.__paths__, this)) },
|
|
__exists__: async function(path){
|
|
return path in this.cache
|
|
|| object.parentCall(CachedStore.__exists__, this, path) },
|
|
__get__: async function(path){
|
|
return this.cache[path]
|
|
?? (this.cache[path] =
|
|
object.parentCall(CachedStore.__get__, this, path, ...args)) },
|
|
__update__: async function(path, data){
|
|
this.__paths.includes(path)
|
|
|| this.__paths.push(path)
|
|
this.__cache[path] = data
|
|
return object.parentCall(CachedStore.__update__, this, path, data) },
|
|
__delete__: async function(path){
|
|
var i = this.__paths.indexOf(path)
|
|
i > 0
|
|
&& this.__paths.splice(i, 1)
|
|
delete this.__cache[path]
|
|
return object.parentCall(CachedStore.__delete__, this, path) },
|
|
}
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
* vim:set ts=4 sw=4 : */ return module })
|