jsonpath/nodejs/lib/index.js

149 lines
3.0 KiB
JavaScript
Raw Normal View History

2019-06-11 00:02:05 +09:00
const {
CompileFn,
SelectorFn,
selectStr,
deleteValue: _deleteValue,
replaceWith: _replaceWith,
Selector: _Selector,
SelectorMut: _SelectorMut
} = require('../native');
2019-03-14 22:30:42 +09:00
function compile(path) {
2019-04-09 16:13:09 +09:00
let compile = new CompileFn(path);
2019-03-14 22:30:42 +09:00
return (json) => {
if(typeof json != 'string') {
json = JSON.stringify(json)
}
return JSON.parse(compile.template(json));
2019-03-14 22:30:42 +09:00
};
}
function selector(json) {
if(typeof json != 'string') {
json = JSON.stringify(json)
}
2019-04-09 16:13:09 +09:00
let selector = new SelectorFn(json);
2019-03-14 22:30:42 +09:00
return (path) => {
2019-04-09 16:13:09 +09:00
return JSON.parse(selector.select(path));
2019-03-14 22:30:42 +09:00
}
}
function select(json, path) {
if(typeof json != 'string') {
json = JSON.stringify(json)
}
return JSON.parse(selectStr(json, path));
2019-03-14 22:30:42 +09:00
}
2019-06-11 00:02:05 +09:00
function deleteValue(json, path) {
if(typeof json != 'string') {
json = JSON.stringify(json)
}
return JSON.parse(_deleteValue(json, path));
}
function replaceWith(json, path, fun) {
if(typeof json != 'string') {
json = JSON.stringify(json)
}
let result = _replaceWith(json, path, (v) => {
let result = fun(JSON.parse(v));
if(typeof result != 'string') {
result = JSON.stringify(result)
}
return result;
});
if(typeof result == 'string') {
result = JSON.parse(result);
}
return result;
}
2019-04-09 16:13:09 +09:00
class Selector {
constructor() {
this._selector = new _Selector();
return this;
}
path(path) {
this._selector.path(path);
return this;
}
value(json) {
if(typeof json != 'string') {
json = JSON.stringify(json)
}
2019-06-03 13:50:44 +09:00
this._selector.value(json);
2019-04-09 16:13:09 +09:00
return this;
}
2019-06-03 13:50:44 +09:00
select() {
return JSON.parse(this._selector.select());
2019-05-16 14:14:09 +09:00
}
2019-04-09 16:13:09 +09:00
}
2019-06-11 00:02:05 +09:00
class SelectorMut {
constructor() {
return this;
}
path(path) {
2019-06-11 12:14:12 +09:00
this._path = path;
2019-06-11 00:02:05 +09:00
return this;
}
value(json) {
if(typeof json != 'string') {
json = JSON.stringify(json)
}
2019-06-11 12:14:12 +09:00
this._json = json;
2019-06-11 00:02:05 +09:00
return this;
}
deleteValue() {
let selector = new _SelectorMut();
2019-06-11 12:14:12 +09:00
if(!this._path) {
2019-06-11 00:02:05 +09:00
selector.emptyPathError();
return;
}
2019-06-11 12:14:12 +09:00
if(!this._json) {
2019-06-11 00:02:05 +09:00
selector.emptyValueError();
return;
}
2019-06-11 12:14:12 +09:00
this._json = deleteValue(this._json, this._path);
2019-06-11 00:02:05 +09:00
return this;
}
replaceWith(fun) {
let selector = new _SelectorMut();
2019-06-11 12:14:12 +09:00
if(!this._path) {
2019-06-11 00:02:05 +09:00
selector.emptyPathError();
return;
}
2019-06-11 12:14:12 +09:00
if(!this._json) {
2019-06-11 00:02:05 +09:00
selector.emptyValueError();
return;
}
2019-06-11 12:14:12 +09:00
this._json = replaceWith(this._json, this._path, fun);
2019-06-11 00:02:05 +09:00
return this;
}
take() {
2019-06-11 12:14:12 +09:00
let json = this._json;
delete this._json;
2019-06-11 00:02:05 +09:00
return json;
}
}
2019-03-14 22:30:42 +09:00
module.exports = {
compile,
selector,
2019-04-09 16:13:09 +09:00
select,
2019-06-11 00:02:05 +09:00
deleteValue,
replaceWith,
Selector,
SelectorMut
2019-03-14 22:30:42 +09:00
};