Commit e788bb03 authored by littlefatty.wong's avatar littlefatty.wong

将配置文件参数SKEY修改为S_KEY以符合参数规则

parent 02b6169b
...@@ -55,7 +55,7 @@ TELEGRAM_BOT_API_URL = 'https://tgbot.lbyczf.com/sendMessage/:your_token' ...@@ -55,7 +55,7 @@ TELEGRAM_BOT_API_URL = 'https://tgbot.lbyczf.com/sendMessage/:your_token'
# ServerChan和PushBear配置 # ServerChan和PushBear配置
SERVERCHAN_ENABLED = 0 SERVERCHAN_ENABLED = 0
PUSHBEAR_ENABLED = 0 PUSHBEAR_ENABLED = 0
SKEY = 'SCUdafadsfasfdafdf45234234234' S_KEY = 'SCUdafadsfasfdafdf45234234234'
# 输出日志到文件 (Docker 中不建议修改此组配置项) # 输出日志到文件 (Docker 中不建议修改此组配置项)
OUT_PUT_LOG_TO_FILE_ENABLED = 1 OUT_PUT_LOG_TO_FILE_ENABLED = 1
......
...@@ -55,7 +55,7 @@ TELEGRAM_BOT_API_URL = 'https://tgbot.lbyczf.com/sendMessage/:your_token' ...@@ -55,7 +55,7 @@ TELEGRAM_BOT_API_URL = 'https://tgbot.lbyczf.com/sendMessage/:your_token'
# ServerChan和PushBear配置 # ServerChan和PushBear配置
SERVERCHAN_ENABLED = 0 SERVERCHAN_ENABLED = 0
PUSHBEAR_ENABLED = 0 PUSHBEAR_ENABLED = 0
SKEY = 'SCUdafadsfasfdafdf45234234234' S_KEY = 'SCUdafadsfasfdafdf45234234234'
# 输出日志到文件 # 输出日志到文件
OUT_PUT_LOG_TO_FILE_ENABLED = 0 OUT_PUT_LOG_TO_FILE_ENABLED = 0
......
...@@ -119,11 +119,11 @@ class App: ...@@ -119,11 +119,11 @@ class App:
if Config().SERVERCHAN_ENABLED: # ServerChan通知 if Config().SERVERCHAN_ENABLED: # ServerChan通知
CommonLog.add_quick_log(CommonLog.MESSAGE_TEST_SEND_SERVER_CHAN).flush() CommonLog.add_quick_log(CommonLog.MESSAGE_TEST_SEND_SERVER_CHAN).flush()
Notification.server_chan(Config().SKEY, '测试发送消息', 'By py12306') Notification.server_chan(Config().S_KEY, '测试发送消息', 'By py12306')
if Config().PUSHBEAR_ENABLED: # PushBear通知 if Config().PUSHBEAR_ENABLED: # PushBear通知
CommonLog.add_quick_log(CommonLog.MESSAGE_TEST_SEND_PUSH_BEAR).flush() CommonLog.add_quick_log(CommonLog.MESSAGE_TEST_SEND_PUSH_BEAR).flush()
Notification.push_bear(Config().SKEY, '测试发送消息', 'By py12306') Notification.push_bear(Config().S_KEY, '测试发送消息', 'By py12306')
@classmethod @classmethod
def run_check(cls): def run_check(cls):
......
...@@ -65,7 +65,7 @@ class Config: ...@@ -65,7 +65,7 @@ class Config:
# ServerChan和PushBear配置 # ServerChan和PushBear配置
SERVERCHAN_ENABLED = 0 SERVERCHAN_ENABLED = 0
PUSHBEAR_ENABLED = 0 PUSHBEAR_ENABLED = 0
SKEY = '' S_KEY = ''
# 邮箱配置 # 邮箱配置
EMAIL_ENABLED = 0 EMAIL_ENABLED = 0
......
...@@ -88,10 +88,10 @@ class Order: ...@@ -88,10 +88,10 @@ class Order:
Notification.send_to_telegram( Notification.send_to_telegram(
OrderLog.MESSAGE_ORDER_SUCCESS_NOTIFICATION_OF_EMAIL_CONTENT.format(self.order_id)) OrderLog.MESSAGE_ORDER_SUCCESS_NOTIFICATION_OF_EMAIL_CONTENT.format(self.order_id))
if Config().SERVERCHAN_ENABLED: # ServerChan通知 if Config().SERVERCHAN_ENABLED: # ServerChan通知
Notification.server_chan(Config().SKEY, OrderLog.MESSAGE_ORDER_SUCCESS_NOTIFICATION_TITLE, Notification.server_chan(Config().S_KEY, OrderLog.MESSAGE_ORDER_SUCCESS_NOTIFICATION_TITLE,
OrderLog.MESSAGE_ORDER_SUCCESS_NOTIFICATION_OF_EMAIL_CONTENT.format(self.order_id)) OrderLog.MESSAGE_ORDER_SUCCESS_NOTIFICATION_OF_EMAIL_CONTENT.format(self.order_id))
if Config().PUSHBEAR_ENABLED: # PushBear通知 if Config().PUSHBEAR_ENABLED: # PushBear通知
Notification.push_bear(Config().SKEY, OrderLog.MESSAGE_ORDER_SUCCESS_NOTIFICATION_TITLE, Notification.push_bear(Config().S_KEY, OrderLog.MESSAGE_ORDER_SUCCESS_NOTIFICATION_TITLE,
OrderLog.MESSAGE_ORDER_SUCCESS_NOTIFICATION_OF_EMAIL_CONTENT.format(self.order_id)) OrderLog.MESSAGE_ORDER_SUCCESS_NOTIFICATION_OF_EMAIL_CONTENT.format(self.order_id))
while sustain_time: # TODO 后面直接查询有没有待支付的订单就可以 while sustain_time: # TODO 后面直接查询有没有待支付的订单就可以
num += 1 num += 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment