forked from rDrama/rDrama
1
0
Fork 0

Revert "remove the logic for fixing old mentions"

This reverts commit 90f6f0b96e.
master
Aevann1 2022-12-17 21:05:29 +02:00
parent 0eaf075e0d
commit 5e9e1872af
1 changed files with 17 additions and 0 deletions

View File

@ -20,6 +20,23 @@ from files.routes.wrappers import *
from .front import frontlist
my = re.compile('.*?(src="\/uid\/([0-9]?[a-zA-Z]+[0-9]?)\/pic\/profile").*?', flags=re.I)
@app.get('/admin/fix')
@admin_level_required(3)
def fix_36(v):
comments = g.db.query(Submission).filter(Submission.body_html.op("SIMILAR TO")('%src="/uid/[0-9]?[a-zA-Z]+[0-9]?/pic/profile"%')).all() + g.db.query(Comment).filter(Comment.body_html.op("SIMILAR TO")('%src="/uid/[0-9]?[a-zA-Z]+[0-9]?/pic/profile"%')).all()
for c in comments:
print(c.id, flush=True)
for i in my.finditer(c.body_html):
b36 = i.group(2)
print(f"b36: {b36}")
b10 = int(b36, 36)
print(f"b10: {b10}")
new = f'src="/uid/{b10}/pic"'
c.body_html = c.body_html.replace(i.group(1), new)
return 'nig'
@app.post('/kippy')
@admin_level_required(PERMS['PRINT_MARSEYBUX_FOR_KIPPY_ON_PCMEMES'])
def kippy(v):