Titan/discordbot/titanembeds/database/guilds.py

40 lines
2.1 KiB
Python
Raw Normal View History

2017-05-04 05:22:27 +02:00
from titanembeds.database import db, Base
class Guilds(Base):
__tablename__ = "guilds"
id = db.Column(db.Integer, primary_key=True) # Auto incremented id
guild_id = db.Column(db.String(255)) # Discord guild id
name = db.Column(db.String(255)) # Name
2017-05-04 05:22:27 +02:00
unauth_users = db.Column(db.Boolean()) # If allowed unauth users
visitor_view = db.Column(db.Boolean()) # If users are automatically "signed in" and can view chat
webhook_messages = db.Column(db.Boolean()) # Use webhooks to send messages instead of the bot
chat_links = db.Column(db.Boolean()) # If users can post links
bracket_links = db.Column(db.Boolean()) # If appending brackets to links to prevent embed
mentions_limit = db.Column(db.Integer) # If there is a limit on the number of mentions in a msg
2017-09-05 08:54:54 +02:00
roles = db.Column(db.Text().with_variant(db.Text(length=4294967295), 'mysql')) # Guild Roles
channels = db.Column(db.Text().with_variant(db.Text(length=4294967295), 'mysql'))# Guild channels
webhooks = db.Column(db.Text().with_variant(db.Text(length=4294967295), 'mysql'))# Guild webhooks
emojis = db.Column(db.Text().with_variant(db.Text(length=4294967295), 'mysql')) # Guild Emojis
owner_id = db.Column(db.String(255)) # Snowflake of the owner
icon = db.Column(db.String(255)) # The icon string, null if none
discordio = db.Column(db.String(255)) # Custom Discord.io Invite Link
2017-05-04 05:22:27 +02:00
def __init__(self, guild_id, name, roles, channels, webhooks, emojis, owner_id, icon):
2017-05-04 05:22:27 +02:00
self.guild_id = guild_id
self.name = name
2017-05-04 05:22:27 +02:00
self.unauth_users = True # defaults to true
self.visitor_view = False
self.webhook_messages = False
self.chat_links = True
self.bracket_links = True
self.mentions_limit = -1 # -1 = unlimited mentions
self.roles = roles
self.channels = channels
self.webhooks = webhooks
2017-05-30 00:07:32 +02:00
self.emojis = emojis
self.owner_id = owner_id
self.icon = icon
2017-05-04 05:22:27 +02:00
def __repr__(self):
return '<Guilds {0} {1}>'.format(self.id, self.guild_id)