-
Notifications
You must be signed in to change notification settings - Fork 0
/
quote.py
444 lines (398 loc) · 16.3 KB
/
quote.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
# oreo
"""
✘ Commands Available -
• `{i}qbot <reply>`
Make sticker quote without QuotlyBot
"""
import json
import os
import random
import textwrap
import urllib
import emoji
from fontTools.ttLib import TTFont
from PIL import Image, ImageDraw, ImageFont, ImageOps
from telethon.tl import functions, types
from telethon.errors.rpcerrorlist import UserNotParticipantError
from . import *
# oreo
COLORS = [
"#F07975",
"#F49F69",
"#F9C84A",
"#8CC56E",
"#6CC7DC",
"#80C1FA",
"#BCB3F9",
"#E181AC",
]
async def process(msg, user, client, reply, replied=None):
# Importıng fonts and gettings the size of text
font = ImageFont.truetype(
"resources/fonts/Roboto-Medium.ttf", 43, encoding="utf-16"
)
font2 = ImageFont.truetype(
"resources/fonts/Roboto-Regular.ttf", 33, encoding="utf-16"
)
mono = ImageFont.truetype(
"resources/fonts/DroidSansMono.ttf", 30, encoding="utf-16"
)
italic = ImageFont.truetype(
"resources/fonts/Roboto-Italic.ttf", 33, encoding="utf-16"
)
fallback = ImageFont.truetype("resources/fonts/Quivira.otf", 43, encoding="utf-16")
# Splitting text
maxlength = 0
width = 0
text = []
for line in msg.split("\n"):
length = len(line)
if length > 43:
text += textwrap.wrap(line, 43)
maxlength = 43
if width < fallback.getsize(line[:43])[0]:
if "MessageEntityCode" in str(reply.entities):
width = mono.getsize(line[:43])[0] + 30
else:
width = fallback.getsize(line[:43])[0]
else:
text.append(line + "\n")
if width < fallback.getsize(line)[0]:
if "MessageEntityCode" in str(reply.entities):
width = mono.getsize(line)[0] + 30
else:
width = fallback.getsize(line)[0]
if maxlength < length:
maxlength = length
title = ""
try:
details = await client(
functions.channels.GetParticipantRequest(reply.chat_id, user.id)
)
if isinstance(details.participant, types.ChannelParticipantCreator):
title = details.participant.rank if details.participant.rank else "Creator"
elif isinstance(details.participant, types.ChannelParticipantAdmin):
title = details.participant.rank if details.participant.rank else "Admin"
except (TypeError, UserNotParticipantError):
pass
except Exception as er:
LOGS.exception(er)
titlewidth = font2.getsize(title)[0]
# Get user name
lname = "" if not user.last_name else user.last_name
tot = user.first_name + " " + lname
namewidth = fallback.getsize(tot)[0] + 10
if namewidth > width:
width = namewidth
width += titlewidth + 30 if titlewidth > width - namewidth else -(titlewidth - 30)
height = len(text) * 40
# Profile Photo BG
pfpbg = Image.new("RGBA", (125, 600), (0, 0, 0, 0))
# Draw Template
top, middle, bottom = await drawer(width, height)
# Profile Photo Check and Fetch
yes = False
color = random.choice(COLORS)
async for photo in client.iter_profile_photos(user, limit=1):
yes = True
if yes:
pfp = await client.download_profile_photo(user)
paste = Image.open(pfp)
os.remove(pfp)
paste.thumbnail((105, 105))
# Mask
mask_im = Image.new("L", paste.size, 0)
draw = ImageDraw.Draw(mask_im)
draw.ellipse((0, 0, 105, 105), fill=255)
# Apply Mask
pfpbg.paste(paste, (0, 0), mask_im)
else:
paste, color = await no_photo(user, tot)
pfpbg.paste(paste, (0, 0))
# Creating a big canvas to gather all the elements
canvassize = (
middle.width + pfpbg.width,
top.height + middle.height + bottom.height,
)
canvas = Image.new("RGBA", canvassize)
draw = ImageDraw.Draw(canvas)
y = 80
if replied:
# Creating a big canvas to gather all the elements
replname = "" if not replied.sender.last_name else replied.sender.last_name
fname = "" if not replied.sender.first_name else replied.sender.first_name
reptot = fname + " " + replname
if reply.sticker:
sticker = await reply.download_media()
stimg = Image.open(sticker)
canvas = canvas.resize((stimg.width + pfpbg.width, stimg.height + 160))
top = Image.new("RGBA", (200 + stimg.width, 300), (29, 29, 29, 255))
draw = ImageDraw.Draw(top)
await replied_user(
draw, reptot, replied.message.replace("\n", " "), 20, len(title)
)
top = top.crop((135, 70, top.width, 300))
canvas.paste(pfpbg, (0, 0))
canvas.paste(top, (pfpbg.width + 10, 0))
canvas.paste(stimg, (pfpbg.width + 10, 140))
os.remove(sticker)
return True, canvas
canvas = canvas.resize((canvas.width + 60, canvas.height + 120))
top, middle, bottom = await drawer(middle.width + 60, height + 105)
canvas.paste(pfpbg, (0, 0))
canvas.paste(top, (pfpbg.width, 0))
canvas.paste(middle, (pfpbg.width, top.height))
canvas.paste(bottom, (pfpbg.width, top.height + middle.height))
draw = ImageDraw.Draw(canvas)
if replied.sticker:
replied.text = "Sticker"
elif replied.photo:
replied.text = "Photo"
elif replied.audio:
replied.text = "Audio"
elif replied.voice:
replied.text = "Voice Message"
elif replied.document:
replied.text = "Document"
await replied_user(
draw,
reptot,
replied.message.replace("\n", " "),
maxlength + len(title),
len(title),
)
y = 200
elif reply.sticker:
sticker = await reply.download_media()
stimg = Image.open(sticker)
canvas = canvas.resize((stimg.width + pfpbg.width + 30, stimg.height + 10))
canvas.paste(pfpbg, (0, 0))
canvas.paste(stimg, (pfpbg.width + 10, 10))
os.remove(sticker)
return True, canvas
elif reply.document and not reply.audio and not reply.audio:
docname = ".".join(reply.document.attributes[-1].file_name.split(".")[:-1])
doctype = reply.document.attributes[-1].file_name.split(".")[-1].upper()
if reply.document.size < 1024:
docsize = str(reply.document.size) + " Bytes"
elif reply.document.size < 1048576:
docsize = str(round(reply.document.size / 1024, 2)) + " KB "
elif reply.document.size < 1073741824:
docsize = str(round(reply.document.size / 1024**2, 2)) + " MB "
else:
docsize = str(round(reply.document.size / 1024**3, 2)) + " GB "
docbglen = (
font.getsize(docsize)[0]
if font.getsize(docsize)[0] > font.getsize(docname)[0]
else font.getsize(docname)[0]
)
canvas = canvas.resize((pfpbg.width + width + docbglen, 160 + height))
top, middle, bottom = await drawer(width + docbglen, height + 30)
canvas.paste(pfpbg, (0, 0))
canvas.paste(top, (pfpbg.width, 0))
canvas.paste(middle, (pfpbg.width, top.height))
canvas.paste(bottom, (pfpbg.width, top.height + middle.height))
canvas = await doctype(docname, docsize, doctype, canvas)
y = 80 if text else 0
else:
canvas.paste(pfpbg, (0, 0))
canvas.paste(top, (pfpbg.width, 0))
canvas.paste(middle, (pfpbg.width, top.height))
canvas.paste(bottom, (pfpbg.width, top.height + middle.height))
y = 85
# Writing User's Name
space = pfpbg.width + 30
namefallback = ImageFont.truetype(
"resources/fonts/Quivira.otf", 43, encoding="utf-16"
)
for letter in tot:
if letter in emoji.UNICODE_EMOJI:
newemoji, mask = await emoji_fetch(letter)
canvas.paste(newemoji, (space, 24), mask)
space += 40
else:
if not await fontTest(letter):
draw.text((space, 20), letter, font=namefallback, fill=color)
space += namefallback.getsize(letter)[0]
else:
draw.text((space, 20), letter, font=font, fill=color)
space += font.getsize(letter)[0]
if title:
draw.text(
(canvas.width - titlewidth - 20, 25), title, font=font2, fill="#898989"
)
# Writing all separating emojis and regular texts
x = pfpbg.width + 30
bold, mono, italic, link = await get_entity(reply)
index = 0
emojicount = 0
textfallback = ImageFont.truetype(
"resources/fonts/Quivira.otf", 33, encoding="utf-16"
)
textcolor = "white"
for line in text:
for letter in line:
index = (
msg.find(letter) if emojicount == 0 else msg.find(letter) + emojicount
)
for offset, length in bold.items():
if index in range(offset, length):
font2 = ImageFont.truetype(
"resources/fonts/Roboto-Medium.ttf", 33, encoding="utf-16"
)
textcolor = "white"
for offset, length in italic.items():
if index in range(offset, length):
font2 = ImageFont.truetype(
"resources/fonts/Roboto-Italic.ttf", 33, encoding="utf-16"
)
textcolor = "white"
for offset, length in mono.items():
if index in range(offset, length):
font2 = ImageFont.truetype(
"resources/fonts/DroidSansMono.ttf", 30, encoding="utf-16"
)
textcolor = "white"
for offset, length in link.items():
if index in range(offset, length):
font2 = ImageFont.truetype(
"resources/fonts/Roboto-Regular.ttf", 30, encoding="utf-16"
)
textcolor = "#898989"
if letter in emoji.UNICODE_EMOJI:
newemoji, mask = await emoji_fetch(letter)
canvas.paste(newemoji, (x, y - 2), mask)
x += 45
emojicount += 1
else:
if not await fontTest(letter):
draw.text((x, y), letter, font=textfallback, fill=textcolor)
x += textfallback.getsize(letter)[0]
else:
draw.text((x, y), letter, font=font2, fill=textcolor)
x += font2.getsize(letter)[0]
msg = msg.replace(letter, "¶", 1)
y += 40
x = pfpbg.width + 30
return True, canvas
async def drawer(width, height):
# Top part
top = Image.new("RGBA", (width, 20), (0, 0, 0, 0))
draw = ImageDraw.Draw(top)
draw.line((10, 0, top.width - 20, 0), fill=(29, 29, 29, 255), width=50)
draw.pieslice((0, 0, 30, 50), 180, 270, fill=(29, 29, 29, 255))
draw.pieslice((top.width - 75, 0, top.width, 50), 270, 360, fill=(29, 29, 29, 255))
# Middle part
middle = Image.new("RGBA", (top.width, height + 75), (29, 29, 29, 255))
# Bottom part
bottom = ImageOps.flip(top)
return top, middle, bottom
async def fontTest(letter):
test = TTFont("resources/fonts/Roboto-Medium.ttf")
for table in test["cmap"].tables:
if ord(letter) in table.cmap.keys():
return True
async def get_entity(msg):
bold = {0: 0}
italic = {0: 0}
mono = {0: 0}
link = {0: 0}
if not msg.entities:
return bold, mono, italic, link
for entity in msg.entities:
if isinstance(entity, types.MessageEntityBold):
bold[entity.offset] = entity.offset + entity.length
elif isinstance(entity, types.MessageEntityItalic):
italic[entity.offset] = entity.offset + entity.length
elif isinstance(entity, types.MessageEntityCode):
mono[entity.offset] = entity.offset + entity.length
elif isinstance(entity, types.MessageEntityUrl):
link[entity.offset] = entity.offset + entity.length
elif isinstance(entity, types.MessageEntityTextUrl):
link[entity.offset] = entity.offset + entity.length
elif isinstance(entity, types.MessageEntityMention):
link[entity.offset] = entity.offset + entity.length
return bold, mono, italic, link
async def doctype(name, size, _type, canvas):
font = ImageFont.truetype("resources/fonts/Roboto-Medium.ttf", 38)
doc = Image.new("RGBA", (130, 130), (29, 29, 29, 255))
draw = ImageDraw.Draw(doc)
draw.ellipse((0, 0, 130, 130), fill="#434343")
draw.line((66, 28, 66, 53), width=14, fill="white")
draw.polygon([(67, 77), (90, 53), (42, 53)], fill="white")
draw.line((40, 87, 90, 87), width=8, fill="white")
canvas.paste(doc, (160, 23))
draw2 = ImageDraw.Draw(canvas)
draw2.text((320, 40), name, font=font, fill="white")
draw2.text((320, 97), size + _type, font=font, fill="#AAAAAA")
return canvas
async def no_photo(reply, tot):
pfp = Image.new("RGBA", (105, 105), (0, 0, 0, 0))
pen = ImageDraw.Draw(pfp)
color = random.choice(COLORS)
pen.ellipse((0, 0, 105, 105), fill=color)
letter = "" if not tot else tot[0]
font = ImageFont.truetype("resources/fonts/Roboto-Regular.ttf", 60)
pen.text((32, 17), letter, font=font, fill="white")
return pfp, color
async def emoji_fetch(emoji):
emojis = json.loads(
urllib.request.urlopen(
"https://github.com/erenmetesar/modules-repo/raw/master/emojis.txt"
)
.read()
.decode()
)
if emoji in emojis:
img = emojis[emoji]
return await transparent(
urllib.request.urlretrieve(img, "resources/emoji.png")[0]
)
img = emojis["⛔"]
return await transparent(urllib.request.urlretrieve(img, "resources/emoji.png")[0])
async def transparent(emoji):
emoji = Image.open(emoji).convert("RGBA")
emoji.thumbnail((40, 40))
# Mask
mask = Image.new("L", (40, 40), 0)
draw = ImageDraw.Draw(mask)
draw.ellipse((0, 0, 40, 40), fill=255)
return emoji, mask
async def replied_user(draw, tot, text, maxlength, title):
namefont = ImageFont.truetype("resources/fonts/Roboto-Medium.ttf", 38)
namefallback = ImageFont.truetype("resources/fonts/Quivira.otf", 38)
textfont = ImageFont.truetype("resources/fonts/Roboto-Regular.ttf", 32)
textfallback = ImageFont.truetype("resources/fonts/Roboto-Medium.ttf", 38)
maxlength = maxlength + 7 if maxlength < 10 else maxlength
text = text[: maxlength - 2] + ".." if len(text) > maxlength else text
draw.line((165, 90, 165, 170), width=5, fill="white")
space = 0
for letter in tot:
if not await fontTest(letter):
draw.text((180 + space, 86), letter, font=namefallback, fill="#888888")
space += namefallback.getsize(letter)[0]
else:
draw.text((180 + space, 86), letter, font=namefont, fill="#888888")
space += namefont.getsize(letter)[0]
space = 0
for letter in text:
if not await fontTest(letter):
draw.text((180 + space, 132), letter, font=textfallback, fill="#888888")
space += textfallback.getsize(letter)[0]
else:
draw.text((180 + space, 132), letter, font=textfont, fill="white")
space += textfont.getsize(letter)[0]
@oreo_cmd(pattern="qbot$")
async def _(event):
reply = await event.get_reply_message()
msg = reply.message
repliedreply = await reply.get_reply_message()
user = await reply.get_sender()
res, canvas = await process(msg, user, event.client, reply, repliedreply)
if not res:
return
canvas.save("sticker.webp")
await event.client.send_file(
event.chat_id, "sticker.webp", reply_to=event.reply_to_msg_id
)
os.remove("sticker.webp")