/*\ title: $:/core/modules/filters/json-ops.js type: application/javascript module-type: filteroperator Filter operators for JSON operations \*/ (function(){ /*jslint node: true, browser: true */ /*global $tw: false */ "use strict"; exports["jsonget"] = function(source,operator,options) { var results = []; source(function(tiddler,title) { var data = $tw.utils.parseJSONSafe(title,{}); if(data) { var item = getDataItemValueAsStrings(data,operator.operands); if(item !== undefined) { results.push.apply(results,item); } } }); return results; }; exports["jsonextract"] = function(source,operator,options) { var results = []; source(function(tiddler,title) { var data = $tw.utils.parseJSONSafe(title,{}); if(data) { var item = getDataItem(data,operator.operands); if(item !== undefined) { results.push(JSON.stringify(item)); } } }); return results; }; exports["jsonindexes"] = function(source,operator,options) { var results = []; source(function(tiddler,title) { var data = $tw.utils.parseJSONSafe(title,{}); if(data) { var item = getDataItemKeysAsStrings(data,operator.operands); if(item !== undefined) { results.push.apply(results,item); } } }); return results; }; exports["jsontype"] = function(source,operator,options) { var results = []; source(function(tiddler,title) { var data = $tw.utils.parseJSONSafe(title,{}); if(data) { var item = getDataItemType(data,operator.operands); if(item !== undefined) { results.push(item); } } }); return results; }; /* Given a JSON data structure and an array of index strings, return an array of the string representation of the values at the end of the index chain, or "undefined" if any of the index strings are invalid */ function getDataItemValueAsStrings(data,indexes) { // Get the item var item = getDataItem(data,indexes); // Return the item as a string return convertDataItemValueToStrings(item); } /* Given a JSON data structure and an array of index strings, return an array of the string representation of the keys of the item at the end of the index chain, or "undefined" if any of the index strings are invalid */ function getDataItemKeysAsStrings(data,indexes) { // Get the item var item = getDataItem(data,indexes); // Return the item keys as a string return convertDataItemKeysToStrings(item); } /* Return an array of the string representation of the values of a data item, or "undefined" if the item is undefined */ function convertDataItemValueToStrings(item) { // Return the item as a string if(item === undefined) { return item; } if(typeof item === "object") { if(item === null) { return ["null"]; } var results = []; if($tw.utils.isArray(item)) { $tw.utils.each(item,function(value) { results.push.apply(results,convertDataItemValueToStrings(value)); }); return results; } else { $tw.utils.each(Object.keys(item).sort(),function(key) { results.push.apply(results,convertDataItemValueToStrings(item[key])); }); return results; } } return [item.toString()]; } /* Return an array of the string representation of the keys of a data item, or "undefined" if the item is undefined */ function convertDataItemKeysToStrings(item) { // Return the item as a string if(item === undefined) { return item; } else if(typeof item === "object") { if(item === null) { return []; } var results = []; if($tw.utils.isArray(item)) { for(var i=0; i