]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/allmydata/scripts/cli.py
CLI: add 'list-aliases', factor out get_aliases
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / scripts / cli.py
1
2 import os.path, re, sys
3 from twisted.python import usage
4 from allmydata.scripts.common import BaseOptions, get_aliases
5
6 NODEURL_RE=re.compile("http://([^:]*)(:([1-9][0-9]*))?")
7
8 class VDriveOptions(BaseOptions, usage.Options):
9     optParameters = [
10         ["node-directory", "d", "~/.tahoe",
11          "Look here to find out which Tahoe node should be used for all "
12          "operations. The directory should either contain a full Tahoe node, "
13          "or a file named node.url which points to some other Tahoe node. "
14          "It should also contain a file named root_dir.cap which contains "
15          "the root dirnode URI that should be used."
16          ],
17         ["node-url", "u", None,
18          "URL of the tahoe node to use, a URL like \"http://127.0.0.1:8123\". "
19          "This overrides the URL found in the --node-directory ."],
20         ["dir-cap", "r", None,
21          "Which dirnode URI should be used as the 'tahoe' alias."]
22         ]
23
24     def postOptions(self):
25         # compute a node-url from the existing options, put in self['node-url']
26         if self['node-directory']:
27             if sys.platform == 'win32' and self['node-directory'] == '~/.tahoe':
28                 from allmydata.windows import registry
29                 self['node-directory'] = registry.get_base_dir_path()
30             else:
31                 self['node-directory'] = os.path.expanduser(self['node-directory'])
32         if self['node-url']:
33             if (not isinstance(self['node-url'], basestring)
34                 or not NODEURL_RE.match(self['node-url'])):
35                 msg = ("--node-url is required to be a string and look like "
36                        "\"http://HOSTNAMEORADDR:PORT\", not: %r" %
37                        (self['node-url'],))
38                 raise usage.UsageError(msg)
39         else:
40             node_url_file = os.path.join(self['node-directory'], "node.url")
41             self['node-url'] = open(node_url_file, "r").read().strip()
42
43         aliases = get_aliases(self['node-directory'])
44         if self['dir-cap']:
45             aliases["tahoe"] = self['dir-cap']
46         self.aliases = aliases # maps alias name to dircap
47
48
49 class MakeDirectoryOptions(VDriveOptions):
50     def parseArgs(self, where=""):
51         self.where = where
52     longdesc = """Create a new directory, either unlinked or as a subdirectory."""
53
54 class AddAliasOptions(VDriveOptions):
55     def parseArgs(self, alias, cap):
56         self.alias = alias
57         self.cap = cap
58
59 class ListAliasOptions(VDriveOptions):
60     pass
61
62 class ListOptions(VDriveOptions):
63     optFlags = [
64         ("long", "l", "Use long format: show file sizes, and timestamps"),
65         ("uri", "u", "Show file/directory URIs"),
66         ("readonly-uri", None, "Show readonly file/directory URIs"),
67         ("classify", "F", "Append '/' to directory names, and '*' to mutable"),
68         ("json", None, "Show the raw JSON output"),
69         ]
70     def parseArgs(self, where=""):
71         self.where = where
72
73     longdesc = """List the contents of some portion of the virtual drive."""
74
75 class GetOptions(VDriveOptions):
76     def parseArgs(self, arg1, arg2=None):
77         # tahoe get FOO |less            # write to stdout
78         # tahoe get tahoe:FOO |less      # same
79         # tahoe get FOO bar              # write to local file
80         # tahoe get tahoe:FOO bar        # same
81
82         self.from_file = arg1
83         self.to_file = arg2
84         if self.to_file == "-":
85             self.to_file = None
86
87     def getSynopsis(self):
88         return "%s get VDRIVE_FILE LOCAL_FILE" % (os.path.basename(sys.argv[0]),)
89
90     longdesc = """Retrieve a file from the virtual drive and write it to the
91     local filesystem. If LOCAL_FILE is omitted or '-', the contents of the file
92     will be written to stdout."""
93
94 class PutOptions(VDriveOptions):
95     optFlags = [
96         ("mutable", "m", "Create a mutable file instead of an immutable one."),
97         ]
98
99     def parseArgs(self, arg1=None, arg2=None):
100         # cat FILE > tahoe put           # create unlinked file from stdin
101         # cat FILE > tahoe put FOO       # create tahoe:FOO from stdin
102         # cat FILE > tahoe put tahoe:FOO # same
103         # tahoe put bar FOO              # copy local 'bar' to tahoe:FOO
104         # tahoe put bar tahoe:FOO        # same
105
106         if arg1 is not None and arg2 is not None:
107             self.from_file = arg1
108             self.to_file = arg2
109         elif arg1 is not None and arg2 is None:
110             self.from_file = None
111             self.to_file = arg1
112         else:
113             self.from_file = arg1
114             self.to_file = arg2
115         if self.from_file == "-":
116             self.from_file = None
117
118     def getSynopsis(self):
119         return "%s put LOCAL_FILE VDRIVE_FILE" % (os.path.basename(sys.argv[0]),)
120
121     longdesc = """Put a file into the virtual drive (copying the file's
122     contents from the local filesystem). LOCAL_FILE is required to be a
123     local file (it can't be stdin)."""
124
125 class RmOptions(VDriveOptions):
126     def parseArgs(self, where):
127         self.where = where
128
129     def getSynopsis(self):
130         return "%s rm VE_FILE" % (os.path.basename(sys.argv[0]),)
131
132 class MvOptions(VDriveOptions):
133     def parseArgs(self, frompath, topath):
134         self.from_file = frompath
135         self.to_file = topath
136
137     def getSynopsis(self):
138         return "%s mv FROM TO" % (os.path.basename(sys.argv[0]),)
139
140 class LnOptions(VDriveOptions):
141     def parseArgs(self, frompath, topath):
142         self.from_file = frompath
143         self.to_file = topath
144
145     def getSynopsis(self):
146         return "%s ln FROM TO" % (os.path.basename(sys.argv[0]),)
147
148 class WebopenOptions(VDriveOptions):
149     def parseArgs(self, vdrive_pathname=""):
150         self['vdrive_pathname'] = vdrive_pathname
151
152     longdesc = """Opens a webbrowser to the contents of some portion of the virtual drive."""
153
154 class ReplOptions(usage.Options):
155     pass
156
157 subCommands = [
158     ["mkdir", None, MakeDirectoryOptions, "Create a new directory"],
159     ["add-alias", None, AddAliasOptions, "Add a new alias cap"],
160     ["list-aliases", None, ListAliasOptions, "List all alias caps"],
161     ["ls", None, ListOptions, "List a directory"],
162     ["get", None, GetOptions, "Retrieve a file from the virtual drive."],
163     ["put", None, PutOptions, "Upload a file into the virtual drive."],
164     ["rm", None, RmOptions, "Unlink a file or directory in the virtual drive."],
165     ["mv", None, MvOptions, "Move a file within the virtual drive."],
166     ["ln", None, LnOptions, "Make an additional link to an existing file."],
167     ["webopen", None, WebopenOptions, "Open a webbrowser to the root_dir"],
168     ["repl", None, ReplOptions, "Open a python interpreter"],
169     ]
170
171 def mkdir(config, stdout, stderr):
172     from allmydata.scripts import tahoe_mkdir
173     rc = tahoe_mkdir.mkdir(config['node-url'],
174                            config.aliases,
175                            config.where,
176                            stdout, stderr)
177     return rc
178
179 def add_alias(config, stdout, stderr):
180     from allmydata.scripts import tahoe_add_alias
181     rc = tahoe_add_alias.add_alias(config['node-directory'],
182                                    config.alias,
183                                    config.cap,
184                                    stdout, stderr)
185     return rc
186
187 def list_aliases(config, stdout, stderr):
188     from allmydata.scripts import tahoe_add_alias
189     rc = tahoe_add_alias.list_aliases(config['node-directory'],
190                                       stdout, stderr)
191     return rc
192
193 def list(config, stdout, stderr):
194     from allmydata.scripts import tahoe_ls
195     rc = tahoe_ls.list(config['node-url'],
196                        config.aliases,
197                        config.where,
198                        config,
199                        stdout, stderr)
200     return rc
201
202 def get(config, stdout, stderr):
203     from allmydata.scripts import tahoe_get
204     rc = tahoe_get.get(config['node-url'],
205                        config.aliases,
206                        config.from_file,
207                        config.to_file,
208                        stdout, stderr)
209     if rc == 0:
210         if config.to_file is None:
211             # be quiet, since the file being written to stdout should be
212             # proof enough that it worked, unless the user is unlucky
213             # enough to have picked an empty file
214             pass
215         else:
216             print >>stderr, "%s retrieved and written to %s" % \
217                   (config.from_file, config.to_file)
218     return rc
219
220 def put(config, stdout, stderr, stdin=sys.stdin):
221     from allmydata.scripts import tahoe_put
222     if config['quiet']:
223         verbosity = 0
224     else:
225         verbosity = 2
226     rc = tahoe_put.put(config['node-url'],
227                        config.aliases,
228                        config.from_file,
229                        config.to_file,
230                        config['mutable'],
231                        verbosity,
232                        stdin, stdout, stderr)
233     return rc
234
235 def rm(config, stdout, stderr):
236     from allmydata.scripts import tahoe_rm
237     if config['quiet']:
238         verbosity = 0
239     else:
240         verbosity = 2
241     rc = tahoe_rm.rm(config['node-url'],
242                      config.aliases,
243                      config.where,
244                      verbosity,
245                      stdout, stderr)
246     return rc
247
248 def mv(config, stdout, stderr):
249     from allmydata.scripts import tahoe_mv
250     rc = tahoe_mv.mv(config['node-url'],
251                      config.aliases,
252                      config.from_file,
253                      config.to_file,
254                      stdout, stderr,
255                      mode="move")
256     return rc
257
258 def ln(config, stdout, stderr):
259     from allmydata.scripts import tahoe_mv
260     rc = tahoe_mv.mv(config['node-url'],
261                      config.aliases,
262                      config.from_file,
263                      config.to_file,
264                      stdout, stderr,
265                      mode="link")
266     return rc
267
268 def webopen(config, stdout, stderr):
269     import urllib, webbrowser
270     nodeurl = config['node-url']
271     if nodeurl[-1] != "/":
272         nodeurl += "/"
273     url = nodeurl + "uri/%s/" % urllib.quote(config['dir-cap'])
274     if config['vdrive_pathname']:
275         url += urllib.quote(config['vdrive_pathname'])
276     webbrowser.open(url)
277     return 0
278
279 def repl(config, stdout, stderr):
280     import code
281     return code.interact()
282
283 dispatch = {
284     "mkdir": mkdir,
285     "add-alias": add_alias,
286     "list-aliases": list_aliases,
287     "ls": list,
288     "get": get,
289     "put": put,
290     "rm": rm,
291     "mv": mv,
292     "ln": ln,
293     "webopen": webopen,
294     "repl": repl,
295     }
296