Use the api endpoint to only clean the keyvalue store for now. the messages should be handled by the external bot script

This commit is contained in:
Jeremy Zhang 2017-09-09 05:01:02 +00:00
parent 8be753b0c3
commit 1fac087b6d

View File

@ -411,18 +411,18 @@ def cleanup_keyval_db():
db.session.query(KeyValueProperties).filter(KeyValueProperties.expiration < datetime.datetime.now()).delete() db.session.query(KeyValueProperties).filter(KeyValueProperties.expiration < datetime.datetime.now()).delete()
db.session.commit() db.session.commit()
guilds = Guilds.query.all() # guilds = Guilds.query.all()
for guild in guilds: # for guild in guilds:
try: # try:
channelsjson = json.loads(guild.channels) # channelsjson = json.loads(guild.channels)
except: # except:
continue # continue
for channel in channelsjson: # for channel in channelsjson:
chanid = channel["id"] # chanid = channel["id"]
msgs = db.session.query(Messages).filter(Messages.channel_id == chanid).order_by(Messages.timestamp.desc()).offset(50).all() # msgs = db.session.query(Messages).filter(Messages.channel_id == chanid).order_by(Messages.timestamp.desc()).offset(50).all()
for msg in msgs: # for msg in msgs:
db.session.delete(msg) # db.session.delete(msg)
db.session.commit() # db.session.commit()
return ('', 204) return ('', 204)
abort(401) abort(401)