PineaFan | 752af46 | 2022-12-31 21:59:38 +0000 | [diff] [blame^] | 1 | import type { NucleusClient } from "../utils/client.js"; |
pineafan | 0f5cc78 | 2022-08-12 21:55:42 +0100 | [diff] [blame] | 2 | import type { GuildAuditLogsEntry, Role } from "discord.js"; |
| 3 | |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 4 | export const event = "roleCreate"; |
pineafan | 3276721 | 2022-03-14 21:27:39 +0000 | [diff] [blame] | 5 | |
PineaFan | 752af46 | 2022-12-31 21:59:38 +0000 | [diff] [blame^] | 6 | export async function callback(client: NucleusClient, role: Role) { |
pineafan | 0f5cc78 | 2022-08-12 21:55:42 +0100 | [diff] [blame] | 7 | const { getAuditLog, log, NucleusColors, entry, renderUser, renderDelta, renderRole } = client.logger; |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 8 | if (role.managed) return; |
| 9 | const auditLog = await getAuditLog(role.guild, "ROLE_CREATE"); |
pineafan | 0f5cc78 | 2022-08-12 21:55:42 +0100 | [diff] [blame] | 10 | const audit = auditLog.entries.filter((entry: GuildAuditLogsEntry) => entry.target!.id === role.id).first(); |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 11 | if (audit.executor.id === client.user.id) return; |
| 12 | const data = { |
| 13 | meta: { |
| 14 | type: "roleCreate", |
| 15 | displayName: "Role Created", |
| 16 | calculateType: "guildRoleUpdate", |
| 17 | color: NucleusColors.green, |
| 18 | emoji: "GUILD.ROLES.CREATE", |
| 19 | timestamp: role.createdTimestamp |
| 20 | }, |
| 21 | list: { |
| 22 | roleId: entry(role.id, `\`${role.id}\``), |
| 23 | role: entry(role.name, renderRole(role)), |
| 24 | createdBy: entry(audit.executor.id, renderUser(audit.executor)), |
Skyler Grey | 11236ba | 2022-08-08 21:13:33 +0100 | [diff] [blame] | 25 | created: entry(role.createdTimestamp, renderDelta(role.createdTimestamp)) |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 26 | }, |
| 27 | hidden: { |
| 28 | guild: role.guild.id |
pineafan | 3276721 | 2022-03-14 21:27:39 +0000 | [diff] [blame] | 29 | } |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 30 | }; |
| 31 | log(data); |
pineafan | 3276721 | 2022-03-14 21:27:39 +0000 | [diff] [blame] | 32 | } |