chiark / gitweb /
make `fdroid server` check whether serverwebroot is set
[fdroidserver.git] / fdroidserver / server.py
1 #!/usr/bin/env python2
2 # -*- coding: utf-8 -*-
3 #
4 # server.py - part of the FDroid server tools
5 # Copyright (C) 2010-13, Ciaran Gultnieks, ciaran@ciarang.com
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU Affero General Public License for more details.
16 #
17 # You should have received a copy of the GNU Affero General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 import sys
21 import os
22 import subprocess
23 from optparse import OptionParser
24 import logging
25 import common
26
27 config = None
28 options = None
29
30
31 def main():
32
33     global config, options
34
35     # Parse command line...
36     parser = OptionParser()
37     parser.add_option("-v", "--verbose", action="store_true", default=False,
38                       help="Spew out even more information than normal")
39     parser.add_option("-q", "--quiet", action="store_true", default=False,
40                       help="Restrict output to warnings and errors")
41     (options, args) = parser.parse_args()
42
43     config = common.read_config(options)
44
45     if len(args) != 1:
46         logging.critical("Specify a single command")
47         sys.exit(1)
48
49     if args[0] != 'init' and args[0] != 'update':
50         logging.critical("The only commands currently supported are 'init' and 'update'")
51         sys.exit(1)
52
53     if 'serverwebroot' in config:
54         serverwebroot = config['serverwebroot'].rstrip('/').replace('//', '/')
55         host, fdroiddir = serverwebroot.split(':')
56         serverrepobase = os.path.basename(fdroiddir)
57         if serverrepobase != 'fdroid' and standardwebroot:
58             logging.error('serverwebroot does not end with "fdroid", '
59                           + 'perhaps you meant one of these:\n\t'
60                           + serverwebroot.rstrip('/') + '/fdroid\n\t'
61                           + serverwebroot.rstrip('/').rstrip(serverrepobase) + 'fdroid')
62             sys.exit(1)
63     else:
64         serverwebroot = None
65     if 'nonstandardwebroot' in config and config['nonstandardwebroot'] == True:
66         standardwebroot = False
67     else:
68         standardwebroot = True
69
70     repodirs = ['repo']
71     if config['archive_older'] != 0:
72         repodirs.append('archive')
73
74     for repodir in repodirs:
75         if args[0] == 'init':
76             if serverwebroot == None:
77                 logging.warn('No serverwebroot set! Edit your config.py to set it.')
78             elif subprocess.call(['ssh', '-v', host,
79                                 'mkdir -p', fdroiddir + '/' + repodir]) != 0:
80                 sys.exit(1)
81         elif args[0] == 'update':
82             if serverwebroot != None:
83                 index = os.path.join(repodir, 'index.xml')
84                 indexjar = os.path.join(repodir, 'index.jar')
85                 if subprocess.call(['rsync', '-u', '-v', '-r', '--delete',
86                                     '--exclude', index, '--exclude', indexjar,
87                                     repodir, config['serverwebroot']]) != 0:
88                     sys.exit(1)
89                 if subprocess.call(['rsync', '-u', '-v', '-r', '--delete',
90                                     index,
91                                     config['serverwebroot'] + '/' + repodir]) != 0:
92                     sys.exit(1)
93                 if subprocess.call(['rsync', '-u', '-v', '-r', '--delete',
94                                     indexjar,
95                                     config['serverwebroot'] + '/' + repodir]) != 0:
96                     sys.exit(1)
97
98     sys.exit(0)
99
100 if __name__ == "__main__":
101     main()