2019-03-24 13:09:10 +00:00
|
|
|
from __future__ import print_function
|
2007-10-12 03:31:48 +00:00
|
|
|
|
|
|
|
import re
|
2007-10-12 05:29:23 +00:00
|
|
|
import urllib
|
2017-01-19 22:39:53 +00:00
|
|
|
import json
|
2010-02-11 02:43:18 +00:00
|
|
|
from allmydata.scripts.common import get_alias, DEFAULT_ALIAS, escape_path, \
|
|
|
|
UnknownAliasError
|
2010-06-07 01:02:15 +00:00
|
|
|
from allmydata.scripts.common_http import do_http, format_http_error
|
2010-07-12 00:30:15 +00:00
|
|
|
from allmydata.util.encodingutil import to_str
|
2007-10-12 03:31:48 +00:00
|
|
|
|
2008-05-20 20:30:31 +00:00
|
|
|
# this script is used for both 'mv' and 'ln'
|
|
|
|
|
2008-08-01 18:46:24 +00:00
|
|
|
def mv(options, mode="move"):
|
|
|
|
nodeurl = options['node-url']
|
|
|
|
aliases = options.aliases
|
|
|
|
from_file = options.from_file
|
|
|
|
to_file = options.to_file
|
|
|
|
stdout = options.stdout
|
|
|
|
stderr = options.stderr
|
|
|
|
|
2007-10-12 03:31:48 +00:00
|
|
|
if nodeurl[-1] != "/":
|
|
|
|
nodeurl += "/"
|
2010-02-11 02:43:18 +00:00
|
|
|
try:
|
|
|
|
rootcap, from_path = get_alias(aliases, from_file, DEFAULT_ALIAS)
|
2019-03-28 11:45:28 +00:00
|
|
|
except UnknownAliasError as e:
|
2010-06-07 01:02:15 +00:00
|
|
|
e.display(stderr)
|
2010-02-11 02:43:18 +00:00
|
|
|
return 1
|
2008-05-20 02:28:50 +00:00
|
|
|
from_url = nodeurl + "uri/%s" % urllib.quote(rootcap)
|
2009-07-20 03:45:23 +00:00
|
|
|
if from_path:
|
|
|
|
from_url += "/" + escape_path(from_path)
|
2008-05-20 02:28:50 +00:00
|
|
|
# figure out the source cap
|
2010-11-10 00:53:36 +00:00
|
|
|
resp = do_http("GET", from_url + "?t=json")
|
|
|
|
if not re.search(r'^2\d\d$', str(resp.status)):
|
2019-03-24 13:09:10 +00:00
|
|
|
print(format_http_error("Error", resp), file=stderr)
|
2010-11-10 00:53:36 +00:00
|
|
|
return 1
|
|
|
|
data = resp.read()
|
2017-01-19 22:39:53 +00:00
|
|
|
nodetype, attrs = json.loads(data)
|
2010-06-07 01:02:15 +00:00
|
|
|
cap = to_str(attrs.get("rw_uri") or attrs["ro_uri"])
|
2008-05-20 02:28:50 +00:00
|
|
|
|
|
|
|
# now get the target
|
2010-02-11 02:43:18 +00:00
|
|
|
try:
|
|
|
|
rootcap, path = get_alias(aliases, to_file, DEFAULT_ALIAS)
|
2019-03-28 11:45:28 +00:00
|
|
|
except UnknownAliasError as e:
|
2010-06-07 01:02:15 +00:00
|
|
|
e.display(stderr)
|
2010-02-11 02:43:18 +00:00
|
|
|
return 1
|
2008-05-20 02:28:50 +00:00
|
|
|
to_url = nodeurl + "uri/%s" % urllib.quote(rootcap)
|
|
|
|
if path:
|
|
|
|
to_url += "/" + escape_path(path)
|
2009-07-20 03:45:23 +00:00
|
|
|
|
|
|
|
if to_url.endswith("/"):
|
2008-05-20 02:28:50 +00:00
|
|
|
# "mv foo.txt bar/" == "mv foo.txt bar/foo.txt"
|
2009-07-20 03:45:23 +00:00
|
|
|
to_url += escape_path(from_path[from_path.rfind("/")+1:])
|
|
|
|
|
|
|
|
to_url += "?t=uri&replace=only-files"
|
2008-05-20 02:28:50 +00:00
|
|
|
|
|
|
|
resp = do_http("PUT", to_url, cap)
|
2007-10-12 03:31:48 +00:00
|
|
|
status = resp.status
|
|
|
|
if not re.search(r'^2\d\d$', str(status)):
|
2009-07-20 03:45:23 +00:00
|
|
|
if status == 409:
|
2019-03-24 13:09:10 +00:00
|
|
|
print("Error: You can't overwrite a directory with a file", file=stderr)
|
2009-07-20 03:45:23 +00:00
|
|
|
else:
|
2019-03-24 13:09:10 +00:00
|
|
|
print(format_http_error("Error", resp), file=stderr)
|
2009-07-20 03:45:23 +00:00
|
|
|
if mode == "move":
|
2019-03-24 13:09:10 +00:00
|
|
|
print("NOT removing the original", file=stderr)
|
2010-06-07 01:02:15 +00:00
|
|
|
return 1
|
2007-10-12 03:31:48 +00:00
|
|
|
|
2008-05-20 20:30:31 +00:00
|
|
|
if mode == "move":
|
|
|
|
# now remove the original
|
|
|
|
resp = do_http("DELETE", from_url)
|
2010-11-10 01:09:16 +00:00
|
|
|
if not re.search(r'^2\d\d$', str(resp.status)):
|
2019-03-24 13:09:10 +00:00
|
|
|
print(format_http_error("Error deleting original after move", resp), file=stderr)
|
2010-06-07 01:02:15 +00:00
|
|
|
return 2
|
2007-10-12 03:31:48 +00:00
|
|
|
|
2019-03-24 13:09:10 +00:00
|
|
|
print("OK", file=stdout)
|
2010-06-07 01:02:15 +00:00
|
|
|
return 0
|