-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontrol_server.py
229 lines (197 loc) · 7.98 KB
/
control_server.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
import hashlib
import hmac
import json
import os.path
import time
import uuid
from flask import Flask, request, abort, jsonify
from common import file, console
from manage import post_manage, build_rss, get
app = Flask(__name__)
api_version = 3
version = "v2"
password_error_counter = 0
total_error_counter = 0
error_time = 0
submit_lock = False
sign_list = dict()
console.log("Info", "Loading configuration...")
system_config = json.loads(file.read_file("./config/system.json"))
control_config = json.loads(file.read_file("./config/control.json"))
password = control_config["password"]
console.log("Success", "load the configuration file successfully!")
def get_index(post_list, post_uuid):
for item in post_list:
if "uuid" in item and item["uuid"] == post_uuid:
return post_list.index(item)
abort(404)
def sec_to_ms(timestamp):
return int(round(timestamp * 1000))
def convert_timestamp(item):
item["time"] = sec_to_ms(item["time"])
return item
def check_password(content, sign, send_time):
global password_error_counter, error_time, submit_lock, total_error_counter, sign_list
timestamp = time.time()
timestamp_ms = sec_to_ms(timestamp)
elapsed_time = timestamp_ms - send_time
if elapsed_time > 300000 or elapsed_time < -300000:
console.log("Error",
"Token expired. Time delta between now and expected timestamp is {} ms.".format(elapsed_time))
abort(408)
if password_error_counter >= 5:
submit_lock = True
if total_error_counter <= 10:
total_error_counter += 1
password_error_counter = 0
error_time = timestamp + (120 * total_error_counter)
if submit_lock:
if error_time < timestamp:
submit_lock = False
if error_time >= timestamp:
console.log("Error", "Too many invalid password attempts.")
abort(403)
for item in list(sign_list.keys()):
if sign_list[item] < (int(timestamp) + 300):
del sign_list[item]
if sign in sign_list:
console.log("Error", "Request is rejected since the signature has already been used.")
abort(403)
hash_sign = hmac.new(str(password + str(send_time)).encode('utf-8'), str(content).encode('utf-8'),
digestmod=hashlib.sha512).hexdigest()
if sign == hash_sign:
sign_list[sign] = int(timestamp)
password_error_counter = 0
total_error_counter = 0
return True
console.log("Error", "Hash error.")
password_error_counter += 1
return False
def select_type(request_type):
file_url = None
if request_type == "post":
file_url = "./config/page.json"
if request_type == "menu":
file_url = "./config/menu.json"
return file_url
@app.route('/control/system_info', strict_slashes=False, methods=['GET', 'POST'])
def get_system_info():
result = dict()
result["project_name"] = system_config["Project_Name"]
result["project_description"] = system_config["Project_Description"]
result["author_image"] = system_config["Author_Image"]
result["author_name"] = system_config["Author_Name"]
result["author_introduction"] = system_config["Author_Introduction"]
result["api_version"] = api_version
return jsonify(result)
@app.route('/control/' + version + '/get/list/<request_type>', strict_slashes=False, methods=['GET', 'POST'])
def get_post_list(request_type):
file_url = select_type(request_type)
if file_url is None:
abort(404)
result_list = json.loads(file.read_file(file_url))
if request_type == "post":
result_list = list(map(convert_timestamp, result_list))
return jsonify(result_list)
@app.route('/control/' + version + '/get/content/<request_type>', strict_slashes=False, methods=['POST'])
def get_content(request_type):
file_url = select_type(request_type)
if file_url is None:
abort(404)
if request.json is None:
abort(400)
page_list = json.loads(file.read_file(file_url))
post_uuid = str(request.json["post_uuid"])
post_index = get_index(page_list, post_uuid)
result = dict()
result["title"] = page_list[post_index]["title"]
result["name"] = page_list[post_index]["name"]
result["content"] = file.read_file("./document/{0}.md".format(page_list[post_index]["name"]))
return jsonify(result)
@app.route('/control/' + version + '/edit/<request_type>', strict_slashes=False, methods=['POST'])
def edit(request_type):
file_url = select_type(request_type)
is_menu = False
if request_type == "menu":
is_menu = True
if file_url is None:
abort(404)
if request.json is None:
abort(400)
page_list = json.loads(file.read_file(file_url))
post_uuid = str(request.json["post_uuid"])
post_index = get_index(page_list, post_uuid)
name = str(request.json["name"]).replace('/', "").strip()
title = str(request.json["title"]).strip()
content = str(request.json["content"])
sign = str(request.json["sign"])
send_time = int(request.json["send_time"])
status = False
hash_content = post_uuid + title + name + hashlib.sha512(str(content).encode('utf-8')).hexdigest()
if check_password(hash_content, sign, send_time):
status = True
config = {"name": name, "title": title}
post_manage.edit_post(page_list, post_index, config, None, is_menu)
file.write_file("./document/{0}.md".format(name), content)
post_manage.update_post()
build_rss.build_rss()
result = {"status": status, "name": name}
return jsonify(result)
@app.route('/control/' + version + '/delete', strict_slashes=False, methods=['POST'])
def delete():
if request.json is None:
abort(400)
page_list = json.loads(file.read_file("./config/page.json"))
post_uuid = str(request.json["post_uuid"])
post_index = get_index(page_list, post_uuid)
sign = str(request.json["sign"])
send_time = int(request.json["send_time"])
status = False
hash_content = page_list[post_index]["uuid"] + page_list[post_index]["title"] + page_list[post_index]["name"]
if check_password(hash_content, sign, send_time):
status = True
post_manage.delete_post(page_list, post_index)
build_rss.build_rss()
result = {"status": status}
return jsonify(result)
@app.route('/control/' + version + '/new', strict_slashes=False, methods=['POST'])
def create_post():
if request.json is None:
abort(400)
title = str(request.json["title"]).strip()
name = str(request.json["name"]).replace('/', "").strip()
content = str(request.json["content"])
sign = str(request.json["sign"])
send_time = int(request.json["send_time"])
status = False
hash_content = title + name + hashlib.sha512(str(content).encode('utf-8')).hexdigest()
post_uuid = ""
if check_password(hash_content, sign, send_time):
if len(name) == 0:
pinyin = True
if 'Pinyin' in system_config:
pinyin = system_config["Pinyin"]
name = get.get_name(title, pinyin)
while os.path.exists("./document/{0}.md".format(name)):
name = "{}-repeat".format(name)
post_uuid = str(uuid.uuid5(uuid.NAMESPACE_URL, name))
file.write_file("./document/{0}.md".format(name), content)
config = {"title": title, "name": name, "uuid": post_uuid}
post_manage.new_post(config)
status = True
build_rss.build_rss()
result = {"status": status, "name": name, "uuid": post_uuid}
return jsonify(result)
@app.route("/control/" + version + "/git_page_publish", strict_slashes=False, methods=['POST'])
def git_publish():
status = False
sign = str(request.json["sign"])
send_time = int(request.json["send_time"])
if check_password("git_page_publish", sign, send_time):
from manage import build_static_page
status = build_static_page.publish()
result = {"status": status}
return jsonify(result)
@app.route('/control/', strict_slashes=False, methods=['OPTIONS'])
def get_204():
abort(204)