/*\ 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,title); if(data) { var item = getDataItemValueAsString(data,operator.operands); if(item !== undefined) { results.push(item); } } }); return results; }; exports["jsonindexes"] = function(source,operator,options) { var results = []; source(function(tiddler,title) { var data = $tw.utils.parseJSONSafe(title,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,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 getDataItemValueAsString(data,indexes) { // Get the item var item = getDataItem(data,indexes); // Return the item as a string return convertDataItemValueToString(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 convertDataItemValueToString(item) { // Return the item as a string if(item === undefined) { return item; } if(typeof item === "object") { return JSON.stringify(item); } 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