import { Snowflake } from 'discord.js'; import { DataTypes, Sequelize } from 'sequelize'; import { v4 as uuidv4 } from 'uuid'; import { BaseModel } from '..'; export enum ModLogType { PERM_BAN = 'PERM_BAN', TEMP_BAN = 'TEMP_BAN', UNBAN = 'UNBAN', KICK = 'KICK', PERM_MUTE = 'PERM_MUTE', TEMP_MUTE = 'TEMP_MUTE', UNMUTE = 'UNMUTE', WARN = 'WARN', PERM_PUNISHMENT_ROLE = 'PERM_PUNISHMENT_ROLE', TEMP_PUNISHMENT_ROLE = 'TEMP_PUNISHMENT_ROLE', REMOVE_PUNISHMENT_ROLE = 'REMOVE_PUNISHMENT_ROLE' } export interface ModLogModel { id: string; type: ModLogType; user: Snowflake; moderator: Snowflake; reason: string; duration: number; guild: Snowflake; } export interface ModLogModelCreationAttributes { id?: string; type: ModLogType; user: Snowflake; moderator: Snowflake; reason?: string; duration?: number; guild: Snowflake; } export class ModLog extends BaseModel implements ModLogModel { id: string; type: ModLogType; user: Snowflake; moderator: Snowflake; reason: string | null; duration: number | null; guild: Snowflake; static initModel(sequelize: Sequelize): void { ModLog.init( { id: { type: DataTypes.STRING, primaryKey: true, allowNull: false, defaultValue: uuidv4 }, type: { type: DataTypes.STRING, //# This is not an enum because of a sequelize issue: https://github.com/sequelize/sequelize/issues/2554 allowNull: false }, user: { type: DataTypes.STRING, allowNull: false }, moderator: { type: DataTypes.STRING, allowNull: false }, duration: { type: DataTypes.STRING, allowNull: true }, reason: { type: DataTypes.STRING, allowNull: true }, guild: { type: DataTypes.STRING, references: { model: 'Guilds', key: 'id' } } }, { sequelize: sequelize } ); } }