2007-07-11 02:37:37 +00:00
|
|
|
#! /usr/bin/python
|
|
|
|
|
|
|
|
import urllib
|
|
|
|
import simplejson
|
|
|
|
|
2007-08-23 20:27:00 +00:00
|
|
|
def list(nodeurl, vdrive_pathname):
|
2007-08-17 19:54:47 +00:00
|
|
|
if nodeurl[-1] != "/":
|
|
|
|
nodeurl += "/"
|
2007-08-23 20:27:00 +00:00
|
|
|
url = nodeurl + "vdrive/global/"
|
2007-08-17 20:23:16 +00:00
|
|
|
if vdrive_pathname:
|
|
|
|
url += vdrive_pathname
|
2007-07-11 02:37:37 +00: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":
|
|
|
|
print "%10s %s/" % ("", name)
|
|
|
|
else:
|
|
|
|
assert childtype == "filenode"
|
|
|
|
size = child[1]['size']
|
|
|
|
print "%10s %s" % (size, name)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2007-08-17 19:54:47 +00:00
|
|
|
import optparse, re
|
2007-07-11 02:37:37 +00:00
|
|
|
parser = optparse.OptionParser()
|
2007-08-17 19:54:47 +00:00
|
|
|
parser.add_option("-u", "--node-url", dest="nodeurl")
|
2007-07-11 02:37:37 +00:00
|
|
|
|
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
2007-08-17 19:54:47 +00:00
|
|
|
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,))
|
|
|
|
|
2007-08-17 20:23:16 +00:00
|
|
|
vdrive_pathname = ""
|
2007-07-11 02:37:37 +00:00
|
|
|
if args:
|
2007-08-17 20:23:16 +00:00
|
|
|
vdrive_pathname = args[0]
|
2007-07-11 02:37:37 +00:00
|
|
|
|
2007-08-23 20:27:00 +00:00
|
|
|
list(options.nodeurl, vdrive_pathname)
|
2007-07-11 02:37:37 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|