TelegramStats/src/main.py

260 lines
6.0 KiB
Python
Executable File

#!/usr/bin/env python3
from telethon import TelegramClient, sync
from timeit import default_timer as timer
import configparser
import out
import math, datetime
import colorama
from colorama import Fore, Style
class Stat:
name = None
def __init__(self, name):
self.name = name
def addMsg(self, msgnum, msg, chat):
pass
def getValue(self, count):
out = ''
all = self.getAll(count)
if len(all) == 0:
return ''
if len(all) == 1:
return next(iter(all))
for name, val in all.items():
if out:
out = out + ", "
out = out + name + ": " + str(val)
return out
def getAll(self, count):
pass
def parse(self, val):
return str(val)
class Countable(Stat):
acc = 0
mult = 0
min = 1 << 31
max = 0
"""def getValue(self, count):
return "Min: " + self.getMin() + " Max: " + self.getMax() + " Gesamt: " \
+ self.getAcc() + " Avg: " + self.getAvg(count) + " Geom.Avg: " + self.getGAvg()
"""
def getMin(self):
return self.parse(self.min)
def getMax(self):
return self.parse(self.max)
def getAcc(self):
return self.parse(self.acc)
def getAvg(self, count):
return self.parse(int(self.acc / count))
def getGAvg(self):
return self.parse(math.sqrt(self.mult))
def getAll(self, count):
return {'min': self.getMin(), 'max': self.getMax(), 'count': self.getAcc(), 'avg': self.getAvg(count), 'gavg': self.getGAvg()}
def addMsg(self, msgnum, msg, chat):
count = self.count(msgnum, msg, chat)
if count > self.max:
self.max = count
if count < self.min:
self.min = count
self.acc = self.acc + count
self.mult = self.mult + (count * count)
def count(self, msgnum, msg, chat):
pass
class CharCount(Countable):
def __init__(self, name: str = "CharCount"):
super().__init__(name)
def count(self, msgnum, msg, chat):
if msg.message != None:
return len(msg.message)
return 0
class Dist(Countable):
prev = 0
def __init__(self, name: str = "Distanz"):
super().__init__(name)
def count(self, msgnum, msg, chat):
if msg.date != None:
old = self.prev
self.prev = msg.date
if old == 0:
return 0
return int((old - msg.date).total_seconds())
def parse(self, val):
return str(datetime.timedelta(seconds=val))
def getAvg(self, count):
if count < 2:
return -1
return self.parse(int(self.acc / (count-1))) # da hier die abstände zwischen nachrichten betrachtet werden ist es um 1 kleiner
class DiscreteCount(Stat):
list = {}
"""def getValue(self, count):
out = ''
# sorted_ = sorted(list.items(), key=lambda kv: kv[1])
for name, count in self.list.items():
if len(out) > 0:
out = out + ", "
out = out + name + ": " + str(count)
return out;"""
def getAll(self, count):
return self.list
class UserCount(DiscreteCount):
def __init__(self, name: str = "Msg/User"):
super().__init__(name)
def addMsg(self, msgnum, msg, chat):
global me
fromid = msg.from_id
self.list[fromid] = self.list.get(fromid, 0) + 1
def getAll(self, count):
# replace ids with names
newdict = {}
for id, count in self.list.items():
newdict[getUsernamebyID(id)] = count
return newdict
def printDialog(interid, d): # debug only
color = ''
if interid & 1:
color = Fore.LIGHTBLACK_EX
print(color + '{0:3d}| {1:14d} | {2:30} | {3:1}'.format(interid, d.id, d.name, d.pinned) + Fore.RESET)
def getUsernamebyID(userid):
global dialogs
for d in dialogs:
if d.id == userid:
return d.name
return "Unknown" # refresh dialog cache?
def analyseChat(dialog, output):
print(Fore.GREEN + 'Lade kompletten Chat: ' + Fore.RESET, dialog.name, sep='')
# chat = client.get_messages(selectedDialog)
chat = client.iter_messages(dialog, limit=None)
# run messure
msgnum = 0
for msg in chat:
if msg != None:
msgnum = msgnum + 1
for stat in stats:
stat.addMsg(msgnum, msg, dialog)
print(Fore.BLUE, msgnum, Fore.MAGENTA + 'Nachrichten Analysiert' + Fore.RESET)
# write to output
output.print(stats, msgnum, dialog)
# ==================================
# MAIN program
if __name__ == "__main__":
stats = {
CharCount(),
Dist(),
UserCount()
}
outputs = {
"stdout": out.STDOUT(),
"json": out.jsonOut()
# TODO: add csv,xml,yaml maybe sqlite or mysql?
}
# read config
try:
config = configparser.ConfigParser()
config.read('config.ini')
api_id = int(config.get('Main', 'api_id'))
api_hash = config.get('Main', 'api_hash')
session_name = config.get('Main', 'user')
except (configparser.NoSectionError, configparser.NoOptionError, ValueError):
print('invalid config.ini')
exit(3)
client = TelegramClient(session_name, api_id, api_hash)
client.start()
me = client.get_me()
print('me.id: ', me.id)
# get dialogs
dialogs = client.get_dialogs()
dialogCount = len(dialogs)
print(Fore.YELLOW, dialogCount, Fore.GREEN + 'Chats geladen.' + Fore.RESET)
#select output
while True:
uinput = input("Bitte Ausgabemethode wählen: [stdout,json] (stdout): ").strip().lower();
if uinput == "":
uinput = "stdout"
try:
out = outputs[uinput]
break
except KeyError:
pass # try again
outfile = None
if out.needsFilename:
outfile = input("Bitte Dateinamen eingeben: ").strip()
out.open(outfile)
#select chat
print(' ID | Internal ID | Username | pinned\n———+————————————————+————————————————————————————————+———————')
interid = 0
for d in dialogs:
printDialog(interid, d)
interid = interid + 1
uinput = input('Bitte ' + Fore.BLUE + 'chatid' + Fore.RESET + ' oder "' + Fore.BLUE + 'all' + Fore.RESET + '" eingeben: ').strip().lower() # TODO: select more than one or all
start = timer()
if uinput == 'all':
for d in dialogs:
analyseChat(d, out)
else:
get = int(uinput)
if get < 0 or get >= dialogCount: #TODO: detect user by username, name, tg-id
print("unbekannte Chat ID!")
exit(1)
analyseChat(dialogs[get], out)
out.close()
took = datetime.timedelta(seconds=(timer()-start))
took = datetime.timedelta(seconds=int(took.total_seconds()))
print(Fore.GREEN + "Fertig. Benötigte Zeit: " + Fore.YELLOW, took, Style.RESET_ALL)