]> scripts.mit.edu Git - wizard.git/blob - wizard/command/install.py
Convert ad hoc shell calls to singleton instance; fix upgrade bug.
[wizard.git] / wizard / command / install.py
1 import os
2 import sys
3 import distutils
4
5 import wizard
6 from wizard import app, command, git, prompt, shell, util
7 from wizard.install import installopt, interactive
8
9 def main(argv, baton):
10     old_options, args = parse_args(argv, baton)
11
12     input = prompt.make(old_options.prompt, old_options.non_interactive)
13
14     appstr = args[0]
15     dir = os.path.abspath(args[1])
16
17     if not old_options.retry and not old_options.help and os.path.exists(dir) and os.listdir(dir):
18         raise DirectoryExistsError
19
20     appname, _, version = appstr.partition('-')
21     application = app.applications()[appname]
22
23     # get configuration
24     schema = application.install_schema
25     schema.commit(application, dir)
26     options = None
27     opthandler = installopt.Controller(dir, schema)
28     parser = command.WizardOptionParser("""usage: %%prog install %s DIR [ -- SETUPARGS ]
29
30 Autoinstalls the application %s in the directory DIR.""" % (appname, appname))
31     configure_parser(parser, baton)
32     opthandler.push(parser)
33     if old_options.help:
34         parser.print_help()
35         sys.exit(1)
36     ihandler = interactive.Controller(dir, schema, input)
37     options, _ = parser.parse_all(args[2:] + command.make_base_args(old_options))
38     if old_options.non_interactive:
39         opthandler.handle(options)
40     else:
41         ihandler.ask(options)
42
43     input.infobox("Copying files (this may take a while)...")
44     if not os.path.exists(dir):
45         shell.call("git", "clone", "-q", "--shared", application.repository(old_options.srv_path), dir)
46     with util.ChangeDirectory(dir):
47         if not old_options.retry and version and version != "head-scripts": # for ease in testing
48             shell.call("git", "reset", "-q", "--hard", appstr)
49         input.infobox("Installing...")
50         application.install(distutils.version.LooseVersion(version), options)
51         if not old_options.no_commit:
52             git.commit_configure()
53     if not hasattr(options, "web_inferred"):
54         open(os.path.join(dir, ".scripts/url"), "w").write("http://%s%s" % (options.web_host, options.web_path)) # XXX: no support for https yet!
55     input.infobox("Congratulations, your new install is now accessible at:\n\nhttp://%s%s" % (options.web_host, options.web_path), width=80)
56
57 def configure_parser(parser, baton):
58     parser.add_option("--prompt", dest="prompt", action="store_true",
59             default=False, help="Force to use non-ncurses interactive interface")
60     parser.add_option("--non-interactive", dest="non_interactive", action="store_true",
61             default=False, help="Force program to be non-interactive and use SETUPARGS.  Use --help with APP to find argument names.")
62     parser.add_option("--no-commit", dest="no_commit", action="store_true",
63             default=command.boolish(os.getenv("WIZARD_NO_COMMIT")), help="Do not generate an 'installation commit' after configuring the application. Envvar is WIZARD_NO_COMMIT")
64     parser.add_option("--retry", dest="retry", action="store_true",
65             default=False, help="Do not complain if directory already exists and reinstall application.")
66     baton.push(parser, "srv_path")
67
68 def parse_args(argv, baton):
69     usage = """usage: %prog install APP DIR [ -- SETUPARGS ]
70
71 Autoinstalls the application APP in the directory DIR.
72 This command will interactively ask for information to
73 complete the autoinstall.
74
75 You can also use --help with APP and DIR to find out what
76 are required SETUPARGS if you want to run this non-interactively
77 (the distribution of required and optional arguments may change
78 depending on what directory you are installing to.)"""
79     parser = command.WizardOptionParser(usage, store_help=True)
80     configure_parser(parser, baton)
81     options, args = parser.parse_all(argv)
82     if options.help:
83         if len(args) == 0:
84             parser.print_help()
85             sys.exit(1)
86         elif len(args) == 1:
87             args.append(os.getcwd())
88     else:
89         if len(args) < 2:
90             parser.error("not enough arguments")
91     return options, args
92
93 class DirectoryExistsError(wizard.Error):
94     def __str__(self):
95         return "Directory already exists and is not empty"