ubuntu每五分钟执行企业微信机器人推送
nanshan 2025-05-21 15:22 10 浏览 0 评论
# -*- coding: utf-8 -*-
"""
Created on Tue Apr 22 09:05:46 2025
@author: 1
"""
import requests
import time
import schedule
import sched
from datetime import datetime, timedelta
import threading
import pymysql # 用于连接MySQL数据库
from mysql.connector import Error
# 信息等级定义
INFO_LEVELS = {
'紧急': {'retry_interval': 60, 'max_retries': 3},
'重要': {'retry_interval': 60, 'max_retries': 3},
'一般': {'retry_interval': 60, 'max_retries': 3}
}
def send_message(group, message, info_level):
headers = {'Content-Type': 'application/json'}
payload = {
"msgtype": "text",
"text": {
"content": message
}
}
try:
print(13)
print(group)
response = requests.post(group['robot_webhook'], json=payload, headers=headers)
print(14)
if response.status_code == 200 and response.json().get('errcode') == 0:
print(15)
print(f"[{datetime.now()}] 成功发送到群 {group['group_name']}")
return True
else:
print(16)
print(f"[{datetime.now()}] 发送到群 {group['group_name']} 失败,状态码: {response.status_code}")
return False
except Exception as e:
print(17)
print(f"[{datetime.now()}] 发送到群 {group['group_name']} 异常: {e}")
return False
def retry_send(group, message, info_level, attempt=1):
max_retries = INFO_LEVELS[info_level]['max_retries']
retry_interval = INFO_LEVELS[info_level]['retry_interval']
print(6)
if attempt > max_retries:
print(f"[{datetime.now()}] 最终发送失败到群 {group['group_name']},将在1小时后重试")
time.sleep(3600) # 等待1小时后重试
attempt = 1
print(7)
success = send_message(group, message, info_level)
print(8)
if not success:
time.sleep(retry_interval)
retry_send(group, message, info_level, attempt + 1)
def send_to_superior_groups(group, message, info_level):
current_group = group
while current_group['parent_group_id'] is not None:
superior = find_group_by_id(current_group['parent_group_id'])
if superior:
retry_send(superior, message, info_level)
current_group = superior
else:
break
def find_group_by_id(group_id):
try:
# 连接数据库
connection = pymysql.connect(**DB_CONFIG)
with connection.cursor() as cursor:
# 查询未发送的紧急消息
sql = "select id,group_name,level,robot_webhook,parent_group_id from wechat_groups where id = %s"
cursor.execute(sql, (group_id,))
results = cursor.fetchall()
for row in results:
target_group = row['id'] # 根据 upno 找到对应的群组
if target_group == group_id:
return row
return None
except Exception as e:
print(f"[{datetime.now()}] 遍历机器人时出错: {e}")
return None
finally:
if connection:
connection.close()
def find_group_by_name(group_name):
try:
# 连接数据库
connection = pymysql.connect(**DB_CONFIG)
with connection.cursor() as cursor:
# 查询未发送的紧急消息
sql = "select id,group_name,level,robot_webhook,parent_group_id from wechat_groups where group_name = %s"
cursor.execute(sql, (group_name,))
results = cursor.fetchall()
for row in results:
target_group = row['group_name'] # 根据 upno 找到对应的群组
if target_group == group_name:
return row
return None
except Exception as e:
print(f"[{datetime.now()}] 遍历机器人时出错: {e}")
return None
finally:
if connection:
connection.close()
def schedule_message(group, message, info_level, send_time):
print(9)
delay = (send_time - datetime.now()).total_seconds()
print(10)
if delay > 0:
print(11)
scheduler = sched.scheduler(time.time, time.sleep)
scheduler.enterabs(send_time.timestamp(), 1, retry_send, argument=(group, message, info_level))
scheduler.run()
else:
print(12)
retry_send(group, message, info_level)
def send_message_with_scheduling(group, message, info_level, send_time=None):
if send_time:
schedule_message(group, message, info_level, send_time)
else:
retry_send(group, message, info_level)
if group['parent_group_id'] is not None:
send_to_superior_groups(group, message, info_level)
def run_scheduler():
while True:
schedule.run_pending()
time.sleep(1)
# 数据库连接配置
DB_CONFIG = {
'host': '*********',
'user': 'root',
'password': '************',
'database': '*************',
'charset': 'utf8mb4',
'cursorclass': pymysql.cursors.DictCursor
}
def check_and_send_urgent_messages():
try:
# 连接数据库
connection = pymysql.connect(**DB_CONFIG)
with connection.cursor() as cursor:
# 查询未发送的紧急消息
sql = "SELECT id, sqlcmd, result, createdate, role, details, levelname, upno FROM ai_dayairesult WHERE levelname = '紧急' AND isend = 0"
cursor.execute(sql)
results = cursor.fetchall()
print(1)
for row in results:
message = f"紧急通知: {row['result']}" # 只发送result字段内容
target_group = find_group_by_name(row['role']) # 根据role字段找到对应的群组
print(2)
if target_group:
print(3)
print(target_group)
print(31)
send_message_with_scheduling(target_group, message, "紧急")
print(4)
# 更新数据库状态为已发送
update_sql = "UPDATE ai_dayairesult SET isend = 1 WHERE id = %s"
cursor.execute(update_sql, (row['id'],))
print(5)
# 提交事务
connection.commit()
except Exception as e:
print(f"[{datetime.now()}] 检查并发送紧急消息时出错: {e}")
finally:
if connection:
connection.close()
def schedule_next_check():
# 设置每5分钟检查一次紧急消息
schedule.every(5).minutes.do(check_and_send_urgent_messages)
# 示例用法
if __name__ == "__main__":
# 启动调度器线程
scheduler_thread = threading.Thread(target=run_scheduler)
scheduler_thread.daemon = True
scheduler_thread.start()
# 设置定时检查紧急消息
schedule_next_check()
# 立即执行一次检查
check_and_send_urgent_messages()
# 保持主线程运行
while True:
schedule.run_pending()
time.sleep(1)
相关推荐
- 服务器数据恢复—Raid5数据灾难不用愁,Raid5数据恢复原理了解下
-
Raid5数据恢复算法原理:分布式奇偶校验的独立磁盘结构(被称之为raid5)的数据恢复有一个“奇偶校验”的概念。可以简单的理解为二进制运算中的“异或运算”,通常使用的标识是xor。运算规则:若二者值...
- 服务器数据恢复—多次异常断电导致服务器raid不可用的数据恢复
-
服务器数据恢复环境&故障:由于机房多次断电导致一台服务器中raid阵列信息丢失。该阵列中存放的是文档,上层安装的是Windowsserver操作系统,没有配置ups。因为服务器异常断电重启后,rai...
- 服务器数据恢复-V7000存储更换磁盘数据同步失败的数据恢复案例
-
服务器数据恢复环境:P740+AIX+Sybase+V7000存储,存储阵列柜上共12块SAS机械硬盘(其中一块为热备盘)。服务器故障:存储阵列柜中有磁盘出现故障,工作人员发现后更换磁盘,新更换的磁盘...
- 「服务器数据恢复」重装系统导致XFS文件系统分区丢失的数据恢复
-
服务器数据恢复环境:DellPowerVault系列磁盘柜;用RAID卡创建的一组RAID5;分配一个LUN。服务器故障:在Linux系统层面对LUN进行分区,划分sdc1和sdc2两个分区。将sd...
- 服务器数据恢复-ESXi虚拟机被误删的数据恢复案例
-
服务器数据恢复环境:一台服务器安装的ESXi虚拟化系统,该虚拟化系统连接了多个LUN,其中一个LUN上运行了数台虚拟机,虚拟机安装WindowsServer操作系统。服务器故障&分析:管理员因误操作...
- 「服务器数据恢复」Raid5阵列两块硬盘亮黄灯掉线的数据恢复案例
-
服务器数据恢复环境:HPStorageWorks某型号存储;虚拟化平台为vmwareexsi;10块磁盘组成raid5(有1块热备盘)。服务器故障:raid5阵列中两块硬盘指示灯变黄掉线,无法读取...
- 服务器数据恢复—基于oracle数据库的SAP数据恢复案例
-
服务器存储数据恢复环境:某品牌服务器存储中有一组由6块SAS硬盘组建的RAID5阵列,其中有1块硬盘作为热备盘使用。上层划分若干lun,存放Oracle数据库数据。服务器存储故障&分析:该RAID5阵...
- 「服务器虚拟化数据恢复」Xen Server环境下数据库数据恢复案例
-
服务器虚拟化数据恢复环境:Dell某型号服务器;数块STAT硬盘通过raid卡组建的RAID10;XenServer服务器虚拟化系统;故障虚拟机操作系统:WindowsServer,部署Web服务...
- 服务器数据恢复—RAID故障导致oracle无法启动的数据恢复案例
-
服务器数据恢复环境:某品牌服务器中有一组由4块SAS磁盘做的RAID5磁盘阵列。该服务器操作系统为windowsserver,运行了一个单节点Oracle,数据存储为文件系统,无归档。该oracle...
- 服务器数据恢复—服务器磁盘阵列常见故障表现&解决方案
-
RAID(磁盘阵列)是一种将多块物理硬盘整合成一个虚拟存储的技术,raid模块相当于一个存储管理的中间层,上层接收并执行操作系统及文件系统的数据读写指令,下层管理数据在各个物理硬盘上的存储及读写。相对...
- 「服务器数据恢复」IBM某型号服务器RAID5磁盘阵列数据恢复案例
-
服务器数据恢复环境:IBM某型号服务器;5块SAS硬盘组成RAID5磁盘阵列;存储划分为1个LUN和3个分区:第一个分区存放windowsserver系统,第二个分区存放SQLServer数据库,...
- 服务器数据恢复—Zfs文件系统下误删除文件如何恢复数据?
-
服务器故障:一台zfs文件系统服务器,管理员误操作删除服务器上的数据。服务器数据恢复过程:1、将故障服务器所有磁盘编号后取出,硬件工程师检测所有硬盘后没有发现有磁盘存在硬件故障。以只读方式将全部磁盘做...
- 服务器数据恢复—Linux+raid5服务器数据恢复案例
-
服务器数据恢复环境:某品牌linux操作系统服务器,服务器中有4块SAS接口硬盘组建一组raid5阵列。服务器中存放的数据有数据库、办公文档、代码文件等。服务器故障&检测:服务器在运行过程中突然瘫痪,...
- 服务器数据恢复—Sql Server数据库数据恢复案例
-
服务器数据恢复环境:一台安装windowsserver操作系统的服务器。一组由8块硬盘组建的RAID5,划分LUN供这台服务器使用。在windows服务器内装有SqlServer数据库。存储空间LU...
- 服务器数据恢复—阿里云ECS网站服务器数据恢复案例
-
云服务器数据恢复环境:阿里云ECS网站服务器,linux操作系统+mysql数据库。云服务器故障:在执行数据库版本更新测试时,在生产库误执行了本来应该在测试库执行的sql脚本,导致生产库部分表被tru...
你 发表评论:
欢迎- 一周热门
-
-
爱折腾的特斯拉车主必看!手把手教你TESLAMATE的备份和恢复
-
如何在安装前及安装后修改黑群晖的Mac地址和Sn系列号
-
[常用工具] OpenCV_contrib库在windows下编译使用指南
-
WindowsServer2022|配置NTP服务器的命令
-
Ubuntu系统Daphne + Nginx + supervisor部署Django项目
-
WIN11 安装配置 linux 子系统 Ubuntu 图形界面 桌面系统
-
解决Linux终端中“-bash: nano: command not found”问题
-
NBA 2K25虚拟内存不足/爆内存/内存占用100% 一文速解
-
Linux 中的文件描述符是什么?(linux 打开文件表 文件描述符)
-
K3s禁用Service Load Balancer,解决获取浏览器IP不正确问题
-
- 最近发表
-
- 服务器数据恢复—Raid5数据灾难不用愁,Raid5数据恢复原理了解下
- 服务器数据恢复—多次异常断电导致服务器raid不可用的数据恢复
- 服务器数据恢复-V7000存储更换磁盘数据同步失败的数据恢复案例
- 「服务器数据恢复」重装系统导致XFS文件系统分区丢失的数据恢复
- 服务器数据恢复-ESXi虚拟机被误删的数据恢复案例
- 「服务器数据恢复」Raid5阵列两块硬盘亮黄灯掉线的数据恢复案例
- 服务器数据恢复—基于oracle数据库的SAP数据恢复案例
- 「服务器虚拟化数据恢复」Xen Server环境下数据库数据恢复案例
- 服务器数据恢复—RAID故障导致oracle无法启动的数据恢复案例
- 服务器数据恢复—服务器磁盘阵列常见故障表现&解决方案
- 标签列表
-
- linux 查询端口号 (58)
- docker映射容器目录到宿主机 (66)
- 杀端口 (60)
- yum更换阿里源 (62)
- internet explorer 增强的安全配置已启用 (65)
- linux自动挂载 (56)
- 禁用selinux (55)
- sysv-rc-conf (69)
- ubuntu防火墙状态查看 (64)
- windows server 2022激活密钥 (56)
- 无法与服务器建立安全连接是什么意思 (74)
- 443/80端口被占用怎么解决 (56)
- ping无法访问目标主机怎么解决 (58)
- fdatasync (59)
- 405 not allowed (56)
- 免备案虚拟主机zxhost (55)
- linux根据pid查看进程 (60)
- dhcp工具 (62)
- mysql 1045 (57)
- 宝塔远程工具 (56)
- ssh服务器拒绝了密码 请再试一次 (56)
- ubuntu卸载docker (56)
- linux查看nginx状态 (63)
- tomcat 乱码 (76)
- 2008r2激活序列号 (65)