From 0e0230515a5b49783d7cff9052126bd400c7686f Mon Sep 17 00:00:00 2001 From: Donovan Daniels Date: Thu, 25 Jul 2024 02:06:44 -0500 Subject: [PATCH] maidboye.cafe -> maid.gay --- docker-compose.yml | 2 +- src/config/index.ts | 36 +++++++++---------- .../applicationCommands/fun/dadjoke.ts | 2 +- .../applicationCommands/fun/gayrate.ts | 2 +- .../applicationCommands/fun/ship.ts | 2 +- .../applicationCommands/nsfw/e621.ts | 2 +- .../components/structure/CreateWebhook.ts | 2 +- src/services/FurryBotStatus.ts | 8 ++--- src/util/Util.ts | 2 +- 9 files changed, 29 insertions(+), 29 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index ef459270..c19c0b87 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,7 +26,7 @@ services: labels: - "hostname=maidboye.containers.local" - "traefik.enable=true" - - "traefik.http.routers.maidboye.rule=HostRegexp(`api.maidboye.cafe`)" + - "traefik.http.routers.maidboye.rule=HostRegexp(`api.maid.gay`)" - "traefik.http.routers.maidboye.entrypoints=https" - "traefik.http.routers.maidboye.tls=true" - "traefik.http.services.maidboye.loadbalancer.server.port=8080" diff --git a/src/config/index.ts b/src/config/index.ts index 0e054a26..e8eb5a60 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -201,25 +201,25 @@ export class Configuration extends PrivateConfiguration { static get ["8ballAnswers"]() { return [ // Neutral - "https://assets.maidboye.cafe/8Ball/Neutral1.png", - "https://assets.maidboye.cafe/8Ball/Neutral2.png", - "https://assets.maidboye.cafe/8Ball/Neutral3.png", + "https://assets.maid.gay/8Ball/Neutral1.png", + "https://assets.maid.gay/8Ball/Neutral2.png", + "https://assets.maid.gay/8Ball/Neutral3.png", // Positive - "https://assets.maidboye.cafe/8Ball/Positive1.png", - "https://assets.maidboye.cafe/8Ball/Positive2.png", - "https://assets.maidboye.cafe/8Ball/Positive3.png", + "https://assets.maid.gay/8Ball/Positive1.png", + "https://assets.maid.gay/8Ball/Positive2.png", + "https://assets.maid.gay/8Ball/Positive3.png", // Negative - "https://assets.maidboye.cafe/8Ball/Negative1.png", - "https://assets.maidboye.cafe/8Ball/Negative2.png", - "https://assets.maidboye.cafe/8Ball/Negative3.png" + "https://assets.maid.gay/8Ball/Negative1.png", + "https://assets.maid.gay/8Ball/Negative2.png", + "https://assets.maid.gay/8Ball/Negative3.png" ]; } /* icons */ static get botIcon() { - return "https://i.maidboye.cafe/icon.png"; + return "https://i.maid.gay/icon.png"; } static get botSauce() { return "https://e621.net/posts/2907560"; @@ -231,13 +231,13 @@ export class Configuration extends PrivateConfiguration { return "https://furry.cool/sauce"; } static get noIcon() { - return "https://assets.maidboye.cafe/noicon.png"; + return "https://assets.maid.gay/noicon.png"; } static get bapGif() { - return "https://assets.maidboye.cafe/bap.gif"; + return "https://assets.maid.gay/bap.gif"; } static get bellyrubGif() { - return "https://assets.maidboye.cafe/bellyrub.gif"; + return "https://assets.maid.gay/bellyrub.gif"; } /* directories */ @@ -294,16 +294,16 @@ export class Configuration extends PrivateConfiguration { return "https://discord.gg/8p5A5DVgXK"; } static get webLink() { - return "https://maidboye.cafe"; + return "https://maid.gay"; } static get privacyPolicyLink() { - return "https://maidboye.cafe/privacy"; + return "https://maid.gay/privacy"; } static get inviteLink() { - return "https://api.maidboye.cafe/links/invite"; + return "https://api.maid.gay/links/invite"; } static get inviteRedirectURI() { - return "https://api.maidboye.cafe/links/invite/done"; + return "https://api.maid.gay/links/invite/done"; } static get devLink() { return "https://furry.cool"; @@ -432,7 +432,7 @@ export class Configuration extends PrivateConfiguration { return !this.isDevelopment; } static get apiHost() { - return this.isDevelopment ? this.apiListener : "api.maidboye.cafe"; + return this.isDevelopment ? this.apiListener : "api.maid.gay"; } static get apiURL() { return `http${this.apiSecure ? "s" : ""}://${this.apiHost}${[80, 443].includes(this.apiPort) || !this.isDevelopment ? "" : `:${this.apiPort}`}`; diff --git a/src/interactions/applicationCommands/fun/dadjoke.ts b/src/interactions/applicationCommands/fun/dadjoke.ts index c68719ee..a29a6361 100644 --- a/src/interactions/applicationCommands/fun/dadjoke.ts +++ b/src/interactions/applicationCommands/fun/dadjoke.ts @@ -24,7 +24,7 @@ export default new Command(import.meta.url, "dadjoke") return interaction.reply({ embeds: Util.makeEmbed(true, interaction.user) .setDescription(joke) - .setThumbnail("https://assets.maidboye.cafe/dadjoke.png") + .setThumbnail("https://assets.maid.gay/dadjoke.png") .setColor(Colors.gold) .toJSON(true), components: new ComponentBuilder() diff --git a/src/interactions/applicationCommands/fun/gayrate.ts b/src/interactions/applicationCommands/fun/gayrate.ts index efabb0c3..c0709251 100644 --- a/src/interactions/applicationCommands/fun/gayrate.ts +++ b/src/interactions/applicationCommands/fun/gayrate.ts @@ -33,7 +33,7 @@ export default new Command(import.meta.url, "gayrate") embeds: Util.makeEmbed(true, interaction.user) .setTitle(`${user.tag}'s Gayness`) .setDescription(`**${user.tag}** is ${percent}% gay!`) - .setThumbnail("https://assets.maidboye.cafe/Gay.png") + .setThumbnail("https://assets.maid.gay/Gay.png") .toJSON(true) }); }); diff --git a/src/interactions/applicationCommands/fun/ship.ts b/src/interactions/applicationCommands/fun/ship.ts index 10b300f0..a0abfb50 100644 --- a/src/interactions/applicationCommands/fun/ship.ts +++ b/src/interactions/applicationCommands/fun/ship.ts @@ -63,7 +63,7 @@ export default new Command(import.meta.url, "ship") }, { type: "url", - url: `https://assets.maidboye.cafe/ship/${image}.png`, + url: `https://assets.maid.gay/ship/${image}.png`, x: 256, y: 0, round: 0, diff --git a/src/interactions/applicationCommands/nsfw/e621.ts b/src/interactions/applicationCommands/nsfw/e621.ts index 216744d7..e6108a22 100644 --- a/src/interactions/applicationCommands/nsfw/e621.ts +++ b/src/interactions/applicationCommands/nsfw/e621.ts @@ -76,7 +76,7 @@ export async function makeMessage(interaction: CommandInteraction | ComponentInt if (post.file.ext === "webm") { embed.setDescription(`This post is a video. To fully view it, you must go to it on [e621](https://e621.net/posts/${post.id})`); if (thumbType !== "none") { - embed.setImage("https://assets.maidboye.cafe/loading.gif"); + embed.setImage("https://assets.maid.gay/loading.gif"); if (thumbType === "image") { embed.setDescription(`${embed.getDescription()!}\n\n(note: generating image thumbnails can take 10+ seconds)`); } diff --git a/src/interactions/components/structure/CreateWebhook.ts b/src/interactions/components/structure/CreateWebhook.ts index 0cd0b61c..33448c47 100644 --- a/src/interactions/components/structure/CreateWebhook.ts +++ b/src/interactions/components/structure/CreateWebhook.ts @@ -9,7 +9,7 @@ export default abstract class CreateWebhookComponent extends BaseComponent { action = "create-webhook"; protected getAvatar(interaction: ComponentInteraction) { - return "https://i.maidboye.cafe/icon.png"; + return "https://i.maid.gay/icon.png"; } protected getName(interaction: ComponentInteraction) { diff --git a/src/services/FurryBotStatus.ts b/src/services/FurryBotStatus.ts index 07eec8b5..2155e647 100644 --- a/src/services/FurryBotStatus.ts +++ b/src/services/FurryBotStatus.ts @@ -46,7 +46,7 @@ export default class FurryBotStatusService extends Service { status: "dnd", activities: [{ type: ActivityTypes.WATCHING, - name: "Visit https://maidboye.cafe" + name: "Visit https://maid.gay" }] } }, @@ -60,7 +60,7 @@ export default class FurryBotStatusService extends Service { setInterval(async() => { await this.furrybot.editStatus("dnd", [{ type: ActivityTypes.WATCHING, - name: "Visit https://maidboye.cafe" + name: "Visit https://maid.gay" }]); }, 6e4); })).connect(); @@ -76,7 +76,7 @@ export default class FurryBotStatusService extends Service { status: "dnd", activities: [{ type: ActivityTypes.WATCHING, - name: "Visit https://maidboye.cafe" + name: "Visit https://maid.gay" }] } }, @@ -90,7 +90,7 @@ export default class FurryBotStatusService extends Service { setInterval(async() => { await this.furrybotBeta.editStatus("dnd", [{ type: ActivityTypes.WATCHING, - name: "Visit https://maidboye.cafe" + name: "Visit https://maid.gay" }]); }, 6e4); })).connect(); diff --git a/src/util/Util.ts b/src/util/Util.ts index e717de0c..a61eb7da 100644 --- a/src/util/Util.ts +++ b/src/util/Util.ts @@ -555,7 +555,7 @@ export default class Util { .addURLButton({ disabled: source === undefined, label: "Source", - url: source || "https://maidboye.cafe" + url: source || "https://maid.gay" }) .addInteractionButton({ customID: State.new(interaction.user.id, "generic-image", "new").with("type", cmd).encode(),