File size: 12,975 Bytes
020c337 | 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 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 | #coding: utf-8
# +-------------------------------------------------------------------
# | 宝塔Linux面板
# +-------------------------------------------------------------------
# | Copyright (c) 2015-2020 宝塔软件(http://www.bt.cn) All rights reserved.
# +-------------------------------------------------------------------
# | Author: 沐落 <cjx@bt.cn>
# | Author: lx
# | 消息通道邮箱模块
# +-------------------------------------------------------------------
import os, sys
import time,base64
panelPath = "/www/server/panel"
os.chdir(panelPath)
sys.path.insert(0,panelPath + "/class/")
import public, json
try:
import socket
import requests
from requests.packages import urllib3
# 关闭警告
urllib3.disable_warnings()
import requests.packages.urllib3.util.connection as urllib3_cn
except:
pass
class wx_account_msg:
__module_name = None
__default_pl = "{}/data/default_msg_channel.pl".format(panelPath)
conf_path = '{}/data/wx_account_msg.json'.format(panelPath)
user_info = None
def __init__(self):
try:
self.user_info = json.loads(public.ReadFile("{}/data/userInfo.json".format(public.get_panel_path())))
except:
self.user_info=None
self.__module_name = self.__class__.__name__.replace('_msg','')
def get_version_info(self,get):
"""
获取版本信息
"""
data = {}
data['ps'] = '宝塔微信公众号,用于接收面板消息推送'
data['version'] = '1.0'
data['date'] = '2022-08-15'
data['author'] = '宝塔'
data['title'] = '微信公众号'
data['help'] = 'http://www.bt.cn'
return data
def get_local_ip(self):
'''获取内网IP'''
import socket
try:
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('8.8.8.8', 80))
ip = s.getsockname()[0]
return ip
finally:
s.close()
return '127.0.0.1'
def __get_default_channel(self):
"""
@获取默认消息通道
"""
try:
if public.readFile(self.__default_pl) == self.__module_name:
return True
except:pass
return False
def get_config(self, get):
"""
微信公众号配置
"""
if os.path.exists(self.conf_path):
#60S内不重复加载
start_time=int(time.time())
if os.path.exists("data/wx_account_msg.lock"):
lock_time= 0
try:
lock_time = int(public.ReadFile("data/wx_account_msg.lock"))
except:pass
#大于60S重新加载
if start_time - lock_time > 60:
public.run_thread(self.get_web_info2)
public.WriteFile("data/wx_account_msg.lock",str(start_time))
else:
public.WriteFile("data/wx_account_msg.lock",str(start_time))
public.run_thread(self.get_web_info2)
data = json.loads(public.ReadFile(self.conf_path))
if not 'list' in data: data['list'] = {}
title = '默认'
if 'res' in data and 'nickname' in data['res']: title = data['res']['nickname']
data['list']['default'] = {'title':title,'data':''}
data['default'] = self.__get_default_channel()
return data
else:
public.run_thread(self.get_web_info2)
return {"success":False,"res":"未获取到配置信息"}
def set_config(self,get):
"""
@设置默认值
"""
if 'default' in get and get['default']:
public.writeFile(self.__default_pl, self.__module_name)
return public.returnMsg(True, '设置成功')
def get_web_info(self,get):
if self.user_info is None: return public.returnMsg(False, '未获取到用户绑定的信息')
url = "https://www.bt.cn/api/v2/user/wx_web/info"
data = {
"uid": self.user_info["uid"],
"access_key": self.user_info["access_key"],
"serverid":self.user_info["serverid"]
}
try:
datas = json.loads(public.httpPost(url,data))
if datas["success"]:
public.WriteFile(self.conf_path,json.dumps(datas))
return public.returnMsg(True, datas)
else:
public.WriteFile(self.conf_path, json.dumps(datas))
return public.returnMsg(False, datas)
except:
public.WriteFile(self.conf_path, json.dumps({"success":False,"res":"链接云端失败,请检查网络"}))
return public.returnMsg(False,"链接云端失败,请检查网络")
def unbind(self):
if self.user_info is None:
return public.returnMsg(False, '未获取到用户绑定的信息')
url = "https://www.bt.cn/api/v2/user/wx_web/unbind"
data = {
"uid": self.user_info["uid"],
"access_key": self.user_info["access_key"],
"serverid": self.user_info["serverid"]
}
try:
datas = json.loads(public.httpPost(url, data))
if os.path.exists(self.conf_path):
os.remove(self.conf_path)
if datas["success"]:
return public.returnMsg(True, datas)
else:
return public.returnMsg(False, datas)
except:
public.WriteFile(self.conf_path, json.dumps({"success":False,"res":"链接云端失败,请检查网络"}))
return public.returnMsg(False, "链接云端失败,请检查网络")
def get_web_info2(self):
if self.user_info is None: return public.returnMsg(False, '未获取到用户绑定的信息')
url = "https://www.bt.cn/api/v2/user/wx_web/info"
data = {
"uid": self.user_info["uid"],
"access_key": self.user_info["access_key"],
"serverid":self.user_info["serverid"]
}
try:
datas = json.loads(public.httpPost(url,data))
if datas["success"]:
public.WriteFile(self.conf_path,json.dumps(datas))
return public.returnMsg(True, datas)
else:
public.WriteFile(self.conf_path, json.dumps(datas))
return public.returnMsg(False, datas)
except:
public.WriteFile(self.conf_path, json.dumps({"success":False,"res":"链接云端失败"}))
return public.returnMsg(False,"链接云端失败")
def get_auth_url(self,get):
if self.user_info is None: return public.returnMsg(False, '未获取到用户绑定的信息')
url = "https://www.bt.cn/api/v2/user/wx_web/get_auth_url"
data = {
"uid": self.user_info["uid"],
"access_key": self.user_info["access_key"],
"serverid":self.user_info["serverid"]
}
try:
datas = json.loads(public.httpPost(url,data))
if datas["success"]:
return public.returnMsg(True, datas)
else:
return public.returnMsg(False, datas)
except:
return public.returnMsg(False,"链接云端失败")
def get_send_msg(self,msg):
"""
@name 处理md格式
"""
try:
import re
title = '宝塔告警通知'
if msg.find("####") >= 0:
try:
title = re.search(r"####(.+)", msg).groups()[0]
except:pass
msg = msg.replace("####",">").replace("\n\n","\n").strip()
s_list = msg.split('\n')
if len(s_list) > 3:
s_title = s_list[0].replace(" ","")
s_list = s_list[3:]
s_list.insert(0,s_title)
msg = '\n'.join(s_list)
s_list = []
for msg_info in msg.split('\n'):
reg = '<font.+>(.+)</font>'
tmp = re.search(reg,msg_info)
if tmp:
tmp = tmp.groups()[0]
msg_info = re.sub(reg,tmp,msg_info)
s_list.append(msg_info)
msg = '\n'.join(s_list)
except:pass
return msg,title
def send_msg(self,msg):
"""
微信发送信息
@msg 消息正文
"""
if self.user_info is None:
return public.returnMsg(False,'未获取到用户信息')
if not isinstance(msg, str):
return self.send_msg_v2(msg)
msg,title = self.get_send_msg(msg)
url="https://www.bt.cn/api/v2/user/wx_web/send_template_msg_v2"
datassss = {
"first": {
"value": "堡塔主机告警",
},
"keyword1": {
"value": "内网IP " + self.get_local_ip() + "\n外网IP " + self.user_info["address"] + " \n服务器别名 " + public.GetConfigValue("title"),
},
"keyword2": {
"value": "堡塔主机告警",
},
"keyword3": {
"value": msg ,
},
"remark": {
"value": "如有疑问,请联系宝塔客服",
},
}
data = {
"uid": self.user_info["uid"],
"access_key": self.user_info["access_key"],
"data": base64.b64encode(json.dumps(datassss).encode('utf-8')).decode('utf-8')
}
try:
res = {}
error,success = 0,0
x = json.loads(public.httpPost(url,data))
conf = self.get_config(None)['list']
#立即刷新剩余次数
public.run_thread(self.get_web_info2)
res[conf['default']['title']] = 0
if x['success']:
res[conf['default']['title']] = 1
success += 1
else:
error += 1
try:
public.write_push_log(self.__module_name,title,res)
except:pass
result = public.returnMsg(True,'发送完成,发送成功{},发送失败{}.'.format(success,error))
result['success'] = success
result['error'] = error
return result
except:
print(public.get_error_info())
return public.returnMsg(False,'微信消息发送失败。 --> {}'.format(public.get_error_info()))
def push_data(self, data):
if isinstance(data, dict):
return self.send_msg(data['msg'])
else:
return self.send_msg_v2(data)
def uninstall(self):
if os.path.exists(self.conf_path):
os.remove(self.conf_path)
def send_msg_v2(self, msg):
from push.base_push import WxAccountMsgBase, WxAccountMsg
if self.user_info is None:
return public.returnMsg(False, '未获取到用户信息')
if isinstance(msg, public.dict_obj):
msg = getattr(msg, "msg", "测试信息")
if len(msg) >= 20:
return self.send_msg(msg)
if isinstance(msg, str):
the_msg = WxAccountMsg.new_msg()
the_msg.thing_type = msg
the_msg.msg = msg
msg = the_msg
if not isinstance(msg, WxAccountMsgBase):
return public.returnMsg(False, '消息类型错误')
msg.set_ip_address(self.user_info["address"], self.get_local_ip())
template_id, msg_data = msg.to_send_data()
url = "https://www.bt.cn/api/v2/user/wx_web/send_template_msg_v2"
data = {
"uid": self.user_info["uid"],
"access_key": self.user_info["access_key"],
"data": base64.b64encode(json.dumps(msg_data).encode('utf-8')).decode('utf-8'),
}
if template_id != "":
data["template_id"] = template_id
try:
error, success = 0, 0
resp = public.httpPost(url, data)
x = json.loads(resp)
conf = self.get_config(None)['list']
# 立即刷新剩余次数
public.run_thread(self.get_web_info2)
res = {
conf['default']['title']: 0
}
if x['success']:
res[conf['default']['title']] = 1
success += 1
else:
error += 1
try:
public.write_push_log(self.__module_name, msg.thing_type, res)
except:
pass
result = public.returnMsg(True, '发送完成,发送成功{},发送失败{}.'.format(success, error))
result['success'] = success
result['error'] = error
return result
except:
return public.returnMsg(False, '微信消息发送失败。 --> {}'.format(public.get_error_info()))
|