2014-02-27 00:35:24 +00:00
|
|
|
# JSON Tools
|
|
|
|
# Adds command line aliases useful for dealing with JSON
|
|
|
|
|
|
|
|
if [[ $(whence $JSONTOOLS_METHOD) = "" ]]; then
|
2014-03-25 20:20:25 +00:00
|
|
|
JSONTOOLS_METHOD=""
|
2014-02-27 00:35:24 +00:00
|
|
|
fi
|
|
|
|
|
2014-02-27 15:56:07 +00:00
|
|
|
if [[ $(whence node) != "" && ( "x$JSONTOOLS_METHOD" = "x" || "x$JSONTOOLS_METHOD" = "xnode" ) ]]; then
|
2014-03-24 18:24:00 +00:00
|
|
|
alias pp_json='xargs -0 node -e "console.log(JSON.stringify(JSON.parse(process.argv[1]), null, 4));"'
|
2014-03-25 20:20:25 +00:00
|
|
|
alias is_json='xargs -0 node -e "try {json = JSON.parse(process.argv[1]);} catch (e) { console.log(false); json = null; } if(json) { console.log(true); }"'
|
2014-03-27 14:34:54 +00:00
|
|
|
alias urlencode_json='xargs -0 node -e "console.log(encodeURIComponent(process.argv[1]))"'
|
|
|
|
alias urldecode_json='xargs -0 node -e "console.log(decodeURIComponent(process.argv[1]))"'
|
2014-02-27 15:56:07 +00:00
|
|
|
elif [[ $(whence python) != "" && ( "x$JSONTOOLS_METHOD" = "x" || "x$JSONTOOLS_METHOD" = "xpython" ) ]]; then
|
2014-02-27 00:35:24 +00:00
|
|
|
alias pp_json='python -mjson.tool'
|
2014-03-25 20:20:25 +00:00
|
|
|
alias is_json='python -c "
|
|
|
|
import json, sys;
|
|
|
|
try:
|
|
|
|
json.loads(sys.stdin.read())
|
|
|
|
except ValueError, e:
|
|
|
|
print False
|
|
|
|
else:
|
|
|
|
print True
|
2014-03-26 22:47:57 +00:00
|
|
|
sys.exit(0)"'
|
|
|
|
alias urlencode_json='python -c "
|
|
|
|
import urllib, json, sys;
|
2014-03-27 14:34:54 +00:00
|
|
|
print urllib.quote_plus(sys.stdin.read())
|
|
|
|
sys.exit(0)"'
|
|
|
|
alias urldecode_json='python -c "
|
|
|
|
import urllib, json, sys;
|
|
|
|
print urllib.unquote_plus(sys.stdin.read())
|
2014-03-25 20:20:25 +00:00
|
|
|
sys.exit(0)"'
|
2014-02-27 00:35:24 +00:00
|
|
|
elif [[ $(whence ruby) != "" && ( "x$JSONTOOLS_METHOD" = "x" || "x$JSONTOOLS_METHOD" = "xruby" ) ]]; then
|
|
|
|
alias pp_json='ruby -e "require \"json\"; require \"yaml\"; puts JSON.parse(STDIN.read).to_yaml"'
|
2014-03-25 20:20:25 +00:00
|
|
|
alias is_json='ruby -e "require \"json\"; begin; JSON.parse(STDIN.read); puts true; rescue Exception => e; puts false; end"'
|
2014-03-26 22:47:57 +00:00
|
|
|
alias urlencode_json='ruby -e "require \"uri\"; puts URI.escape(STDIN.read)"'
|
2014-03-27 14:34:54 +00:00
|
|
|
alias urldecode_json='ruby -e "require \"uri\"; puts URI.unescape(STDIN.read)"'
|
2014-02-27 00:35:24 +00:00
|
|
|
fi
|
|
|
|
|
2014-03-27 14:34:54 +00:00
|
|
|
unset JSONTOOLS_METHOD
|