mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-04 20:24:12 +00:00
d3d1293d2f
Thanks to David-Sarah Hopwood for the patch.
80 lines
2.6 KiB
Python
80 lines
2.6 KiB
Python
|
|
from cStringIO import StringIO
|
|
import os.path
|
|
import urllib
|
|
from allmydata.scripts.common_http import do_http
|
|
from allmydata.scripts.common import get_alias, DEFAULT_ALIAS, escape_path
|
|
|
|
def put(options):
|
|
"""
|
|
@param verbosity: 0, 1, or 2, meaning quiet, verbose, or very verbose
|
|
|
|
@return: a Deferred which eventually fires with the exit code
|
|
"""
|
|
nodeurl = options['node-url']
|
|
aliases = options.aliases
|
|
from_file = options.from_file
|
|
to_file = options.to_file
|
|
mutable = options['mutable']
|
|
if options['quiet']:
|
|
verbosity = 0
|
|
else:
|
|
verbosity = 2
|
|
stdin = options.stdin
|
|
stdout = options.stdout
|
|
stderr = options.stderr
|
|
|
|
if nodeurl[-1] != "/":
|
|
nodeurl += "/"
|
|
if to_file:
|
|
# several possibilities for the TO_FILE argument.
|
|
# <none> : unlinked upload
|
|
# foo : TAHOE_ALIAS/foo
|
|
# subdir/foo : TAHOE_ALIAS/subdir/foo
|
|
# /oops/subdir/foo : DISALLOWED
|
|
# ALIAS:foo : aliases[ALIAS]/foo
|
|
# ALIAS:subdir/foo : aliases[ALIAS]/subdir/foo
|
|
|
|
# ALIAS:/oops/subdir/foo : DISALLOWED
|
|
# DIRCAP:./foo : DIRCAP/foo
|
|
# DIRCAP:./subdir/foo : DIRCAP/subdir/foo
|
|
# MUTABLE-FILE-WRITECAP : filecap
|
|
|
|
if to_file.startswith("URI:SSK:"):
|
|
url = nodeurl + "uri/%s" % urllib.quote(to_file)
|
|
else:
|
|
rootcap, path = get_alias(aliases, to_file, DEFAULT_ALIAS)
|
|
if path.startswith("/"):
|
|
suggestion = to_file.replace("/", "", 1)
|
|
print >>stderr, "ERROR: The remote filename must not start with a slash"
|
|
print >>stderr, "Please try again, perhaps with:", suggestion
|
|
return 1
|
|
url = nodeurl + "uri/%s/" % urllib.quote(rootcap)
|
|
if path:
|
|
url += escape_path(path)
|
|
else:
|
|
# unlinked upload
|
|
url = nodeurl + "uri"
|
|
if mutable:
|
|
url += "?mutable=true"
|
|
if from_file:
|
|
infileobj = open(os.path.expanduser(from_file), "rb")
|
|
else:
|
|
# do_http() can't use stdin directly: for one thing, we need a
|
|
# Content-Length field. So we currently must copy it.
|
|
if verbosity > 0:
|
|
print >>stderr, "waiting for file data on stdin.."
|
|
data = stdin.read()
|
|
infileobj = StringIO(data)
|
|
|
|
resp = do_http("PUT", url, infileobj)
|
|
|
|
if resp.status in (200, 201,):
|
|
print >>stderr, "%s %s" % (resp.status, resp.reason)
|
|
print >>stdout, resp.read()
|
|
return 0
|
|
|
|
print >>stderr, "error, got %s %s" % (resp.status, resp.reason)
|
|
print >>stderr, resp.read()
|
|
return 1
|