-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathictv-webapp
67 lines (58 loc) · 2.68 KB
/
ictv-webapp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# This file belongs to the ICTV project, written by Nicolas Detienne,
# Francois Michel, Maxime Piraux, Pierre Reinbold and Ludovic Taffin
# at Université catholique de Louvain.
#
# Copyright (C) 2016-2018 Université catholique de Louvain (UCL, Belgium)
#
# ICTV is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ICTV is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with ICTV. If not, see <http://www.gnu.org/licenses/>.
import argparse
import os
from ictv import database
from ictv.app import main, get_config
from ictv.database import update_database
""" Starts the webapp. """
class RawUsageHelpFormatter(argparse.HelpFormatter):
""" Keeps the compatibility with web.py app.run way of setting ip address and port from command line. """
def _format_usage(self, usage, actions, groups, prefix):
if prefix is None:
prefix = 'usage: '
if usage is not None:
usage = usage % dict(prog=self._prog)
elif usage is None and not actions:
usage = '%(prog)s' % dict(prog=self._prog)
elif usage is None:
prog = '%(prog)s' % dict(prog=self._prog)
format = self._format_actions_usage
action_usage = format(actions, groups)
usage = ' '.join([s for s in [prog, action_usage] if s])
return '%s%s\n\n' % (prefix, usage)
if __name__ == '__main__':
parser = argparse.ArgumentParser(formatter_class=RawUsageHelpFormatter)
parser.add_argument('address_port', default='0.0.0.0:8080',
help='Address and port to bind the webapp to. Defaults to: 0.0.0.0:8080')
parser.add_argument('--config', help='Path to configuration file. Defaults to: configuration.yaml')
args = parser.parse_args()
config_file = args.config
if not config_file:
config_file = os.path.join(os.path.dirname(__file__), 'configuration.yaml')
if not os.path.isfile(config_file):
raise Exception('File %s could not be found', config_file)
config = get_config(config_file)
if database.database_path is None:
database.database_path = config['database_uri']
update_database()
main(config_file, args.address_port)