fork huge commit
This commit is contained in:
parent
aa4db3fc20
commit
ed23de9ee5
4 changed files with 506 additions and 413 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
config.json
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
|
|
18
README.md
18
README.md
|
@ -1,3 +1,21 @@
|
|||
This is fork from: https://github.com/S1S13AF7/ub4tg
|
||||
Main changes:
|
||||
* removed iris compatibility
|
||||
* added loguru
|
||||
* other some improvments
|
||||
|
||||
before start, create config.json file with this content:
|
||||
```json
|
||||
{
|
||||
"api_id": 0000000,
|
||||
"api_hash": "1234567890",
|
||||
"timezone": "Europe/[Your_city]",
|
||||
"db_pymysql": false,
|
||||
"db_sqlite3": true,
|
||||
"a_h": true
|
||||
}
|
||||
```
|
||||
___
|
||||
# ub4tg – юзербот для телеграма.
|
||||
покищо лише пінґ-понґ
|
||||
і збереження хто кого заразив
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# requirements.txt
|
||||
|
||||
aiogram==2.19
|
||||
aiohttp==3.9.0b0
|
||||
aiogram
|
||||
Telethon-Mod
|
||||
#aiosqlite
|
||||
asyncio
|
||||
|
|
745
ubot.py
745
ubot.py
|
@ -1,51 +1,72 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
#https://docs-python.ru/packages/telegram-klient-telethon-python/ <-info
|
||||
# https://docs-python.ru/packages/telegram-klient-telethon-python/ <-info
|
||||
import asyncio
|
||||
|
||||
from datetime import datetime, timedelta
|
||||
#from telethon.sync import TelegramClient
|
||||
# from telethon.sync import TelegramClient
|
||||
from telethon import TelegramClient, events, utils
|
||||
|
||||
import os
|
||||
import sys
|
||||
import json
|
||||
import re
|
||||
import random
|
||||
#import pytz
|
||||
# import pytz
|
||||
import time
|
||||
|
||||
import pymysql
|
||||
import pymysql.cursors
|
||||
|
||||
import sqlite3
|
||||
from loguru import logger
|
||||
logger.remove()
|
||||
logger.level("DEBUG", color='<magenta>')
|
||||
logger.add(sys.stderr, level="DEBUG")
|
||||
|
||||
#Название сессии
|
||||
# Название сессии
|
||||
sessdb = 'tl-ub'
|
||||
#Api ID и Api Hash полученные на my.telegram.org
|
||||
with open("config.json", "r") as configfile:
|
||||
from types import SimpleNamespace
|
||||
cnf_dict = json.load(configfile)
|
||||
config = SimpleNamespace(**cnf_dict)
|
||||
logger.debug('config loaded')
|
||||
|
||||
api_id = 00000000
|
||||
api_hash = 'blahblahblahblahblahblahblahblah'
|
||||
timezone = "Europe/Kiev"
|
||||
# Api ID и Api Hash полученные на my.telegram.org
|
||||
api_id = config.api_id
|
||||
api_hash = config.api_hash
|
||||
timezone = config.timezone
|
||||
|
||||
db_pymysql = True#set True or False
|
||||
db_sqlite3 = True#set True or False
|
||||
db_pymysql = config.db_pymysql # set True or False
|
||||
db_sqlite3 = config.db_sqlite3 # set True or False
|
||||
a_h = config.a_h
|
||||
|
||||
|
||||
@logger.catch
|
||||
async def main():
|
||||
async with TelegramClient(sessdb,api_id,api_hash) as client:
|
||||
client.parse_mode="HTML"
|
||||
print('User-Bot started')
|
||||
me= await client.get_me()
|
||||
my_id = int(me.id)
|
||||
my_fn = me.first_name
|
||||
print(my_id)
|
||||
async with TelegramClient(sessdb, api_id, api_hash) as client:
|
||||
client.parse_mode = "HTML"
|
||||
logger.success('User-Bot started')
|
||||
me = await client.get_me()
|
||||
my_id = int(me.id)
|
||||
my_fn = me.first_name
|
||||
logger.info(f'your id: {my_id}')
|
||||
# Changeble in run-time
|
||||
global auto_bioeb_sleep_interval, auto_bioeb_pathogen_threshold, auto_bioeb_min_interval, auto_bioeb_max_interval, auto_bioeb_stop
|
||||
auto_bioeb_sleep_interval = (6, 66) # the default on (re)start
|
||||
auto_bioeb_pathogen_threshold = 5 # these pathogens will be saved +- 1
|
||||
auto_bioeb_min_interval = (0.666, 3.666) # for fast leak pathogen
|
||||
auto_bioeb_max_interval = (71, 121) # waiting for more pathogen
|
||||
# Default strategy mean: you have 4-5 pathogens when auto bioeb is enabled, pathogen overflow reduced
|
||||
auto_bioeb_stop = False
|
||||
|
||||
if db_pymysql:
|
||||
con = pymysql.connect(host='localhost',
|
||||
user='root',
|
||||
password='V3rY$tR0NgPaS$Sw0Rd',
|
||||
db='db',
|
||||
charset='utf8mb4',
|
||||
cursorclass=pymysql.cursors.DictCursor)
|
||||
d = con.cursor()
|
||||
d.execute('''CREATE TABLE IF NOT EXISTS `tg_iris_zarazy` (
|
||||
if db_pymysql:
|
||||
con = pymysql.connect(host='localhost',
|
||||
user='root',
|
||||
password='V3rY$tR0NgPaS$Sw0Rd',
|
||||
db='db',
|
||||
charset='utf8mb4',
|
||||
cursorclass=pymysql.cursors.DictCursor)
|
||||
d = con.cursor()
|
||||
d.execute('''CREATE TABLE IF NOT EXISTS `tg_iris_zarazy` (
|
||||
`when_int` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`who_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||||
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||||
|
@ -55,9 +76,9 @@ async def main():
|
|||
`expr_int` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`expr_str` varchar(11) NOT NULL DEFAULT '0',
|
||||
UNIQUE KEY `UNIQUE` (`who_id`,`user_id`)
|
||||
);''');
|
||||
con.commit()
|
||||
d.execute('''CREATE TABLE IF NOT EXISTS `tg_bio_attack` (
|
||||
);''')
|
||||
con.commit()
|
||||
d.execute('''CREATE TABLE IF NOT EXISTS `tg_bio_attack` (
|
||||
`from_infect` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`who_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||||
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||||
|
@ -65,348 +86,400 @@ async def main():
|
|||
`until_infect` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`until_str` varchar(11) NOT NULL DEFAULT '0',
|
||||
UNIQUE KEY `UNIQUE` (`who_id`,`user_id`)
|
||||
);''');
|
||||
con.commit()
|
||||
d.execute('''CREATE TABLE IF NOT EXISTS `tg_bio_users` (
|
||||
);''')
|
||||
con.commit()
|
||||
d.execute('''CREATE TABLE IF NOT EXISTS `tg_bio_users` (
|
||||
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||||
`when_int` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`profit` int(11) unsigned NOT NULL DEFAULT '1',
|
||||
UNIQUE KEY `user_id` (`user_id`)
|
||||
);''');
|
||||
con.commit()
|
||||
d.execute('''CREATE TABLE IF NOT EXISTS `tg_users_url` (
|
||||
);''')
|
||||
con.commit()
|
||||
d.execute('''CREATE TABLE IF NOT EXISTS `tg_users_url` (
|
||||
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||||
`when_int` int(11) unsigned NOT NULL DEFAULT '0',
|
||||
`u_link` varchar(64) NOT NULL DEFAULT '',
|
||||
`f_name` text NOT NULL,
|
||||
PRIMARY KEY (`user_id`),
|
||||
UNIQUE KEY (`u_link`)
|
||||
);''');
|
||||
con.commit()
|
||||
);''')
|
||||
con.commit()
|
||||
|
||||
if db_sqlite3:
|
||||
conn = sqlite3.connect(f"{my_id}.sqlite")#покласти базу рядом?
|
||||
#conn = sqlite3.connect(f"D:\\Misc\\projects\\Python\\ub4tg_db\\{my_id}.sqlite")#Або повністю
|
||||
c = conn.cursor()
|
||||
c.execute('''CREATE TABLE IF NOT EXISTS zarazy (
|
||||
if db_sqlite3:
|
||||
conn = sqlite3.connect(f"{my_id}.sqlite") # покласти базу рядом?
|
||||
# conn = sqlite3.connect(f"D:\\Misc\\projects\\Python\\ub4tg_db\\{my_id}.sqlite")#Або повністю
|
||||
c = conn.cursor()
|
||||
c.execute('''CREATE TABLE IF NOT EXISTS zarazy (
|
||||
user_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
|
||||
when_int INTEGER NOT NULL DEFAULT 0,
|
||||
bio_str VARCHAR NOT NULL DEFAULT 1,
|
||||
bio_int INTEGER NOT NULL DEFAULT 1,
|
||||
expr_int INTEGER NOT NULL DEFAULT 0,
|
||||
expr_str VARCHAR NOT NULL DEFAULT 0
|
||||
)''');
|
||||
conn.commit()
|
||||
c.execute('''CREATE TABLE IF NOT EXISTS avocado (
|
||||
)''')
|
||||
conn.commit()
|
||||
c.execute('''CREATE TABLE IF NOT EXISTS avocado (
|
||||
user_id INTEGER NOT NULL DEFAULT 0 UNIQUE,
|
||||
when_int INTEGER NOT NULL DEFAULT 0,
|
||||
bio_str VARCHAR NOT NULL DEFAULT 1,
|
||||
bio_int INTEGER NOT NULL DEFAULT 1,
|
||||
expr_int INTEGER NOT NULL DEFAULT 0,
|
||||
expr_str VARCHAR NOT NULL DEFAULT 0
|
||||
)''');
|
||||
conn.commit()
|
||||
####################################################################
|
||||
async def get_id(url):
|
||||
user_id = 0
|
||||
if "tg://openmessage?user_id=" in url:
|
||||
user_id = int(re.findall(r'user_id=([0-9]+)',url)[0])
|
||||
print(user_id)
|
||||
return user_id
|
||||
if "t.me/" in url:
|
||||
if db_pymysql:
|
||||
try:
|
||||
d.execute("SELECT * FROM `tg_users_url` WHERE `u_link` = '%s' ORDER BY `when_int` DESC" % str(url));
|
||||
user = d.fetchone();
|
||||
if user is None:
|
||||
#print(f'не знайшли {url} у `tg_users_url`')
|
||||
pass
|
||||
else:
|
||||
user_id = int(user['user_id'])
|
||||
print(f'{url} in db: @{user_id}')
|
||||
except Exception as Err:
|
||||
print(f'E:{Err}/S {url} у `tg_users_url`')
|
||||
if user_id==0:
|
||||
try:
|
||||
d.execute("SELECT * FROM `tg_iris_zarazy` WHERE `u_link` = '%s' ORDER BY `when_int` DESC" % str(url));
|
||||
user = d.fetchone();
|
||||
if user is None:
|
||||
#print(f'не знайшли {url} у `tg_iris_zarazy`')
|
||||
pass
|
||||
else:
|
||||
user_id = int(user['user_id'])
|
||||
print(f'{url} in db: @{user_id}')
|
||||
except Exception as Err:
|
||||
print(f'E:{Err}/S {url} у `tg_iris_zarazy`')
|
||||
if user_id==0:
|
||||
try:
|
||||
user_entity = await client.get_entity(url)
|
||||
if user_entity.id:
|
||||
user_id = int(user_entity.id)
|
||||
user_fn = user_entity.first_name or ''
|
||||
print(f'ok:{url}/@{user_id}')
|
||||
if db_pymysql:
|
||||
try:
|
||||
d.execute("INSERT INTO `tg_users_url` (`when_int`,`user_id`,`u_link`,`f_name`) VALUES (%s,%s,%s,%s) ON DUPLICATE KEY UPDATE user_id = VALUES (user_id),u_link = VALUES (u_link),f_name = VALUES (f_name),when_int = VALUES (when_int);", (int(time.time()),int(user_id),str(url),str(user_fn))); con.commit()
|
||||
except Exception as Err:
|
||||
print(f'E:{Err}')
|
||||
except Exception as Err:
|
||||
print(f'E:{Err}')
|
||||
#pass
|
||||
return user_id
|
||||
)''')
|
||||
conn.commit()
|
||||
####################################################################
|
||||
|
||||
async def message_q( # спизжено
|
||||
text: str,
|
||||
user_id: int,
|
||||
mark_read: bool = False,
|
||||
delete: bool = False,
|
||||
):
|
||||
"""Отправляет сообщение и возращает ответ"""
|
||||
async with client.conversation(user_id, exclusive=False) as conv:
|
||||
msg = await conv.send_message(text)
|
||||
response = await conv.get_response()
|
||||
if mark_read:
|
||||
await conv.mark_read()
|
||||
return response
|
||||
async def get_id(url):
|
||||
user_id = 0
|
||||
if "tg://openmessage?user_id=" in url:
|
||||
user_id = int(re.findall(r'user_id=([0-9]+)', url)[0])
|
||||
logger.debug(user_id)
|
||||
return user_id
|
||||
if "t.me/" in url:
|
||||
if db_pymysql:
|
||||
try:
|
||||
d.execute(
|
||||
"SELECT * FROM `tg_users_url` WHERE `u_link` = '%s' ORDER BY `when_int` DESC" % str(url))
|
||||
user = d.fetchone()
|
||||
if user is None:
|
||||
# print(f'не знайшли {url} у `tg_users_url`')
|
||||
pass
|
||||
else:
|
||||
user_id = int(user['user_id'])
|
||||
print(f'{url} in db: @{user_id}')
|
||||
except Exception as Err:
|
||||
print(f'E:{Err}/S {url} у `tg_users_url`')
|
||||
if user_id == 0:
|
||||
try:
|
||||
user_entity = await client.get_entity(url)
|
||||
if user_entity.id:
|
||||
user_id = int(user_entity.id)
|
||||
user_fn = user_entity.first_name or ''
|
||||
print(f'ok:{url}/@{user_id}')
|
||||
if db_pymysql:
|
||||
try:
|
||||
d.execute("INSERT INTO `tg_users_url` (`when_int`,`user_id`,`u_link`,`f_name`) VALUES (%s,%s,%s,%s) ON DUPLICATE KEY UPDATE user_id = VALUES (user_id),u_link = VALUES (u_link),f_name = VALUES (f_name),when_int = VALUES (when_int);", (int(
|
||||
time.time()), int(user_id), str(url), str(user_fn)))
|
||||
con.commit()
|
||||
except Exception as Err:
|
||||
print(f'E:{Err}')
|
||||
except Exception as Err:
|
||||
print(f'E:{Err}')
|
||||
# pass
|
||||
return user_id
|
||||
|
||||
####################################################################
|
||||
async def message_q( # спизжено
|
||||
text: str,
|
||||
user_id: int,
|
||||
mark_read: bool = False,
|
||||
delete: bool = False,
|
||||
):
|
||||
"""Отправляет сообщение и возращает ответ"""
|
||||
async with client.conversation(user_id, exclusive=False) as conv:
|
||||
msg = await conv.send_message(text)
|
||||
response = await conv.get_response()
|
||||
if mark_read:
|
||||
await conv.mark_read()
|
||||
return response
|
||||
|
||||
####################################################################
|
||||
|
||||
@client.on(events.NewMessage(outgoing=True,pattern='\.п'))
|
||||
async def cmd_п(event):
|
||||
mess = event.message
|
||||
text = mess.raw_text
|
||||
if text =='.п' or text=='.патоген':
|
||||
#FIX! А то спрацьовувало на .п(ередать,овысить,огладить,,,,,,,%)
|
||||
l_r = await message_q( # отправляет сообщение боту и возвращает
|
||||
f"/лаб в лс",
|
||||
5443619563,
|
||||
mark_read=True,
|
||||
delete=False,
|
||||
)
|
||||
h=utils.sanitize_parse_mode('html').unparse(l_r.message,l_r.entities)
|
||||
lab_lines = h.splitlines() # текст с лабой, разбитый на строки
|
||||
new = ""
|
||||
if "🔬 Досье лаборатории" not in lab_lines[0]:
|
||||
pass
|
||||
else:
|
||||
@client.on(events.NewMessage(pattern='.*йобнув.*|.*подверг(ла)? заражению.*|.*infected.*|.*сикди.*|.*насрал.*|.*подверг заморозке.*|.*за допомогою довіреності зазнала зараження.*|.*by authorization infected.*|.*при помощи анонимуса атаковала.*'))
|
||||
@logger.catch
|
||||
async def podverg_a(event):
|
||||
logger.debug('New bio attack detected')
|
||||
# хто там кого йобнув(ла)
|
||||
m = event.message
|
||||
t = m.raw_text
|
||||
bio_attack_themes = ( # I guess if too many themes it will be slow, but acceptable, because python slow as is.
|
||||
# UA theme
|
||||
r'<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">.*</a> йобнув.+<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">',
|
||||
# RU theme
|
||||
r'<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">.*</a> подверг.+<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">',
|
||||
# EN theme
|
||||
r'<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">.*</a> infected.+<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">',
|
||||
# AZ theme
|
||||
r'<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">.*</a> сикди.+<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">',
|
||||
# "ПК гик" theme
|
||||
r'<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">.*</a> насрал.+<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">',
|
||||
# "Новогодняя" theme
|
||||
r'<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">.*</a> подверг заморозке.+<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">',
|
||||
# UA theme [via trust]
|
||||
r'<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">.*</a> за допомогою довіреності зазнала зараження.+<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">',
|
||||
# EN theme [via trust]
|
||||
r'<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">.*</a> by authorization infected.+<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">',
|
||||
# idk what is theme [via trust]
|
||||
r'<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">.*</a> при помощи анонимуса атаковала.+<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">',
|
||||
)
|
||||
bio_expr_themes = (
|
||||
# UA theme
|
||||
r"([0-9\.\,k]+) біо-ресурса",
|
||||
# RU theme
|
||||
r"Прибыль: ([0-9\.\,k]+)",
|
||||
# EN theme
|
||||
r"([0-9\.\,k]+) pcs\.",
|
||||
# AZ theme
|
||||
r"верир: ([0-9\.\,k]+)",
|
||||
# "ПК гик" theme
|
||||
r"потеряет: ([0-9\.\,k]+)",
|
||||
# "Новогодняя" theme
|
||||
r"Прибыль: ([0-9\.\,k]+)",
|
||||
# UA theme [via trust]
|
||||
r"([0-9\.\,k]+) біо-ресурса",
|
||||
# EN theme [via trust]
|
||||
r"([0-9\.\,k]+) pcs\.",
|
||||
# idk what is theme [via trust]
|
||||
r'приносит: ([0-9\.\,k]+)',
|
||||
)
|
||||
default_infected_theme = r' на ([0-9\ ]+) д.*'
|
||||
bio_infected_themes = (
|
||||
# UA theme
|
||||
default_infected_theme,
|
||||
# RU theme
|
||||
default_infected_theme,
|
||||
# EN theme
|
||||
r' for ([0-9\ ]+) d.*',
|
||||
# AZ theme
|
||||
default_infected_theme,
|
||||
# "ПК гик" theme
|
||||
default_infected_theme,
|
||||
# "Новогодняя" theme
|
||||
default_infected_theme,
|
||||
# UA theme [via trust]
|
||||
default_infected_theme,
|
||||
# EN theme [via trust]
|
||||
default_infected_theme,
|
||||
# idk what is theme [via trust]
|
||||
default_infected_theme,
|
||||
)
|
||||
default_pathogen_theme = r'Осталось: ([0-9\ ]+)'
|
||||
bio_pathogen_theme = (
|
||||
default_pathogen_theme,
|
||||
default_pathogen_theme,
|
||||
r'Remaining: ([0-9\ ]+)',
|
||||
default_pathogen_theme,
|
||||
default_pathogen_theme,
|
||||
default_pathogen_theme,
|
||||
default_pathogen_theme,
|
||||
r'Remaining: ([0-9\ ]+)',
|
||||
default_pathogen_theme,
|
||||
)
|
||||
|
||||
for i in lab_lines: # цикл for по всем строкам в тексте лабы
|
||||
if "🧪 Готовых патогенов:" in i:
|
||||
s = i.replace("🧪 Готовых патогенов:", "🧪 ")
|
||||
s = s.replace("из", "із")
|
||||
new+=f'{s}\n' # add \n
|
||||
if m.sender_id != 6333102398:
|
||||
pass
|
||||
elif len(m.entities) > 1:
|
||||
h = utils.sanitize_parse_mode(
|
||||
'html').unparse(t, m.entities) # HTML
|
||||
for theme in bio_attack_themes:
|
||||
trying_theme_index = bio_attack_themes.index(theme)
|
||||
logger.debug(f'trying theme {trying_theme_index}...')
|
||||
r = re.findall(theme, h)
|
||||
if r:
|
||||
logger.debug(f'found theme {trying_theme_index}')
|
||||
break
|
||||
logger.debug(str(r))
|
||||
if r:
|
||||
u1url = r[0][0]
|
||||
u2url = r[0][1]
|
||||
u1id = await get_id(u1url)
|
||||
u2id = await get_id(u2url)
|
||||
# print(f'{u1url} [@{u1id}] подверг(ла) {u2url} [@{u2id}]')#показать
|
||||
when = int(datetime.timestamp(m.date))
|
||||
days = int(re.findall(bio_infected_themes[trying_theme_index], t)[0].replace(' ', ''))
|
||||
experience = re.findall(bio_expr_themes[trying_theme_index], t)[0].strip()
|
||||
if ',' in experience:
|
||||
experience = re.sub(r',', r'.', experience)
|
||||
if 'k' in experience:
|
||||
exp_int = int(
|
||||
float(re.sub('k', '', experience)) * 1000)
|
||||
else:
|
||||
exp_int = int(experience)
|
||||
pathogen_remaining = int(re.findall(bio_pathogen_theme[trying_theme_index], t)[0])
|
||||
global auto_bioeb_sleep_interval, auto_bioeb_pathogen_threshold, auto_bioeb_min_interval, auto_bioeb_max_interval, auto_bioeb_stop
|
||||
if pathogen_remaining <= auto_bioeb_pathogen_threshold and u1id == my_id:
|
||||
auto_bioeb_sleep_interval = auto_bioeb_max_interval
|
||||
logger.warning(f'Interval bioeb changed (slow down): {auto_bioeb_sleep_interval}')
|
||||
elif u1id == my_id:
|
||||
auto_bioeb_sleep_interval = auto_bioeb_min_interval
|
||||
logger.debug(f'Interval bioeb changed (more fast): {auto_bioeb_sleep_interval}')
|
||||
a = datetime.utcfromtimestamp(
|
||||
when)+timedelta(days=int(days), hours=3)
|
||||
do_int = datetime.timestamp(a)
|
||||
do_txt = str(a.strftime("%d.%m.%y"))
|
||||
if u1id > 0 and u2id > 0:
|
||||
if db_sqlite3 and u1id == my_id:
|
||||
try:
|
||||
c.execute("INSERT INTO avocado(user_id,when_int,bio_str,bio_int,expr_int,expr_str) VALUES (?, ?, ?, ?, ?, ?)", (int(
|
||||
u2id), int(when), str(experience), int(exp_int), int(datetime.timestamp(a)), str(a.strftime("%d.%m.%y"))))
|
||||
conn.commit()
|
||||
except:
|
||||
try:
|
||||
c.execute("UPDATE avocado SET when_int = :wh, bio_str = :xp, bio_int = :xpi, expr_int = :end, expr_str = :do WHERE user_id = :z AND when_int <= :wh;", {
|
||||
"wh": int(when), "xp": str(experience), "xpi": int(exp_int), "end": int(datetime.timestamp(a)), "do": str(a.strftime("%d.%m.%y")), "z": int(u2id)})
|
||||
conn.commit()
|
||||
except Exception as Err:
|
||||
logger.exception(f'err: {Err} avocado')
|
||||
logger.debug('success writen my attack')
|
||||
if db_sqlite3 and u1id != my_id:
|
||||
c.execute("INSERT OR REPLACE INTO avocado(user_id,when_int,bio_str,bio_int,expr_int) VALUES (?, ?, ?, ?, ?)", (int(
|
||||
u2id), int(when), str(experience), int(exp_int), 0))
|
||||
conn.commit()
|
||||
logger.debug('success writen not my bio attack')
|
||||
if db_pymysql:
|
||||
try:
|
||||
# from_infect who_id user_id profit until_infect until_str
|
||||
d.execute("INSERT INTO `tg_bio_attack` (`who_id`, `user_id`, `from_infect`, `profit`, `until_infect`, `until_str`) VALUES (%s,%s,%s,%s,%s,%s) ON DUPLICATE KEY UPDATE from_infect=VALUES (from_infect),profit=VALUES (profit),until_infect=VALUES (until_infect),until_str = VALUES (until_str);", (int(
|
||||
u1id), int(u2id), int(when), str(experience), int(datetime.timestamp(a)), str(a.strftime("%d.%m.%y"))))
|
||||
con.commit()
|
||||
print(
|
||||
f"\nINSERT INTO .... ON DUPLICATE KEY UPDATE # [@{u1id}] => [@{u2id}]\n")
|
||||
except Exception as Err:
|
||||
logger.exception(f'err: {Err} (tg_bio_attack)')
|
||||
# pass
|
||||
try:
|
||||
# user_id when profit
|
||||
d.execute("INSERT INTO `tg_bio_users` (`user_id`, `when_int`, `profit`) VALUES (%s,%s,%s) ON DUPLICATE KEY UPDATE when_int=VALUES (when_int),profit=VALUES (profit);", (int(
|
||||
u2id), int(when), str(experience)))
|
||||
con.commit()
|
||||
except Exception as Err:
|
||||
logger.exception(f'err: {Err} (tg_bio_users)')
|
||||
# pass
|
||||
if u1id == my_id:
|
||||
logger.success(
|
||||
f'''{u1url} [@{u1id}] подверг(ла) {u2url} [@{u2id}] +{experience}, d: {days}''')
|
||||
else:
|
||||
logger.info(
|
||||
f'''{u1url} [@{u1id}] подверг(ла) {u2url} [@{u2id}] +{experience}, d: {days}''')
|
||||
|
||||
if "☣️ Био-опыт:" in i:
|
||||
s = i.replace("☣️ Био-опыт:", "☣️ ")
|
||||
new+=f'{s}\n' # add \n
|
||||
if "🧬 Био-ресурс:" in i:
|
||||
s = i.replace("🧬 Био-ресурс:", "🧬 ")
|
||||
new+=f'{s}\n' # add \n
|
||||
####################################################################
|
||||
|
||||
if "❗️ Руководитель в состоянии горячки ещё" in i:
|
||||
s = i.replace("❗️ Руководитель в состоянии горячки ещё", "🤬 ")
|
||||
new+=f'{s}\n' # add \n
|
||||
if "вызванной болезнью" in i:
|
||||
# ❗️ Руководитель в состоянии горячки, вызванной болезнью «%s», ещё
|
||||
#s = i.replace("❗️ Руководитель в состоянии горячки, вызванной болезнью ", "🤬 ")
|
||||
b = re.findall(r'вызванной болезнью «(.+)»',i)[0]#назва тої хєрні якою заразили
|
||||
s = i.replace(f"❗️ Руководитель в состоянии горячки, болезнью «{b}», ещё ",
|
||||
f"🤬 <code>{b}</code>\n⏳ ")#копіпабельно для пошуку
|
||||
await event.edit(new) #ред
|
||||
@client.on(events.NewMessage(outgoing=True, pattern=r'\.biofuck$'))
|
||||
async def cmd_bf(event): # крч акуратно з цим,вдруг шо я нічо
|
||||
m = event.message
|
||||
when = int(datetime.timestamp(m.date))
|
||||
msg = '🤷' # якщо нема кого то жри рандом.
|
||||
c.execute(
|
||||
f"SELECT * FROM `avocado` WHERE expr_int <= {when} ORDER BY expr_int,when_int ASC")
|
||||
e_info = list(c.fetchall())
|
||||
random.shuffle(e_info) # more random for random and reduce risk get very immun target after restart
|
||||
count = len(e_info)
|
||||
if count < 2:
|
||||
nema = '🤷 рандом хавай.'
|
||||
await event.edit(nema) # ред
|
||||
logger.warning(nema)
|
||||
else:
|
||||
pong = '✅ погнали...'
|
||||
global auto_bioeb_stop
|
||||
auto_bioeb_stop = False
|
||||
await event.edit(pong) # ред
|
||||
logger.info(f'є {count} потенційних пацієнтів. спробуєм їх сожрать')
|
||||
for row in e_info:
|
||||
if auto_bioeb_stop:
|
||||
logger.warning('auto bioeb stopped')
|
||||
await event.reply('stopped')
|
||||
break
|
||||
rs = float(random.uniform(auto_bioeb_sleep_interval[0], auto_bioeb_sleep_interval[1])) # скільки спим: random
|
||||
eb = f'Биоеб {row[0]}' # повідомлення.
|
||||
m = await event.reply(eb)
|
||||
await asyncio.sleep(3.3)
|
||||
await client.delete_messages(event.chat_id, m.id)
|
||||
logger.debug(f'bioeb sleep: {rs}s')
|
||||
await asyncio.sleep(rs)
|
||||
|
||||
####################################################################
|
||||
|
||||
####################################################################
|
||||
@client.on(events.NewMessage(outgoing=True, pattern=r'\.biofuck stop$'))
|
||||
async def stop_bioeb(event):
|
||||
global auto_bioeb_stop
|
||||
auto_bioeb_stop = True
|
||||
await event.edit('Trying stop...') # ред
|
||||
|
||||
@client.on(events.NewMessage(pattern='🌡 У вас горячка вызванная'))
|
||||
async def need_h(event):
|
||||
m = event.message
|
||||
# reply = await client.get_messages(m.peer_id, ids=m.reply_to.reply_to_msg_id)
|
||||
# logger.debug(reply)
|
||||
if m.sender_id != 6333102398 and m.mentioned is False:
|
||||
pass
|
||||
elif a_h and m.mentioned:
|
||||
# нада хил
|
||||
ah = await message_q( # отправляет сообщение боту
|
||||
"Хил",
|
||||
6333102398,
|
||||
mark_read=True,
|
||||
delete=False,
|
||||
)
|
||||
logger.debug(ah.text)
|
||||
logger.warning('Used medkit')
|
||||
elif m.mentioned:
|
||||
# alternative method: just waiting, this reduce bio-res usage
|
||||
global auto_bioeb_sleep_interval
|
||||
auto_bioeb_sleep_interval = (3600, 3600)
|
||||
logger.warning('Waiting for infection release... [For skip just bioeb somebody]')
|
||||
|
||||
@client.on(events.NewMessage(pattern='.*подверг(ла)? заражению.*'))
|
||||
async def podverg(event):
|
||||
#хто там кого подверг(ла)
|
||||
m = event.message
|
||||
t = m.raw_text
|
||||
irises = [707693258,5137994780,5226378684,5443619563,5434504334]
|
||||
if m.sender_id not in irises:
|
||||
#print(f"@{m.sender_id} не Iris!?");#Або це або pass. що краще?
|
||||
pass
|
||||
elif len(m.entities) > 1:
|
||||
h= utils.sanitize_parse_mode('html').unparse(t,m.entities)#HTML
|
||||
r= re.findall(r'🦠 <a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">.*</a> подверг.+<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">',h)
|
||||
if r:
|
||||
u1url=r[0][0]
|
||||
u2url=r[0][1]
|
||||
u1id = await get_id(u1url)
|
||||
u2id = await get_id(u2url)
|
||||
#print(f'{u1url} [@{u1id}] подверг(ла) {u2url} [@{u2id}]')#показать
|
||||
when=int(datetime.timestamp(m.date))
|
||||
days=int(re.sub(r' ','',re.findall(r' на ([0-9\ ]+) д.*', t)[0]))
|
||||
experience=re.findall(r"\+([0-9\.\,k]+) био-опыта", t)[0]
|
||||
if ',' in experience:
|
||||
experience=re.sub(r',', r'.',experience)
|
||||
if 'k' in experience:
|
||||
exp_int=int(float(re.sub('k', '',experience)) * 1000)
|
||||
else:
|
||||
exp_int=int(experience)
|
||||
if 'Объект ещё не подвергался заражению вашим патогеном' in event.raw_text:
|
||||
exp_int=int(re.sub(r' ','',re.findall(r'по ([0-9\ ]+) ед.*',event.raw_text)[0]))
|
||||
a=datetime.utcfromtimestamp(when)+timedelta(days=int(days), hours=3)
|
||||
do_int=datetime.timestamp(a)
|
||||
do_txt=str(a.strftime("%d.%m.%y"))
|
||||
if u1id > 0 and u2id > 0 and u1id != u2id:
|
||||
if db_sqlite3 and u1id==my_id:
|
||||
try:
|
||||
c.execute("INSERT INTO zarazy(user_id,when_int,bio_str,bio_int,expr_int,expr_str) VALUES (?, ?, ?, ?, ?, ?)", (int(u2id),int(when),str(experience),int(exp_int),int(datetime.timestamp(a)),str(a.strftime("%d.%m.%y")))); conn.commit()
|
||||
except:
|
||||
try:
|
||||
c.execute("UPDATE zarazy SET when_int = :wh, bio_str = :xp, bio_int = :xpi, expr_int = :end, expr_str = :do WHERE user_id = :z AND when_int <= :wh;", {"wh":int(when),"xp":str(experience),"xpi":int(exp_int),"end":int(datetime.timestamp(a)),"do":str(a.strftime("%d.%m.%y")),"z":int(u2id)}); conn.commit()
|
||||
except Exception as Err:
|
||||
print(f'err: {Err} zarazy')
|
||||
if db_pymysql:
|
||||
try:
|
||||
d.execute("INSERT INTO `tg_iris_zarazy` (`who_id`, `user_id`, `when_int`, `bio_str`, `bio_int`, `expr_int`, `expr_str`, `u_link`) VALUES (%s,%s,%s,%s,%s,%s,%s,%s) ON DUPLICATE KEY UPDATE when_int=VALUES (when_int),bio_str=VALUES (bio_str),bio_int=VALUES (bio_int),expr_int=VALUES (expr_int),expr_str=VALUES (expr_str),u_link = VALUES (u_link);", (int(u1id),int(u2id),int(when),str(experience), int(exp_int), int(datetime.timestamp(a)),str(a.strftime("%d.%m.%y")),str(u2url))); con.commit()
|
||||
print(f"\nINSERT INTO .... ON DUPLICATE KEY UPDATE # [@{u1id}] => [@{u2id}]\n")
|
||||
except Exception as Err:
|
||||
print(f'err: {Err} /localhost')
|
||||
#pass
|
||||
print(f'''{u1url} [@{u1id}] подверг(ла) {u2url} [@{u2id}] +{experience}''')#показать
|
||||
####################################################################
|
||||
|
||||
@client.on(events.NewMessage(outgoing=True, pattern='.l2f'))
|
||||
async def cmd_l2f(event): # Local->file/{id}.sqlite
|
||||
msg = 'для успішного виконання повинно бути обидві бази True'
|
||||
if db_pymysql:
|
||||
try:
|
||||
d.execute(
|
||||
"SELECT * FROM `tg_iris_zarazy` WHERE who_id = %d ORDER BY when_int;" % int(my_id))
|
||||
bz_info = d.fetchall() # получить
|
||||
count = len(bz_info)
|
||||
if count == 0:
|
||||
msg = '🤷 інфа нема.'
|
||||
print(msg)
|
||||
else:
|
||||
saved = 0
|
||||
for row in bz_info:
|
||||
print(row)
|
||||
id_user = int(row["user_id"])
|
||||
bio_int = int(row["bio_int"])
|
||||
bio_str = str(row["bio_str"])
|
||||
when_int = int(row["when_int"])
|
||||
expr_int = int(row["expr_int"])
|
||||
# .2024->.24
|
||||
expr_str = str(
|
||||
re.sub(r'.20', r'.', row["expr_str"]))
|
||||
# fix для любителів мінять його
|
||||
user_url = str(
|
||||
f'tg://openmessage?user_id={id_user}')
|
||||
if db_sqlite3:
|
||||
try:
|
||||
c.execute("INSERT INTO zarazy (user_id,when_int,bio_str,bio_int,expr_int,expr_str) VALUES (?, ?, ?, ?, ?, ?)", (int(
|
||||
id_user), int(when_int), str(bio_str), int(bio_int), int(expr_int), str(expr_str)))
|
||||
conn.commit()
|
||||
saved += 1
|
||||
except:
|
||||
try:
|
||||
c.execute("UPDATE zarazy SET when_int = :wh, bio_str = :xp, bio_int = :xpi, expr_int = :end, expr_str = :do WHERE user_id = :z AND when_int <= :wh;", {
|
||||
"wh": int(when_int), "xp": str(bio_str), "xpi": int(bio_int), "end": int(expr_int), "do": str(expr_str), "z": int(id_user)})
|
||||
conn.commit()
|
||||
except Exception as Err:
|
||||
print(f'err: {Err} zarazy')
|
||||
msg = f"{saved} із {count}"
|
||||
else:
|
||||
msg = 'для успішного виконання повинно бути обидві бази True'
|
||||
except Exception as Err:
|
||||
logger.exception(f'err: {Err} zarazy localhost')
|
||||
msg = Err
|
||||
m = await event.reply(msg)
|
||||
await asyncio.sleep(5)
|
||||
await client.delete_messages(event.chat_id, [event.id, m.id])
|
||||
|
||||
####################################################################
|
||||
@client.on(events.NewMessage(outgoing=True, pattern='.ping'))
|
||||
async def cmd_ping(event):
|
||||
# Say "pong!" whenever you send "!ping", then delete both messages
|
||||
time_start = time.time()
|
||||
m = await event.reply('pong!')
|
||||
time_end = time.time()
|
||||
delta = int(round((time_end - time_start) * 1000, 0))
|
||||
await m.edit(f'pong message sending time: {delta} ms')
|
||||
await asyncio.sleep(10)
|
||||
await client.delete_messages(event.chat_id, [event.id, m.id])
|
||||
|
||||
|
||||
@client.on(events.NewMessage(pattern='.*йобнув.*'))
|
||||
async def podverg_a(event):
|
||||
#хто там кого йобнув(ла)
|
||||
m = event.message
|
||||
t = m.raw_text
|
||||
if m.sender_id !=6333102398:
|
||||
pass
|
||||
elif len(m.entities) > 1:
|
||||
h= utils.sanitize_parse_mode('html').unparse(t,m.entities)#HTML
|
||||
r= re.findall(r'<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">.*</a> йобнув.+<a href="(tg://openmessage\?user_id=\d+|https://t\.me/\w+)">',h)
|
||||
if r:
|
||||
u1url=r[0][0]
|
||||
u2url=r[0][1]
|
||||
u1id = await get_id(u1url)
|
||||
u2id = await get_id(u2url)
|
||||
#print(f'{u1url} [@{u1id}] подверг(ла) {u2url} [@{u2id}]')#показать
|
||||
when=int(datetime.timestamp(m.date))
|
||||
days=int(re.sub(r' ','',re.findall(r' на ([0-9\ ]+) д.*', t)[0]))
|
||||
experience=re.findall(r"([0-9\.\,k]+) біо-ресурса", t)[0]
|
||||
if ',' in experience:
|
||||
experience=re.sub(r',', r'.',experience)
|
||||
if 'k' in experience:
|
||||
exp_int=int(float(re.sub('k', '',experience)) * 1000)
|
||||
else:
|
||||
exp_int=int(experience)
|
||||
a=datetime.utcfromtimestamp(when)+timedelta(days=int(days), hours=3)
|
||||
do_int=datetime.timestamp(a)
|
||||
do_txt=str(a.strftime("%d.%m.%y"))
|
||||
if u1id > 0 and u2id > 0:
|
||||
if db_sqlite3 and u1id==my_id:
|
||||
try:
|
||||
c.execute("INSERT INTO avocado(user_id,when_int,bio_str,bio_int,expr_int,expr_str) VALUES (?, ?, ?, ?, ?, ?)", (int(u2id),int(when),str(experience),int(exp_int),int(datetime.timestamp(a)),str(a.strftime("%d.%m.%y")))); conn.commit()
|
||||
except:
|
||||
try:
|
||||
c.execute("UPDATE avocado SET when_int = :wh, bio_str = :xp, bio_int = :xpi, expr_int = :end, expr_str = :do WHERE user_id = :z AND when_int <= :wh;", {"wh":int(when),"xp":str(experience),"xpi":int(exp_int),"end":int(datetime.timestamp(a)),"do":str(a.strftime("%d.%m.%y")),"z":int(u2id)}); conn.commit()
|
||||
except Exception as Err:
|
||||
print(f'err: {Err} avocado')
|
||||
if db_pymysql:
|
||||
try:
|
||||
#from_infect who_id user_id profit until_infect until_str
|
||||
d.execute("INSERT INTO `tg_bio_attack` (`who_id`, `user_id`, `from_infect`, `profit`, `until_infect`, `until_str`) VALUES (%s,%s,%s,%s,%s,%s) ON DUPLICATE KEY UPDATE from_infect=VALUES (from_infect),profit=VALUES (profit),until_infect=VALUES (until_infect),until_str = VALUES (until_str);", (int(u1id),int(u2id),int(when),str(experience), int(datetime.timestamp(a)),str(a.strftime("%d.%m.%y")))); con.commit()
|
||||
print(f"\nINSERT INTO .... ON DUPLICATE KEY UPDATE # [@{u1id}] => [@{u2id}]\n")
|
||||
except Exception as Err:
|
||||
print(f'err: {Err} (tg_bio_attack)')
|
||||
#pass
|
||||
try:
|
||||
#user_id when profit
|
||||
d.execute("INSERT INTO `tg_bio_users` (`user_id`, `when_int`, `profit`) VALUES (%s,%s,%s) ON DUPLICATE KEY UPDATE when_int=VALUES (when_int),profit=VALUES (profit);", (int(u2id),int(when),str(experience))); con.commit()
|
||||
except Exception as Err:
|
||||
print(f'err: {Err} (tg_bio_users)')
|
||||
#pass
|
||||
print(f'''{u1url} [@{u1id}] подверг(ла) {u2url} [@{u2id}] +{experience}''')#показать
|
||||
|
||||
|
||||
####################################################################
|
||||
|
||||
|
||||
@client.on(events.NewMessage(outgoing=True, pattern='.biofuck'))
|
||||
async def cmd_bf(event): #крч акуратно з цим,вдруг шо я нічо
|
||||
m = event.message
|
||||
when=int(datetime.timestamp(m.date))
|
||||
msg='🤷' # якщо нема кого то жри рандом.
|
||||
c.execute(f"SELECT * FROM `avocado` WHERE expr_int <= {when} ORDER BY expr_int,when_int ASC");
|
||||
e_info=c.fetchall()
|
||||
count = len(e_info)
|
||||
if count < 2:
|
||||
nema=f'🤷 рандом хавай.'
|
||||
await event.edit(nema) #ред
|
||||
print(nema)
|
||||
else:
|
||||
pong='✅ погнали...'
|
||||
await event.edit(pong) #ред
|
||||
print(f'є {count} потенційних пацієнтів. спробуєм їх сожрать')
|
||||
for row in e_info:
|
||||
rs = float(random.uniform(6,96)) #скільки спим: random
|
||||
eb = f'Биоеб {row[0]}' #повідомлення.
|
||||
m=await event.reply(eb)
|
||||
await asyncio.sleep(3.3)
|
||||
await client.delete_messages(event.chat_id,m.id)
|
||||
await asyncio.sleep(rs)
|
||||
|
||||
|
||||
####################################################################
|
||||
|
||||
|
||||
@client.on(events.NewMessage(outgoing=True, pattern='.l2f'))
|
||||
async def cmd_l2f(event): #Local->file/{id}.sqlite
|
||||
msg='для успішного виконання повинно бути обидві бази True'
|
||||
if db_pymysql:
|
||||
try:
|
||||
d.execute("SELECT * FROM `tg_iris_zarazy` WHERE who_id = %d ORDER BY when_int;" % int(my_id));
|
||||
bz_info = d.fetchall()#получить
|
||||
count=len(bz_info)
|
||||
if count==0:
|
||||
msg='🤷 інфа нема.'
|
||||
print(msg)
|
||||
else:
|
||||
saved=0
|
||||
for row in bz_info:
|
||||
print(row)
|
||||
id_user=int(row["user_id"])
|
||||
bio_int=int(row["bio_int"])
|
||||
bio_str=str(row["bio_str"])
|
||||
when_int=int(row["when_int"])
|
||||
expr_int=int(row["expr_int"])
|
||||
expr_str=str(re.sub(r'.20', r'.',row["expr_str"])) #.2024->.24
|
||||
user_url=str(f'tg://openmessage?user_id={id_user}') #fix для любителів мінять його
|
||||
if db_sqlite3:
|
||||
try:
|
||||
c.execute("INSERT INTO zarazy (user_id,when_int,bio_str,bio_int,expr_int,expr_str) VALUES (?, ?, ?, ?, ?, ?)", (int(id_user),int(when_int),str(bio_str),int(bio_int),int(expr_int),str(expr_str))); conn.commit()
|
||||
saved+=1
|
||||
except:
|
||||
try:
|
||||
c.execute("UPDATE zarazy SET when_int = :wh, bio_str = :xp, bio_int = :xpi, expr_int = :end, expr_str = :do WHERE user_id = :z AND when_int <= :wh;", {"wh":int(when_int),"xp":str(bio_str),"xpi":int(bio_int),"end":int(expr_int),"do":str(expr_str),"z":int(id_user)}); conn.commit()
|
||||
except Exception as Err:
|
||||
print(f'err: {Err} zarazy')
|
||||
msg=f"{saved} із {count}"
|
||||
else:
|
||||
msg='для успішного виконання повинно бути обидві бази True'
|
||||
except Exception as Err:
|
||||
print(f'err: {Err} zarazy localhost')
|
||||
msg=Err
|
||||
m=await event.reply(msg)
|
||||
await asyncio.sleep(5)
|
||||
await client.delete_messages(event.chat_id, [event.id, m.id])
|
||||
|
||||
|
||||
@client.on(events.NewMessage(outgoing=True, pattern='.ping'))
|
||||
async def cmd_ping(event):
|
||||
# Say "pong!" whenever you send "!ping", then delete both messages
|
||||
m = await event.reply('pong!')
|
||||
await asyncio.sleep(5)
|
||||
await client.delete_messages(event.chat_id, [event.id, m.id])
|
||||
|
||||
await client.run_until_disconnected()
|
||||
await client.run_until_disconnected()
|
||||
|
||||
asyncio.run(main())
|
||||
|
|
Loading…
Reference in a new issue