forked from NetEaseGame/git-webhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.py
150 lines (119 loc) · 4.06 KB
/
manage.py
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
# -*- coding: utf-8 -*-
'''
Created on 2016-11-23
@author: hustcc
'''
import subprocess
import sys
from flask_script import Manager, Command, Server as _Server, Option
from app import SQLAlchemyDB as db, socketio, app, __version__
import os
import shutil
manager = Manager(app)
class Server(_Server):
help = description = 'Runs the Git-WebHook web server'
def get_options(self):
options = (
Option('-h', '--host',
dest='host',
default='0.0.0.0'),
Option('-p', '--port',
dest='port',
type=int,
default=18340),
Option('-d', '--debug',
action='store_true',
dest='use_debugger',
help=('enable the Werkzeug debugger (DO NOT use in '
'production code)'),
default=self.use_debugger),
Option('-D', '--no-debug',
action='store_false',
dest='use_debugger',
help='disable the Werkzeug debugger',
default=self.use_debugger),
Option('-r', '--reload',
action='store_true',
dest='use_reloader',
help=('monitor Python files for changes (not 100%% safe '
'for production use)'),
default=self.use_reloader),
Option('-R', '--no-reload',
action='store_false',
dest='use_reloader',
help='do not monitor Python files for changes',
default=self.use_reloader),
)
return options
def __call__(self, app, host, port, use_debugger, use_reloader):
# override the default runserver command to start a Socket.IO server
if use_debugger is None:
use_debugger = app.debug
if use_debugger is None:
use_debugger = True
if use_reloader is None:
use_reloader = app.debug
import eventlet
# monkey_patch
eventlet.monkey_patch()
socketio.run(app,
host=host,
port=port,
debug=use_debugger,
use_reloader=use_reloader,
**self.server_options)
manager.add_command("runserver", Server())
class CeleryWorker(Command):
"""Starts the celery worker."""
name = 'celery'
capture_all_args = True
def run(self, argv):
cmd = ['celery', '-A', 'app.celeryInstance', 'worker'] + argv
ret = subprocess.call(cmd)
sys.exit(ret)
manager.add_command("celery", CeleryWorker())
class Config(Command):
"""Generates new configuration file into user Home dir."""
name = 'config'
capture_all_args = True
def run(self, argv):
dir = os.path.join(os.path.expanduser('~'), '.git-webhook')
if not os.path.exists(dir):
os.makedirs(dir)
# default dir is user HOME
# if argv and len(argv) > 0:
# dir = argv[0]
# copy app/git_webhook_config.py into dir
if os.path.isdir(dir):
path = os.path.join(dir, 'git_webhook_config.py')
if os.path.exists(path):
print('Fail: the configuration file exist in `%s`.' % path)
else:
shutil.copy('app/config_example.py', path)
print('OK: init configuration file into `%s`.' % path)
else:
print('Fail: %s should be directory.' % dir)
manager.add_command("config", Config())
@manager.command
def createdb(drop_first=False):
"""Creates the database."""
if drop_first:
db.drop_all()
db.create_all()
print('OK: database is initialed.')
@manager.command
def lint():
"""Runs code linter."""
lint = subprocess.call(['flake8']) == 0
if lint:
print('OK')
sys.exit(lint)
@manager.command
def version():
"Shows the version"
print __version__
# script entry
def run():
manager.run()
if __name__ == '__main__':
manager.run()