mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 10:22:43 +01:00
20 lines
1.2 KiB
Python
20 lines
1.2 KiB
Python
|
from titanembeds.database import db, Base
|
||
|
import datetime
|
||
|
import time
|
||
|
import random
|
||
|
import string
|
||
|
|
||
|
class UnauthenticatedUsers(Base):
|
||
|
__tablename__ = "unauthenticated_users"
|
||
|
id = db.Column(db.Integer, primary_key=True) # Auto increment id
|
||
|
guild_id = db.Column(db.String(255)) # Guild pretaining to the unauthenticated user
|
||
|
username = db.Column(db.String(255)) # The username of the user
|
||
|
discriminator = db.Column(db.Integer) # The discriminator to distinguish unauth users with each other
|
||
|
user_key = db.Column(db.Text()) # The secret key used to identify the user holder
|
||
|
ip_address = db.Column(db.String(255)) # The IP Address of the user
|
||
|
last_timestamp = db.Column(db.TIMESTAMP) # The timestamp of when the user has last sent the heartbeat
|
||
|
revoked = db.Column(db.Boolean()) # If the user's key has been revoked and a new one is required to be generated
|
||
|
|
||
|
def __repr__(self):
|
||
|
return '<UnauthenticatedUsers {0} {1} {2} {3} {4} {5} {6} {7}>'.format(self.id, self.guild_id, self.username, self.discriminator, self.user_key, self.ip_address, self.last_timestamp, self.revoked)
|