remotes/1693045480750635534/spooky-22
parent
2d8f18d9fb
commit
3586aa1219
|
@ -23,27 +23,6 @@ GUMROAD_TOKEN = environ.get("GUMROAD_TOKEN", "").strip()
|
|||
|
||||
month = datetime.now().strftime('%B')
|
||||
|
||||
|
||||
@app.get('/fix')
|
||||
@admin_level_required(3)
|
||||
def fix(v):
|
||||
li = g.db.query(Submission).filter(Submission.url.like('https://i.ibb.co/%.webp'), Submission.id < 17000).order_by(Submission.id).all()
|
||||
num = request.values.get('num')
|
||||
if num: li = li[:int(num)]
|
||||
for post in li:
|
||||
print(post.id, flush=True)
|
||||
try: req = requests.get(f"https://web.archive.org/{post.url}", timeout=1)
|
||||
except: continue
|
||||
if str(req) == '<Response [200]>':
|
||||
print(post.url, flush=True)
|
||||
post.url = req.url.replace('/https://i.ibb.co/','if_/https://i.ibb.co/')
|
||||
post.thumburl = post.url
|
||||
print(post.permalink, flush=True)
|
||||
g.db.add(post)
|
||||
g.db.commit()
|
||||
print('its over', flush=True)
|
||||
return 'sex'
|
||||
|
||||
@app.post('/admin/merge/<id1>/<id2>')
|
||||
@admin_level_required(3)
|
||||
def merge(v, id1, id2):
|
||||
|
|
Loading…
Reference in New Issue