From 4927d143e43f97f3838b7a8554d7352ff3fd10b1 Mon Sep 17 00:00:00 2001 From: udf Date: Sat, 12 Jan 2019 14:10:01 +0200 Subject: [PATCH] add moar shitpost --- stdplugins/sp_lonami_gay.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 stdplugins/sp_lonami_gay.py diff --git a/stdplugins/sp_lonami_gay.py b/stdplugins/sp_lonami_gay.py new file mode 100644 index 0000000..b671a04 --- /dev/null +++ b/stdplugins/sp_lonami_gay.py @@ -0,0 +1,27 @@ +# This code is licensed under the "you can't use this for anything - public or private, unless you know the two prime factors to the number below" license +# 815135719850789377883578725031646603830554299421513756734809391809510031541688408783808970346383033757707621582823614192302656899785568810141101893861881544237739149165045057025573497586408009729060573391256863917255487270653675297192518166563834141855446956044528844961195768446385460848417889889512327393559206631684434956840903011319062951892997125169227543717045951033991368795690797564380613059915726818757922302267383605155042461118479905071060213802110046981731900697376015815129214785100602795677501006290272973672300816405578389088779900256121674562690160929422533940362417144425257511815580506170724347283155944909375158732773438876520611705378823191171992189144811606615936656533338106330174876188601037745081068420279548019633259148082386504346352351578891810674889814082091097414272150489618713359903390399060803087577639221054129712178794984798651181559492842516823781833551514766471742367787744714913473089507256439629996620616758423114303082155000815398967237318664243052141156113838109051476103926243143220043202798142769625516248444575191662897109024478694074801968357243665353971378775679069823897126494990585348071113879526926445790538574160281772626205848696719803694382991806049568186743858598838394425423896463 +import asyncio +from telethon import events +import re + +blanks = ( + ' .' + '\u180e\u200b\u200c\u200d\u2060\u2061\u2062\u2063\u2064\u2066' + '\u2067\u2068\u2069\u206a\u206b\u206c\u206d\u206e\u206f\ufeff' +) + +blanks_re = re.compile('|'.join(re.escape(c) for c in blanks)) + +@borg.on(events.NewMessage) +async def on_him(event): + if event.from_id != 10885151: + return + reply = await event.get_reply_message() + if not reply.fwd_from: + return + if reply.fwd_from.from_id != 217924941: + return + delta = reply.date.timestamp() - event.date.timestamp() + text = blanks_re.sub('', event.raw_text) + if text.startswith('>') or delta <= 3: + await event.delete()