添加 通知随机广告

This commit is contained in:
ngfchl
2023-04-20 21:39:46 +08:00
parent cc1f31efd3
commit 17d0525987

View File

@@ -126,6 +126,12 @@ class PtSpider:
def send_text(self, message: str, title: str = '', url: str = None):
"""通知分流"""
ad = [
'PTools目前开发遇到困难开发电脑性能不足时常崩溃欢迎赞助<img src="http://img.ptools.fun/pay.png" width="100%" align="center">',
'为补贴开发,努力卖点农副产品,自家生纯净榨核桃油,如有需要欢迎联系我!<img src="http://img.ptools.fun/wechat.png" width="100%" align="center">',
'广告位招租哟,欢迎投放广告!<img src="http://img.ptools.fun/wechat.png" width="100%" align="center">',
]
message = f'{ad[random.randint(0, len(ad)-1)]}\n{"*" * 30}\n{message}'
notifies = Notify.objects.filter(enable=True).all()
res = '你还没有配置通知参数哦!'
if len(notifies) <= 0: