2007-08-17 20:23:16 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2007-10-12 05:29:23 +00:00
|
|
|
import urllib
|
|
|
|
from allmydata.scripts.common_http import do_http
|
2007-08-17 20:23:16 +00:00
|
|
|
|
2007-10-12 02:20:41 +00:00
|
|
|
def rm(nodeurl, root_uri, vdrive_pathname, verbosity, stdout, stderr):
|
2007-08-17 20:23:16 +00:00
|
|
|
"""
|
|
|
|
@param verbosity: 0, 1, or 2, meaning quiet, verbose, or very verbose
|
|
|
|
|
|
|
|
@return: a Deferred which eventually fires with the exit code
|
|
|
|
"""
|
2007-10-12 05:29:23 +00:00
|
|
|
if nodeurl[-1] != "/":
|
|
|
|
nodeurl += "/"
|
2007-12-18 03:22:26 +00:00
|
|
|
url = nodeurl + "uri/%s/" % urllib.quote(root_uri)
|
2007-08-17 20:23:16 +00:00
|
|
|
if vdrive_pathname:
|
2007-10-27 01:30:44 +00:00
|
|
|
url += urllib.quote(vdrive_pathname)
|
2007-08-17 20:23:16 +00:00
|
|
|
|
2007-10-12 05:29:23 +00:00
|
|
|
resp = do_http("DELETE", url)
|
2007-08-17 20:23:16 +00:00
|
|
|
|
2007-10-12 05:29:23 +00:00
|
|
|
if resp.status in (200,):
|
|
|
|
print >>stdout, "%s %s" % (resp.status, resp.reason)
|
|
|
|
return 0
|
2007-08-17 20:23:16 +00:00
|
|
|
|
2007-10-12 05:29:23 +00:00
|
|
|
print >>stderr, "error, got %s %s" % (resp.status, resp.reason)
|
|
|
|
print >>stderr, resp.read()
|
2007-08-17 20:23:16 +00:00
|
|
|
return 1
|
|
|
|
|
|
|
|
def main():
|
|
|
|
import optparse, re
|
|
|
|
parser = optparse.OptionParser()
|
|
|
|
parser.add_option("-u", "--node-url", dest="nodeurl")
|
2007-10-11 07:30:36 +00:00
|
|
|
parser.add_option("-r", "--root-uri", dest="rooturi")
|
2007-08-17 20:23:16 +00:00
|
|
|
|
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
|
|
|
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-10-11 07:30:36 +00:00
|
|
|
|
|
|
|
if not options.rooturi:
|
|
|
|
raise ValueError("must provide --root-uri")
|
2007-11-01 22:29:12 +00:00
|
|
|
|
2007-08-17 20:23:16 +00:00
|
|
|
vdrive_pathname = args[0]
|
|
|
|
|
2007-10-11 07:30:36 +00:00
|
|
|
return rm(options.nodeurl, options.rooturi, vdrive_pathname, 0)
|
2007-08-17 20:23:16 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|