Skip to content

Instantly share code, notes, and snippets.

@ermkmandawar
Last active May 8, 2024 17:30
Show Gist options
  • Save ermkmandawar/377291bc1c2e77432cd5cb52bf876886 to your computer and use it in GitHub Desktop.
Save ermkmandawar/377291bc1c2e77432cd5cb52bf876886 to your computer and use it in GitHub Desktop.
ott.py
from datetime import datetime, timedelta
from sys import argv, exit
from telethon import TelegramClient, events, connection
from telethon.tl.types import UserStatusRecently, UserStatusEmpty, UserStatusOnline, UserStatusOffline, PeerUser, PeerChat, PeerChannel
from time import mktime, sleep
import telethon.sync
from threading import Thread
import collections
DATETIME_FORMAT = '%Y-%m-%d %H:%M:%S'
API_HASH = '623970d353641572d86ace787f13eb98'
API_ID = '17418799'
BOT_TOKEN = "7135223002:AAFRVTY2nB_5VLejZP2UHwNHNT92-3kfE-4"
USER_NAME = "@onlineTimeTrackerBot"
client = TelegramClient('data_ef', API_ID, API_HASH)
client.connect()
client.start()
bot = TelegramClient('bot', API_ID, API_HASH).start(bot_token=BOT_TOKEN)
data = {}
help_messages = ['/start - start online monitoring ',
'/stop - stop online monitoring ',
'/help - show help ',
'/add - add user to monitoring list "/add +79991234567 UserName"',
'/list - show added users',
'/clear - clear user list',
'/remove - remove user from list with position in list (to show use /list command)"/remove 1"',
'/setdelay - set delay between user check in seconds',
'/logs - display command log',
'/clearlogs - clear the command log file',
'/cleardata - reset configuration',
'/disconnect - disconnect bot',
'/getall - status']
print('running')
class Contact:
online = None
last_offline = None
last_online = None
id = ''
name = ''
def __init__(self, id, name):
self.id = id
self.name = name
def __str__(self):
return f'{self.name}: {self.id}'
@bot.on(events.NewMessage(pattern='^/logs$'))
async def logs(event):
"""Send a message when the command /start is issued."""
str = ''
with open('spy_log.txt', 'r') as file:
str = file.read()
await event.respond(str)
@bot.on(events.NewMessage(pattern='/clearlogs$'))
async def clearLogs(event):
"""Send a message when the command /start is issued."""
open('spy_log.txt', 'w').close()
await event.respond('logs has been deleted')
@bot.on(events.NewMessage(pattern='^/clear$'))
async def clear(event):
"""Send a message when the command /start is issued."""
message = event.message
id = message.chat_id
data[id] = {}
await event.respond('User list has been cleared')
@bot.on(events.NewMessage(pattern='^/help$'))
async def help(event):
await event.respond('\n'.join(help_messages))
@bot.on(events.NewMessage())
async def log(event):
"""Send a message when the command /start is issued."""
message = event.message
id = message.chat_id
str = f'{datetime.now().strftime(DATETIME_FORMAT)}: [{id}]: {message.message}'
printToFile(str)
#await bot.send_message(entity=entity,message=str)
#await event.respond('cleared')
@bot.on(events.NewMessage(pattern='^/stop$'))
async def stop(event):
"""Send a message when the command /start is issued."""
message = event.message
id = message.chat_id
if id not in data:
data[id] = {}
user_data = data[id]
user_data['is_running'] = False
await event.respond('Monitoring has been stopped')
@bot.on(events.NewMessage(pattern='^/cleardata$'))
async def clearData(event):
data.clear()
await event.respond('Data has been cleared')
@bot.on(events.NewMessage(pattern='^/start$'))
async def start(event):
message = event.message
id = message.chat_id
if id not in data:
data[id] = {}
user_data = data[id]
if('is_running' in user_data and user_data['is_running']):
await event.respond('Spy is already started')
return
if 'contacts' not in user_data:
user_data['contacts'] = []
contacts = user_data['contacts']
if(len(contacts) < 1):
await event.respond('No contacts added')
return
await event.respond('Monitoring has been started')
counter = 0
user_data['is_running'] = True
while True:
user_data = data[id]
if(not user_data['is_running'] or len(contacts) < 1):
break;
print(f'running {id}: {counter}')
counter+=1
for contact in contacts:
print(contact)
account = await client.get_entity(contact.id)
if isinstance(account.status, UserStatusOnline):
if contact.online != True:
contact.online = True
contact.last_offline = datetime.now()
was_offline='unknown offline time'
if contact.last_online is not None:
was_offline = (contact.last_offline - contact.last_online).strftime(DATETIME_FORMAT)
await event.respond(f'{get_interval(was_offline)}: {contact.name} went online.')
elif isinstance(account.status, UserStatusOffline):
if contact.online == True:
contact.online = False
last_time_online = utc2localtime(account.status.was_online)
if (last_time_online is None):
last_time_online = datetime.now()
contact.last_online = account.status.was_online
was_online='unknown online time'
if contact.last_offline is not None:
was_online = (contact.last_online - contact.last_offline).strftime(DATETIME_FORMAT)
await event.respond(f'{get_interval(was_online)} {contact.name} went offline.')
contact.last_offline = None
else:
if contact.online == True:
contact.online = False
contact.last_online = datetime.now()
was_online='unknown online time'
if contact.last_offline is not None:
was_online = (contact.last_online - contact.las_offline).strftime(DATETIME_FORMAT)
await event.respond(f'{get_interval(was_online)}: {contact.name} went offline.')
contact.last_offline = None
delay = 5
if('delay' in user_data):
delay = user_data['delay']
sleep(delay)
user_data['is_running'] = False
await event.respond(f'Spy gonna zzzzzz...')
@bot.on(events.NewMessage(pattern='^/add'))
async def add(event):
message = event.message
person_info = message.message.split()
print(person_info)
phone = person_info[1]
name = person_info[2]
id = message.chat_id
if id not in data:
data[id] = {}
user_data = data[id]
if 'contacts' not in user_data:
user_data['contacts'] = []
contacts = user_data['contacts']
contact = Contact(phone, name)
contacts.append(contact)
await event.respond(f'{name}: {phone} has been added')
@bot.on(events.NewMessage(pattern='^/remove'))
async def remove(event):
message = event.message
person_info = message.message.split()
print(person_info)
index = int(person_info[1])
id = message.chat_id
if id not in data:
data[id] = {}
user_data = data[id]
if 'contacts' not in user_data:
user_data['contacts'] = []
contacts = user_data['contacts']
if(len(contacts) > index):
del contacts[index]
await event.respond(f'User №{index} has been deleted')
else:
await event.respond('Incorrect index')
@bot.on(events.NewMessage(pattern='^/setdelay'))
async def setDelay(event):
message = event.message
person_info = message.message.split()
print(person_info)
index = int(person_info[1])
id = message.chat_id
if id not in data:
data[id] = {}
user_data = data[id]
print(index)
if(index >= 0):
user_data['delay'] = index
await event.respond(f'Delay has been updated to {index}')
else:
await event.respond('Incorrect delay')
@bot.on(events.NewMessage(pattern='^/disconnect$'))
async def disconnect(event):
await event.respond('Bot gonna disconnect')
await bot.disconnect()
@bot.on(events.NewMessage(pattern='/list'))
async def list(event):
message = event.message
id = message.chat_id
if id not in data:
data[id] = {}
user_data = data[id]
if 'contacts' not in user_data:
user_data['contacts'] = []
contacts = user_data['contacts']
response = 'List is empty'
if(len(contacts)):
response = 'User list: \n'+'\n'.join([str(x) for x in contacts])
await event.respond(response)
@bot.on(events.NewMessage(pattern='/getall'))
async def getAll(event):
response = ''
for key, value in data.items():
response += f'{key}:\n'
for j, i in value.items():
if (isinstance(i, collections.Sequence)):
response += f'{j}: ' + '\n'.join([str(x) for x in i]) + '\n'
else:
response += f'{j}: {i}\n'
response += '\n'
await event.respond(response)
def main():
"""Start the bot."""
bot.run_until_disconnected()
def utc2localtime(utc):
pivot = mktime(utc.timetuple())
offset = datetime.fromtimestamp(pivot) - datetime.utcfromtimestamp(pivot)
return utc + offset
def printToFile(str):
file_name = 'spy_log.txt'
with open(file_name,'a') as f:
print(str)
f.write(str + '\n')
def get_interval(date):
d = divmod(date.total_seconds(),86400) # days
h = divmod(d[1],3600) # hours
m = divmod(h[1],60) # minutes
s = m[1] # seconds
return '%dh:%dm:%ds' % (h[0],m[0],s)
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment