PineaFan | e6ba788 | 2023-01-18 20:41:16 +0000 | [diff] [blame] | 1 | import type { GuildAuditLogsEntry, GuildBan, User } from "discord.js"; |
| 2 | import { AuditLogEvent } from "discord.js"; |
PineaFan | 752af46 | 2022-12-31 21:59:38 +0000 | [diff] [blame] | 3 | import type { NucleusClient } from "../utils/client.js"; |
pineafan | e625d78 | 2022-05-09 18:04:32 +0100 | [diff] [blame] | 4 | |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 5 | export const event = "guildBanRemove"; |
pineafan | e625d78 | 2022-05-09 18:04:32 +0100 | [diff] [blame] | 6 | |
PineaFan | 752af46 | 2022-12-31 21:59:38 +0000 | [diff] [blame] | 7 | export async function callback(client: NucleusClient, ban: GuildBan) { |
TheCodedProf | 6ec331b | 2023-02-20 12:13:06 -0500 | [diff] [blame] | 8 | const { log, isLogging, NucleusColors, entry, renderUser, renderDelta, getAuditLog } = client.logger; |
| 9 | if (!await isLogging(ban.guild.id, "guildMemberPunish")) return; |
| 10 | const auditLog = (await getAuditLog(ban.guild, AuditLogEvent.MemberBanRemove)) |
PineaFan | e6ba788 | 2023-01-18 20:41:16 +0000 | [diff] [blame] | 11 | .filter((entry: GuildAuditLogsEntry) => ((entry.target! as User).id === ban.user.id))[0]; |
| 12 | if (!auditLog) return; |
| 13 | if (auditLog.executor!.id === client.user!.id) return; |
| 14 | await client.database.history.create("unban", ban.guild.id, ban.user, auditLog.executor, auditLog.reason); |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 15 | const data = { |
| 16 | meta: { |
| 17 | type: "memberUnban", |
| 18 | displayName: "Member Unbanned", |
| 19 | calculateType: "guildMemberPunish", |
| 20 | color: NucleusColors.green, |
| 21 | emoji: "PUNISH.BAN.GREEN", |
TheCodedProf | 6ec331b | 2023-02-20 12:13:06 -0500 | [diff] [blame] | 22 | timestamp: Date.now() |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 23 | }, |
| 24 | list: { |
| 25 | memberId: entry(ban.user.id, `\`${ban.user.id}\``), |
| 26 | name: entry(ban.user.id, renderUser(ban.user)), |
TheCodedProf | 6ec331b | 2023-02-20 12:13:06 -0500 | [diff] [blame] | 27 | unbanned: entry(Date.now(), renderDelta(Date.now())), |
PineaFan | e6ba788 | 2023-01-18 20:41:16 +0000 | [diff] [blame] | 28 | unbannedBy: entry(auditLog.executor!.id, renderUser(auditLog.executor!)), |
| 29 | accountCreated: entry(ban.user.createdTimestamp, renderDelta(ban.user.createdTimestamp)) |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 30 | }, |
| 31 | hidden: { |
| 32 | guild: ban.guild.id |
pineafan | e625d78 | 2022-05-09 18:04:32 +0100 | [diff] [blame] | 33 | } |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 34 | }; |
| 35 | log(data); |
pineafan | e625d78 | 2022-05-09 18:04:32 +0100 | [diff] [blame] | 36 | } |