56 lines
1.7 KiB
Python
Raw Normal View History

2007-07-10 19:37:37 -07:00
#! /usr/bin/python
import urllib
import simplejson
def list(nodeurl, dir_uri, vdrive_pathname, stdout, stderr):
if nodeurl[-1] != "/":
nodeurl += "/"
url = nodeurl + "uri/%s/" % urllib.quote(dir_uri)
if vdrive_pathname:
url += urllib.quote(vdrive_pathname)
2007-07-10 19:37:37 -07:00
url += "?t=json"
data = urllib.urlopen(url).read()
parsed = simplejson.loads(data)
nodetype, d = parsed
if nodetype == "dirnode":
childnames = sorted(d['children'].keys())
for name in childnames:
child = d['children'][name]
childtype = child[0]
if childtype == "dirnode":
2007-10-11 19:20:41 -07:00
print >>stdout, "%10s %s/" % ("", name)
2007-07-10 19:37:37 -07:00
else:
assert childtype == "filenode"
size = child[1]['size']
2007-10-11 19:20:41 -07:00
print >>stdout, "%10s %s" % (size, name)
2007-10-21 12:33:06 -07:00
elif nodetype == "filenode":
print >>stdout, "%10s %s" % (d['size'], vdrive_pathname)
2007-07-10 19:37:37 -07:00
def main():
import optparse, re
2007-07-10 19:37:37 -07:00
parser = optparse.OptionParser()
parser.add_option("-u", "--node-url", dest="nodeurl")
2008-01-08 10:41:27 -07:00
parser.add_option("-r", "--dir-cap", dest="rooturi")
2007-07-10 19:37:37 -07:00
(options, args) = parser.parse_args()
NODEURL_RE=re.compile("http://([^:]*)(:([1-9][0-9]*))?")
if not isinstance(options.nodeurl, basestring) or not NODEURL_RE.match(options.nodeurl):
raise ValueError("--node-url is required to be a string and look like \"http://HOSTNAMEORADDR:PORT\", not: %r" % (options.nodeurl,))
if not options.rooturi:
2008-01-08 10:41:27 -07:00
raise ValueError("must provide --dir-cap")
vdrive_pathname = ""
2007-07-10 19:37:37 -07:00
if args:
vdrive_pathname = args[0]
2007-07-10 19:37:37 -07:00
list(options.nodeurl, options.rooturi, vdrive_pathname)
2007-07-10 19:37:37 -07:00
if __name__ == '__main__':
main()