45 lines
1.2 KiB
Python
Raw Normal View History

2007-07-11 10:26:19 -07:00
import os, urllib
from allmydata.scripts.common import get_alias, DEFAULT_ALIAS, escape_path, \
UnknownAliasError
2010-06-06 18:02:15 -07:00
from allmydata.scripts.common_http import do_http, format_http_error
2007-07-11 10:26:19 -07:00
def get(options):
nodeurl = options['node-url']
aliases = options.aliases
from_file = options.from_file
to_file = options.to_file
stdout = options.stdout
stderr = options.stderr
if nodeurl[-1] != "/":
nodeurl += "/"
try:
rootcap, path = get_alias(aliases, from_file, DEFAULT_ALIAS)
except UnknownAliasError, e:
2010-06-06 18:02:15 -07:00
e.display(stderr)
return 1
url = nodeurl + "uri/%s" % urllib.quote(rootcap)
if path:
url += "/" + escape_path(path)
2007-07-11 10:26:19 -07:00
resp = do_http("GET", url)
if resp.status in (200, 201,):
if to_file:
outf = open(os.path.expanduser(to_file), "wb")
else:
outf = stdout
while True:
data = resp.read(4096)
if not data:
break
outf.write(data)
if to_file:
outf.close()
rc = 0
2007-07-11 10:26:19 -07:00
else:
2010-06-06 18:02:15 -07:00
print >>stderr, format_http_error("Error during GET", resp)
rc = 1
return rc