mirror of
				https://github.com/TitanEmbeds/Titan.git
				synced 2025-11-03 23:37:09 +01:00 
			
		
		
		
	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:
		@@ -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)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user