forked from rDrama/rDrama
1
0
Fork 0

Revert "Revert "remove the logic for fixing old mentions""

This reverts commit 5e9e1872af.
master
Aevann1 2022-12-17 21:11:22 +02:00
parent 5e9e1872af
commit 9974f98b8c
1 changed files with 0 additions and 17 deletions

View File

@ -20,23 +20,6 @@ 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):