forked from nosmokingbandit/watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwatcher.py
More file actions
158 lines (136 loc) · 5.42 KB
/
watcher.py
File metadata and controls
158 lines (136 loc) · 5.42 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
import argparse
import logging
import os
import ssl
import sys
import webbrowser
sys.path.insert(0, os.path.join(os.path.dirname(os.path.realpath(__file__)), 'lib'))
import cherrypy
import core
from cherrypy.process.plugins import Daemonizer, PIDFile
from core import api, config, postprocessing, scheduler, sqldb
from core.app import App
from core.log import log
if os.name == 'nt':
from core.plugins import systray
MIN_PYTHON = (2, 7, 9)
if sys.version_info < MIN_PYTHON:
sys.stderr.write("Python 2.7.9 or later is required \n")
sys.exit(1)
core.PROG_PATH = os.path.dirname(os.path.realpath(__file__))
os.chdir(core.PROG_PATH)
if __name__ == '__main__':
ssl._create_default_https_context = ssl._create_unverified_context
# parse user-passed arguments
parser = argparse.ArgumentParser(description="Watcher Server App")
parser.add_argument('-d', '--daemon', help='Run the server as a daemon.',
action='store_true')
parser.add_argument('-a', '--address', help='Network address to bind to.')
parser.add_argument('-p', '--port', help='Port to bind to.', type=int)
parser.add_argument('-b', '--browser', help='Open browser on launch.',
action='store_true')
parser.add_argument('-c', '--conf', help='Location of config file.',
type=str)
parser.add_argument('-l', '--log',
help='Directory in which to create log files.', type=str)
parser.add_argument('--db',
help='Absolute path to database file.', type=str)
parser.add_argument('--pid',
help='Directory in which to store pid file.', type=str)
passed_args = parser.parse_args()
if passed_args.pid:
PIDFile(cherrypy.engine, passed_args.pid).subscribe()
# Set up conf file
if passed_args.conf:
core.CONF_FILE = passed_args.conf
if passed_args.log:
core.LOG_DIR = passed_args.log
# set up config file on first launch
conf = config.Config()
if not os.path.isfile(core.CONF_FILE):
print u'Config file not found. Creating new basic config {}. ' \
'Please review settings.'.format(core.CONF_FILE)
conf.new_config()
else:
print 'Config file found, merging any new options.'
conf.merge_new_options()
conf.stash()
# Set up logging
if passed_args.log:
core.LOG_DIR = passed_args.log
log.start(core.LOG_DIR)
logging = logging.getLogger(__name__)
cherrypy.log.error_log.propagate = True
cherrypy.log.access_log.propagate = False
# Set up server
if passed_args.address:
core.SERVER_ADDRESS = passed_args.address
else:
core.SERVER_ADDRESS = str(core.CONFIG['Server']['serverhost'])
if passed_args.port:
core.SERVER_PORT = passed_args.port
else:
core.SERVER_PORT = int(core.CONFIG['Server']['serverport'])
# set up db on first launch, check for updates afterward
if passed_args.db:
core.DB_FILE = passed_args.db
else:
core.DB_FILE = os.path.join(core.PROG_PATH, core.DB_FILE)
sql = sqldb.SQL()
if not os.path.isfile(core.DB_FILE):
logging.info(u'SQL DB not found. Creating.')
sql = sqldb.SQL()
sql.create_database()
else:
logging.info(u'SQL DB found.')
print 'Database found.'
sql.update_tables()
del sql
# mount and configure applications
if core.CONFIG['Proxy']['behindproxy'] == 'true':
core.URL_BASE = core.CONFIG['Proxy']['webroot']
root = cherrypy.tree.mount(App(),
'{}/'.format(core.URL_BASE),
'core/conf_app.ini'
)
cherrypy.tree.mount(api.API(),
'{}/api'.format(core.URL_BASE),
'core/conf_api.ini'
)
cherrypy.tree.mount(postprocessing.Postprocessing(),
'{}/postprocessing'.format(core.URL_BASE),
'core/conf_postprocessing.ini'
)
cherrypy.tree.mount(App.auth,
'{}/auth'.format(core.URL_BASE),
'core/conf_auth.ini'
)
# if everything goes well so far, open the browser
if passed_args.browser or core.CONFIG['Server']['launchbrowser'] == 'true':
webbrowser.open("http://{}:{}{}".format(
core.SERVER_ADDRESS, core.SERVER_PORT, core.URL_BASE))
logging.info(u'Launching web browser.')
# daemonize in *nix if desired
if passed_args.daemon and os.name == 'posix':
Daemonizer(cherrypy.engine).subscribe()
# start engine
cherrypy.config.update('core/conf_global.ini')
cherrypy.engine.signals.subscribe()
cherrypy.engine.start()
# Create plugin instances and subscribe
scheduler_plugin = scheduler.Scheduler()
scheduler.AutoSearch.create()
scheduler.AutoUpdateCheck.create()
scheduler.AutoUpdateInstall.create()
scheduler.ImdbRssSync.create()
scheduler.PopularMoviesSync.create()
scheduler_plugin.plugin.subscribe()
# If windows os and daemon selected, start systray
if passed_args.daemon and os.name == 'nt':
systrayplugin = systray.SysTrayPlugin(cherrypy.engine)
systrayplugin.subscribe()
systrayplugin.start()
os.chdir(core.PROG_PATH) # have to do this for the daemon
# finish by blocking
cherrypy.engine.block()
# pylama:ignore=E402