2007-07-11 10:26:19 -07:00
|
|
|
|
2007-10-11 19:47:40 -07:00
|
|
|
import urllib
|
2008-05-19 19:28:50 -07:00
|
|
|
from allmydata.scripts.common import get_alias, DEFAULT_ALIAS, escape_path
|
|
|
|
from allmydata.scripts.common_http import do_http
|
2007-07-11 10:26:19 -07:00
|
|
|
|
2008-08-01 11:46:24 -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
|
|
|
|
|
2007-08-17 12:54:47 -07:00
|
|
|
if nodeurl[-1] != "/":
|
|
|
|
nodeurl += "/"
|
2008-05-19 19:28:50 -07:00
|
|
|
rootcap, path = get_alias(aliases, from_file, DEFAULT_ALIAS)
|
|
|
|
url = nodeurl + "uri/%s" % urllib.quote(rootcap)
|
|
|
|
if path:
|
|
|
|
url += "/" + escape_path(path)
|
2007-07-11 10:26:19 -07:00
|
|
|
|
2008-05-19 19:28:50 -07:00
|
|
|
if to_file:
|
|
|
|
outf = open(to_file, "wb")
|
|
|
|
close_outf = True
|
|
|
|
else:
|
2007-10-11 19:20:41 -07:00
|
|
|
outf = stdout
|
|
|
|
close_outf = False
|
2008-05-19 19:28:50 -07:00
|
|
|
|
|
|
|
resp = do_http("GET", url)
|
|
|
|
if resp.status in (200, 201,):
|
|
|
|
while True:
|
|
|
|
data = resp.read(4096)
|
|
|
|
if not data:
|
|
|
|
break
|
|
|
|
outf.write(data)
|
|
|
|
rc = 0
|
2007-07-11 10:26:19 -07:00
|
|
|
else:
|
2008-05-19 19:28:50 -07:00
|
|
|
print >>stderr, "Error, got %s %s" % (resp.status, resp.reason)
|
|
|
|
print >>stderr, resp.read()
|
|
|
|
rc = 1
|
|
|
|
|
2007-10-11 19:20:41 -07:00
|
|
|
if close_outf:
|
|
|
|
outf.close()
|
2007-07-11 10:26:19 -07:00
|
|
|
|
2008-05-19 19:28:50 -07:00
|
|
|
return rc
|