utility.guildinfo: grab guilds from membership screening, add clan info
This commit is contained in:
parent
0247aeb4a0
commit
1147524def
1 changed files with 141 additions and 12 deletions
|
@ -40,6 +40,8 @@ const APP_ICON_BASE = CDN + "app-icons/";
|
||||||
const APP_ASSET_BASE = CDN + "app-assets/";
|
const APP_ASSET_BASE = CDN + "app-assets/";
|
||||||
const DISCOVERY_SPLASH_BASE = CDN + "discovery-splashes/";
|
const DISCOVERY_SPLASH_BASE = CDN + "discovery-splashes/";
|
||||||
const AVATAR_DECORATION_BASE = CDN + "avatar-decoration-presets/";
|
const AVATAR_DECORATION_BASE = CDN + "avatar-decoration-presets/";
|
||||||
|
const CLAN_BADGE_BASE = CDN + "clan-badges/";
|
||||||
|
const CLAN_BANNER_BASE = CDN + "clan-banner/";
|
||||||
|
|
||||||
const DEFAULT_GROUP_DM_AVATARS = [
|
const DEFAULT_GROUP_DM_AVATARS = [
|
||||||
"/assets/ee9275c5a437f7dc7f9430ba95f12ebd.png",
|
"/assets/ee9275c5a437f7dc7f9430ba95f12ebd.png",
|
||||||
|
@ -349,6 +351,15 @@ const CHANNEL_TYPE_NAMES = {
|
||||||
16: "media",
|
16: "media",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const CLAN_PLAYSTYLE = {
|
||||||
|
0: "None",
|
||||||
|
1: "Very Casual",
|
||||||
|
2: "Casual",
|
||||||
|
3: "Competitive",
|
||||||
|
4: "Creative",
|
||||||
|
5: "Very Competitive",
|
||||||
|
};
|
||||||
|
|
||||||
const EMOJI_SETS = {
|
const EMOJI_SETS = {
|
||||||
blobs: {
|
blobs: {
|
||||||
prefix:
|
prefix:
|
||||||
|
@ -451,11 +462,21 @@ async function getGuild(id) {
|
||||||
false
|
false
|
||||||
);
|
);
|
||||||
if (widget) return {source: "widget", data: widget};
|
if (widget) return {source: "widget", data: widget};
|
||||||
|
} catch {
|
||||||
|
try {
|
||||||
|
const verification = await hf.bot.requestHandler.request(
|
||||||
|
"GET",
|
||||||
|
`/guilds/${id}/member-verification?with_guild=true`,
|
||||||
|
true
|
||||||
|
);
|
||||||
|
if (verification?.guild)
|
||||||
|
return {source: "verification", data: verification.guild};
|
||||||
} catch {
|
} catch {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -1870,7 +1891,7 @@ guildinfo.addAlias("server");
|
||||||
guildinfo.addAlias("sinfo");
|
guildinfo.addAlias("sinfo");
|
||||||
guildinfo.addAlias("si");
|
guildinfo.addAlias("si");
|
||||||
guildinfo.callback = async function (msg, line) {
|
guildinfo.callback = async function (msg, line) {
|
||||||
let _guild;
|
let _guild, clanEmbed;
|
||||||
if (!line || line == "") {
|
if (!line || line == "") {
|
||||||
if (!msg.guildID) return "Not in a guild.";
|
if (!msg.guildID) return "Not in a guild.";
|
||||||
_guild = {source: "local", data: msg.channel.guild};
|
_guild = {source: "local", data: msg.channel.guild};
|
||||||
|
@ -1878,6 +1899,88 @@ guildinfo.callback = async function (msg, line) {
|
||||||
if (!SNOWFLAKE_REGEX.test(line)) return "Not a snowflake.";
|
if (!SNOWFLAKE_REGEX.test(line)) return "Not a snowflake.";
|
||||||
const snowflake = line.match(SNOWFLAKE_REGEX)[1];
|
const snowflake = line.match(SNOWFLAKE_REGEX)[1];
|
||||||
_guild = await getGuild(snowflake);
|
_guild = await getGuild(snowflake);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const clan = await hf.bot.requestHandler.request(
|
||||||
|
"GET",
|
||||||
|
`/discovery/${snowflake}/clan`,
|
||||||
|
true
|
||||||
|
);
|
||||||
|
|
||||||
|
if (clan) {
|
||||||
|
const images = [];
|
||||||
|
|
||||||
|
clanEmbed = {
|
||||||
|
name: _guild != null ? "Clan data" : clan.name,
|
||||||
|
description: clan.description ?? "*No description*",
|
||||||
|
fields: [
|
||||||
|
!_guild && {
|
||||||
|
name: "Member Count",
|
||||||
|
value: clan.member_count,
|
||||||
|
inline: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Tag",
|
||||||
|
value: clan.tag,
|
||||||
|
inline: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Playstyle",
|
||||||
|
value:
|
||||||
|
CLAN_PLAYSTYLE[clan.playstyle] ??
|
||||||
|
`<unknown value: ${clan.playstyle}>`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Descriptors",
|
||||||
|
value: clan.wildcard_descriptors.join(", "),
|
||||||
|
inline: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Interests/Topics/Traits",
|
||||||
|
value: `\`${clan.search_terms.map((x) => `"${x}"`).join(", ")}\``,
|
||||||
|
inline: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Associated Game IDs",
|
||||||
|
value: `\`${clan.game_ids.map((x) => `"${x}"`).join(", ")}\``,
|
||||||
|
inline: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Badge Colors",
|
||||||
|
value: `${clan.badge_color_primary} | ${clan.badge_color_secondary}`,
|
||||||
|
inline: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Banner/Brand Colors",
|
||||||
|
value: `${clan.brand_color_primary} | ${clan.brand_color_secondary}`,
|
||||||
|
inline: true,
|
||||||
|
},
|
||||||
|
].filter((x) => !!x),
|
||||||
|
footer: !_guild ? {text: "Fetched from clan"} : null,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (clan.badge_hash) {
|
||||||
|
const url = `${CLAN_BADGE_BASE}${clan.id}/${clan.badge_hash}.png?size=4096`;
|
||||||
|
images.push(`[Badge](${url})`);
|
||||||
|
clanEmbed.thumbnail = {url};
|
||||||
|
}
|
||||||
|
if (clan.banner_hash) {
|
||||||
|
const url = `${CLAN_BANNER_BASE}${clan.id}/${clan.banner_hash}.png?size=4096`;
|
||||||
|
images.push(`[Banner](${url})`);
|
||||||
|
clanEmbed.image = {url};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (images.length > 0) {
|
||||||
|
clanEmbed.fields.push({
|
||||||
|
name: "\u200b",
|
||||||
|
value: images.join(" | "),
|
||||||
|
inline: false,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
// noop
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!_guild) return "Guild not found.";
|
if (!_guild) return "Guild not found.";
|
||||||
|
@ -2124,9 +2227,14 @@ guildinfo.callback = async function (msg, line) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (clanEmbed) {
|
||||||
|
return {embeds: [embed, clanEmbed]};
|
||||||
|
} else {
|
||||||
return {embed};
|
return {embed};
|
||||||
}
|
}
|
||||||
case "preview": {
|
}
|
||||||
|
case "preview":
|
||||||
|
case "verification": {
|
||||||
const embed = {
|
const embed = {
|
||||||
title: guild.name,
|
title: guild.name,
|
||||||
description: guild.description ?? "*No description.*",
|
description: guild.description ?? "*No description.*",
|
||||||
|
@ -2136,7 +2244,12 @@ guildinfo.callback = async function (msg, line) {
|
||||||
value: `<t:${Math.floor(snowflakeToTimestamp(guild.id) / 1000)}:R>`,
|
value: `<t:${Math.floor(snowflakeToTimestamp(guild.id) / 1000)}:R>`,
|
||||||
inline: true,
|
inline: true,
|
||||||
},
|
},
|
||||||
guild.emojis.length > 0 && {
|
guild.verification_level && {
|
||||||
|
name: "Verification Level",
|
||||||
|
value: GUILD_VERIFICATION_LEVELS[guild.verification_level],
|
||||||
|
inline: true,
|
||||||
|
},
|
||||||
|
(guild.emojis?.length ?? 0) > 0 && {
|
||||||
name: `Emotes (${guild.emojis.length})`,
|
name: `Emotes (${guild.emojis.length})`,
|
||||||
value: `${
|
value: `${
|
||||||
guild.emojis.filter((e) => e.animated).length
|
guild.emojis.filter((e) => e.animated).length
|
||||||
|
@ -2147,7 +2260,7 @@ guildinfo.callback = async function (msg, line) {
|
||||||
} unavailable`,
|
} unavailable`,
|
||||||
inline: true,
|
inline: true,
|
||||||
},
|
},
|
||||||
guild.stickers.length > 0 && {
|
(guild.stickers?.length ?? 0) > 0 && {
|
||||||
name: `Stickers (${guild.stickers.length})`,
|
name: `Stickers (${guild.stickers.length})`,
|
||||||
value: `${
|
value: `${
|
||||||
guild.stickers.filter((s) => s.format_type == 1).length
|
guild.stickers.filter((s) => s.format_type == 1).length
|
||||||
|
@ -2164,7 +2277,11 @@ guildinfo.callback = async function (msg, line) {
|
||||||
},
|
},
|
||||||
].filter((x) => !!x),
|
].filter((x) => !!x),
|
||||||
footer: {
|
footer: {
|
||||||
text: "Fetched from guild preview",
|
text: `Fetched from ${
|
||||||
|
_guild.source === "verification"
|
||||||
|
? "membership screening"
|
||||||
|
: "guild preview"
|
||||||
|
}`,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2235,8 +2352,12 @@ guildinfo.callback = async function (msg, line) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (clanEmbed) {
|
||||||
|
return {embeds: [embed, clanEmbed]};
|
||||||
|
} else {
|
||||||
return {embed};
|
return {embed};
|
||||||
}
|
}
|
||||||
|
}
|
||||||
case "discovery": {
|
case "discovery": {
|
||||||
if (!guild.store_page) {
|
if (!guild.store_page) {
|
||||||
return "Got discovery data but no store page.";
|
return "Got discovery data but no store page.";
|
||||||
|
@ -2359,8 +2480,12 @@ guildinfo.callback = async function (msg, line) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (clanEmbed) {
|
||||||
|
return {embeds: [embed, clanEmbed]};
|
||||||
|
} else {
|
||||||
return {embed};
|
return {embed};
|
||||||
}
|
}
|
||||||
|
}
|
||||||
case "widget": {
|
case "widget": {
|
||||||
let invite;
|
let invite;
|
||||||
if (guild.instant_invite) {
|
if (guild.instant_invite) {
|
||||||
|
@ -2391,7 +2516,7 @@ guildinfo.callback = async function (msg, line) {
|
||||||
if (invite) {
|
if (invite) {
|
||||||
embed.fields.push({
|
embed.fields.push({
|
||||||
name: "Invite",
|
name: "Invite",
|
||||||
value: "https://discord.gg/" + guild.instant_invite,
|
value: guild.instant_invite,
|
||||||
inline: true,
|
inline: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -2432,7 +2557,7 @@ guildinfo.callback = async function (msg, line) {
|
||||||
const images = [];
|
const images = [];
|
||||||
if (invite.guild.icon) {
|
if (invite.guild.icon) {
|
||||||
images.push(
|
images.push(
|
||||||
`[Icon](${ICON_BASE}${invite.guild.id}/${invite.guild.icon}.png?size=4096`
|
`[Icon](${ICON_BASE}${invite.guild.id}/${invite.guild.icon}.png?size=4096)`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (invite.guild.splash) {
|
if (invite.guild.splash) {
|
||||||
|
@ -2461,8 +2586,12 @@ guildinfo.callback = async function (msg, line) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (clanEmbed) {
|
||||||
|
return {embeds: [embed, clanEmbed]};
|
||||||
|
} else {
|
||||||
return {embed};
|
return {embed};
|
||||||
}
|
}
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
return "Guild not found.";
|
return "Guild not found.";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue