PyBot/web/app.py

83 lines
3.0 KiB
Python
Raw Permalink Normal View History

2024-12-10 16:24:41 +08:00
from flask import Flask, jsonify, render_template
import os
2024-12-25 18:40:20 +08:00
import logging
2024-12-10 16:24:41 +08:00
app = Flask(__name__)
# 配置文件路径
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
PARENT_DIR = os.path.dirname(BASE_DIR) # 上一个文件夹
SEC_NEWS_PATH = os.path.join(PARENT_DIR, 'history', 'sec_news.md')
TECH_PASSAGE_PATH = os.path.join(PARENT_DIR, 'history', 'tech_passage.md')
2024-12-25 18:40:20 +08:00
CORE_LOG_PATH = os.path.join(PARENT_DIR, 'log', 'core.log')
WEB_LOG_PATH = os.path.join(PARENT_DIR, 'log', 'app.log')
# 配置日志记录器
logging.basicConfig(
filename=WEB_LOG_PATH,
level=logging.INFO,
format= '%(asctime)s - %(levelname)s - %(message)s'
)
2024-12-10 16:24:41 +08:00
def replace_content(content):
content = content.replace('####', '###')
2024-12-25 18:40:20 +08:00
content = content.replace(r"e:\Self-Tool-Code\PyBot", '.') # 修改: 使用原始字符串避免转义问题
2024-12-10 16:24:41 +08:00
return content
2024-12-15 02:14:39 +08:00
@app.route('/')
def index():
2024-12-25 18:40:20 +08:00
logging.info("访问主页")
2024-12-15 02:14:39 +08:00
return render_template('index.html')
2024-12-10 16:24:41 +08:00
@app.route('/get-sec-news')
def get_sec_news():
2024-12-25 18:40:20 +08:00
logging.info(f"尝试打开安全新闻历史推送文件: {SEC_NEWS_PATH}")
2024-12-10 16:24:41 +08:00
try:
with open(SEC_NEWS_PATH, 'r', encoding='utf-8') as file:
content = file.read()
content = replace_content(content)
return jsonify({'content': content}), 200
except FileNotFoundError:
2024-12-25 18:40:20 +08:00
logging.error(f"文件缺失: {SEC_NEWS_PATH}")
2024-12-10 16:24:41 +08:00
return jsonify({'error': '安全新闻历史推送文件缺失!'}), 404
except Exception as e:
2024-12-25 18:40:20 +08:00
logging.error(f"读取时出错: {SEC_NEWS_PATH}, 原因: {str(e)}")
2024-12-10 16:24:41 +08:00
return jsonify({'error': str(e)}), 500
@app.route('/get-tech-passage')
def get_tech_passage():
2024-12-25 18:40:20 +08:00
logging.info(f"尝试打开技术文章历史推送文件: {TECH_PASSAGE_PATH}")
2024-12-10 16:24:41 +08:00
try:
with open(TECH_PASSAGE_PATH, 'r', encoding='utf-8') as file:
content = file.read()
content = replace_content(content)
return jsonify({'content': content}), 200
except FileNotFoundError:
2024-12-25 18:40:20 +08:00
logging.error(f"文件缺失: {TECH_PASSAGE_PATH}")
2024-12-10 16:24:41 +08:00
return jsonify({'error': '技术文章历史推送文件缺失!'}), 404
except Exception as e:
2024-12-25 18:40:20 +08:00
logging.error(f"读取时出错: {TECH_PASSAGE_PATH}, 原因: {str(e)}")
2024-12-10 16:24:41 +08:00
return jsonify({'error': str(e)}), 500
2024-12-15 02:14:39 +08:00
@app.route('/log')
def get_log():
2024-12-25 18:40:20 +08:00
logging.info(f"尝试打开核心日志文件: {CORE_LOG_PATH}")
2024-12-15 02:14:39 +08:00
# 读取日志文件内容
with open(CORE_LOG_PATH, 'r', encoding='utf-8') as file:
log_content = file.read()
# 将日志内容传递给模板
return render_template('log.html', log_content=log_content)
2024-12-25 18:40:20 +08:00
@app.route('/weblog')
def get_weblog():
logging.info(f"尝试打开Web应用日志文件: {WEB_LOG_PATH}")
with open(WEB_LOG_PATH, 'r') as file:
log_content = file.read()
log_content = replace_content(log_content)
return render_template('log.html', log_content=log_content)
2024-12-10 16:24:41 +08:00
def run_server():
app.run(host='0.0.0.0', port=5000)
if __name__ == '__main__':
2024-12-25 18:40:20 +08:00
app.run(debug=False) # 在生产环境中应设置为 False