mirror of
https://github.com/aaPanel/aaPanel.git
synced 2026-08-20 14:42:29 +02:00
1. Added Mail Marketing Automation trigger tasks 2. Added Mail Marketing Groups Import, Export, Merge 3. Added Mail Marketing Subscribers to support paste import 4. Added Mail Marketing Template Import Export Duplicate 5. Added Mail server add timed automatic reply 6. Added HTTPS Protection function for Website (disables automatic HTTP to HTTPS redirection when enabled) 7. Optimize Website Interface Button Integration 8. Optimize the response speed of WP Toolkit interface
70 lines
2.3 KiB
Python
70 lines
2.3 KiB
Python
# coding: utf-8
|
|
# -------------------------------------------------------------------
|
|
# aapanel
|
|
# -------------------------------------------------------------------
|
|
# Copyright (c) 2015-2017 aapanel(http:#bt.cn) All rights reserved.
|
|
# -------------------------------------------------------------------
|
|
# Author: baozi <baozi@bt.cn>
|
|
# -------------------------------------------------------------------
|
|
# 新告警通道管理模块
|
|
# ------------------------------
|
|
from mod.base.msg import SenderManager, update_mod_push_msg
|
|
from mod.base.push_mod import SenderConfig
|
|
from mod.base import json_response
|
|
|
|
import public
|
|
|
|
|
|
update_mod_push_msg()
|
|
|
|
|
|
class main(SenderManager):
|
|
|
|
@staticmethod
|
|
def wx_account_auth(get=None):
|
|
return WeChatAccountMsg.get_auth_url()
|
|
|
|
@staticmethod
|
|
def unbind_wx_account(get):
|
|
try:
|
|
sender_id = get.sender_id.strip()
|
|
except AttributeError:
|
|
return json_response(status=False, msg="Parameter error")
|
|
|
|
conf = SenderConfig().get_by_id(sender_id)
|
|
if not conf:
|
|
return json_response(status=False, msg="No binding information was found")
|
|
|
|
res = WeChatAccountMsg.unbind(conf["data"]["id"])
|
|
public.WriteFile(WeChatAccountMsg.need_refresh_file, "")
|
|
return res
|
|
|
|
def set_default_sender(self, get):
|
|
try:
|
|
|
|
try:
|
|
sender_id = get.sender_id.strip()
|
|
sender_type = get.sender_type.strip()
|
|
except AttributeError:
|
|
return json_response(status=False, msg="Parameter error")
|
|
|
|
sc = SenderConfig()
|
|
change = False
|
|
print("SenderConfig",sc.config)
|
|
for conf in sc.config:
|
|
if conf["sender_type"] == sender_type:
|
|
is_original = conf.get("original", False)
|
|
if conf["id"] == sender_id:
|
|
change = True
|
|
conf["original"] = True
|
|
else:
|
|
conf["original"] = False
|
|
|
|
sc.save_config()
|
|
if change:
|
|
self.set_default_for_compatible(sc.get_by_id(sender_id))
|
|
return json_response(status=True, msg="Successfully set")
|
|
except Exception as e:
|
|
return json_response(status=False, msg=e)
|
|
|