This repository was archived by the owner on Feb 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.py
176 lines (135 loc) · 4.39 KB
/
main.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#coding=utf-8
from datetime import datetime
import json
import web
import sqlite3
from configs import db
from configs import setting
import util
__author__ = 'Administrator'
urls = (
'/push', 'push',
'/', 'index',
'/favicon.ico', 'faviconICO',
'/install', 'install',
'/add', 'add',
'/del', 'delete',
'/execute', 'execute',
'/history/(\d+)', 'history',
'/detail/(\d+)', 'detail',
'/get_cur_log', 'cur_log'
)
app = web.application(urls, globals())
render = web.template.render(setting.CUR_DIR % 'templates/', base='base')
render_without_base = web.template.render(setting.CUR_DIR % 'templates/')
def notfound():
return web.notfound(render_without_base.error('404!'))
def internalerror():
return web.internalerror(render_without_base.error('500!'))
application = app
application.notfound = app.notfound = notfound
application.internalerror = app.internalerror = internalerror
application = app.wsgifunc()
class faviconICO(object):
def GET(self):
return web.seeother('/static/images/favicon.ico')
class index:
def GET(self):
conn = sqlite3.connect(db.DB)
cur = conn.cursor()
cur.execute(db.SELECT_JOB)
jobs = []
for job in cur:
state = job[0]
state_text = setting.STATUS[int(job[0])]
name = job[1]
url = job[2]
exe_time = job[3]
id = job[4]
dic_job = {'state': state, 'state_text': state_text, 'name': name, 'url': url,
'exe_time': exe_time, 'id': id}
jobs.append(dic_job)
return render.index(jobs)
class push:
def POST(self):
exe_time = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
data = web.input()
data = json.loads(data.payload)
url = data['repository']['url']
util.execute('url', url, exe_time)
return ''
class install:
def GET(self):
conn = sqlite3.connect(db.DB)
conn.execute(db.CREATE_JOB_SQL)
conn.execute(db.CREATE_QUEUE_SQL)
conn.execute(db.CREATE_LOG_SQL)
conn.close()
return web.seeother('/')
class add:
def GET(self):
return render.add()
def POST(self):
data = web.input()
url = data.url
name = url[url.rfind('/') + 1:]
dir = data.dir
conn = sqlite3.connect(db.DB)
conn.execute(db.INSERT_TO_JOB % (setting.STATE_WAITING, name, dir, url))
conn.commit()
conn.close()
return web.seeother('/')
class delete:
def POST(self):
data = web.input()
job_id = data.id
conn = sqlite3.connect(db.DB)
conn.execute(db.DELETE_JOB % int(job_id))
conn.execute(db.DELETE_LOG % int(job_id))
conn.commit()
conn.close()
return setting.STR_STATUS_SUCCESS
class execute:
def POST(self):
exe_time = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
dic_ret = {'state': setting.STATE_FAIL, 'msg': setting.STATUS[int(setting.STATE_FAIL)], 'exe_time': exe_time}
data = web.input()
job_id = data.id
state = util.execute('id', job_id, exe_time)
dic_ret['msg'] = setting.STATUS[int(state)]
dic_ret['state'] = state
return json.dumps(dic_ret)
class history:
def GET(self, job_id=0):
conn = sqlite3.connect(db.DB)
cur = conn.cursor()
cur.execute(db.SELECT_LOG % int(job_id))
list_his = cur.fetchall()
list_dic = []
if len(list_his):
for his in list_his:
dic = {'id': his[0], 'exe_time': his[1], 'state': his[2], 'state_text': setting.STATUS[int(his[2])]}
list_dic.append(dic)
return render.history(list_dic)
class detail:
def GET(self, log_id=0):
conn = sqlite3.connect(db.DB)
cur = conn.cursor()
cur.execute(db.SELECT_LOG_CONTENT_BY_ID % int(log_id))
list_log = cur.fetchall()
if len(list_log):
log = list_log[0][0]
return render.detail(log)
class cur_log:
def GET(self):
conn = sqlite3.connect(db.DB)
cur = conn.cursor()
cur.execute(db.SELECT_TOP10_LOG)
list_dic = []
for log in cur:
name, exe_time, log_id = log
dic = {'name': name, 'log_id': log_id, 'exe_time': exe_time}
list_dic.append(dic)
return json.dumps(list_dic)
if __name__ == '__main__':
app.run()