2022-01-26 21:10:09 +08:00
|
|
|
|
###########################################################################
|
|
|
|
|
# Copyright 2019 (C) Hui Lan <hui.lan@cantab.net>
|
|
|
|
|
# Written permission must be obtained from the author for commercial uses.
|
|
|
|
|
###########################################################################
|
2023-07-14 09:11:02 +08:00
|
|
|
|
from flask import abort
|
|
|
|
|
from markupsafe import escape
|
2022-01-26 21:10:09 +08:00
|
|
|
|
from Login import *
|
|
|
|
|
from Article import *
|
|
|
|
|
import Yaml
|
|
|
|
|
from user_service import userService
|
|
|
|
|
from account_service import accountService
|
2023-03-23 13:40:22 +08:00
|
|
|
|
from admin_service import adminService, ADMIN_NAME
|
2023-06-18 19:44:19 +08:00
|
|
|
|
import os
|
|
|
|
|
|
2022-01-26 21:10:09 +08:00
|
|
|
|
app = Flask(__name__)
|
2023-06-18 19:44:19 +08:00
|
|
|
|
app.secret_key = os.urandom(32)
|
2022-01-26 21:10:09 +08:00
|
|
|
|
|
|
|
|
|
# 将蓝图注册到Lab app
|
|
|
|
|
app.register_blueprint(userService)
|
|
|
|
|
app.register_blueprint(accountService)
|
2023-03-20 20:16:48 +08:00
|
|
|
|
app.register_blueprint(adminService)
|
2022-01-26 21:10:09 +08:00
|
|
|
|
|
|
|
|
|
path_prefix = '/var/www/wordfreq/wordfreq/'
|
|
|
|
|
path_prefix = './' # comment this line in deployment
|
|
|
|
|
|
|
|
|
|
def get_random_image(path):
|
|
|
|
|
'''
|
|
|
|
|
返回随机图
|
|
|
|
|
:param path: 图片文件(JPEG格式),不包含后缀名
|
|
|
|
|
:return:
|
|
|
|
|
'''
|
|
|
|
|
img_path = random.choice(glob.glob(os.path.join(path, '*.jpg')))
|
|
|
|
|
|
|
|
|
|
return img_path[img_path.rfind('/static'):]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_random_ads():
|
|
|
|
|
'''
|
|
|
|
|
返回随机广告
|
|
|
|
|
:return: 一个广告(包含HTML标签)
|
|
|
|
|
'''
|
2023-03-08 16:33:13 +08:00
|
|
|
|
return random.choice(['个性化分析精准提升', '你的专有单词本', '智能捕捉阅读弱点,针对性提高你的阅读水平'])
|
2022-01-26 21:10:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def appears_in_test(word, d):
|
|
|
|
|
'''
|
|
|
|
|
如果字符串里没有指定的单词,则返回逗号加单词
|
|
|
|
|
:param word: 指定单词
|
|
|
|
|
:param d: 字符串
|
|
|
|
|
:return: 逗号加单词
|
|
|
|
|
'''
|
|
|
|
|
if not word in d:
|
|
|
|
|
return ''
|
|
|
|
|
else:
|
|
|
|
|
return ','.join(d[word])
|
|
|
|
|
|
|
|
|
|
@app.route("/mark", methods=['GET', 'POST'])
|
|
|
|
|
def mark_word():
|
|
|
|
|
'''
|
|
|
|
|
标记单词
|
|
|
|
|
:return: 重定位到主界面
|
|
|
|
|
'''
|
|
|
|
|
if request.method == 'POST':
|
|
|
|
|
d = load_freq_history(path_prefix + 'static/frequency/frequency.p')
|
|
|
|
|
lst_history = pickle_idea.dict2lst(d)
|
|
|
|
|
lst = []
|
|
|
|
|
for word in request.form.getlist('marked'):
|
|
|
|
|
lst.append((word, 1))
|
|
|
|
|
d = pickle_idea.merge_frequency(lst, lst_history)
|
|
|
|
|
pickle_idea.save_frequency_to_pickle(d, path_prefix + 'static/frequency/frequency.p')
|
|
|
|
|
return redirect(url_for('mainpage'))
|
|
|
|
|
else: # 不回应GET请求
|
|
|
|
|
return 'Under construction'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@app.route("/", methods=['GET', 'POST'])
|
|
|
|
|
def mainpage():
|
|
|
|
|
'''
|
|
|
|
|
根据GET或POST方法来返回不同的主界面
|
|
|
|
|
:return: 主界面
|
|
|
|
|
'''
|
|
|
|
|
if request.method == 'POST': # when we submit a form
|
2022-07-29 15:22:42 +08:00
|
|
|
|
content = escape(request.form['content'])
|
2022-01-26 21:10:09 +08:00
|
|
|
|
f = WordFreq(content)
|
|
|
|
|
lst = f.get_freq()
|
|
|
|
|
# save history
|
|
|
|
|
d = load_freq_history(path_prefix + 'static/frequency/frequency.p')
|
|
|
|
|
lst_history = pickle_idea.dict2lst(d)
|
|
|
|
|
d = pickle_idea.merge_frequency(lst, lst_history)
|
|
|
|
|
pickle_idea.save_frequency_to_pickle(d, path_prefix + 'static/frequency/frequency.p')
|
|
|
|
|
return render_template('mainpage_post.html', lst=lst, yml=Yaml.yml)
|
|
|
|
|
|
|
|
|
|
elif request.method == 'GET': # when we load a html page
|
|
|
|
|
random_ads = get_random_ads()
|
|
|
|
|
number_of_essays = total_number_of_essays()
|
|
|
|
|
d = load_freq_history(path_prefix + 'static/frequency/frequency.p')
|
|
|
|
|
d_len = len(d)
|
|
|
|
|
lst = sort_in_descending_order(pickle_idea.dict2lst(d))
|
2023-03-23 13:40:22 +08:00
|
|
|
|
return render_template('mainpage_get.html',
|
|
|
|
|
admin_name=ADMIN_NAME,
|
|
|
|
|
random_ads=random_ads,
|
|
|
|
|
d_len=d_len,
|
|
|
|
|
lst=lst,
|
|
|
|
|
yml=Yaml.yml,
|
|
|
|
|
number_of_essays=number_of_essays)
|
2022-01-26 21:10:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
'''
|
|
|
|
|
运行程序
|
|
|
|
|
'''
|
|
|
|
|
# app.secret_key = os.urandom(16)
|
|
|
|
|
# app.run(debug=False, port='6000')
|
2024-07-04 21:41:51 +08:00
|
|
|
|
#app.run(debug=True)
|
|
|
|
|
app.run(debug=True, port='8025')
|
2022-01-26 21:10:09 +08:00
|
|
|
|
# app.run(host='0.0.0.0', debug=True, port='6000')
|
|
|
|
|
# print(mod5('123'))
|