/[sudobot]/branches/8.x/src/commands/information/CrisisCommand.ts
ViewVC logotype

Contents of /branches/8.x/src/commands/information/CrisisCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 5378 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 /**
2 * This file is part of SudoBot.
3 *
4 * Copyright (C) 2021-2023 OSN Developers.
5 *
6 * SudoBot is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * SudoBot is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with SudoBot. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20 import { EmbedBuilder, SlashCommandBuilder } from "discord.js";
21 import Command, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command";
22
23 export default class CrisisCommand extends Command {
24 public readonly name = "crisis";
25 public readonly validationRules: ValidationRule[] = [
26 {
27 types: [ArgumentType.String],
28 errors: {
29 "type:invalid": "Invalid country code/name provided!",
30 required: "Please provide a country code or name!",
31 },
32 name: "country"
33 }
34 ];
35 public readonly permissions = [];
36
37 public readonly description = "Show the emergency numbers for different countries.";
38 public readonly beta = true;
39 public readonly argumentSyntaxes = ["<country_code>"];
40 public readonly slashCommandBuilder = new SlashCommandBuilder()
41 .addSubcommand(subcommand => subcommand.setName("uk").setDescription("Show the crisis numbers of United Kingdom"))
42 .addSubcommand(subcommand => subcommand.setName("us").setDescription("Show the crisis numbers of United States"))
43 .addSubcommand(subcommand => subcommand.setName("aus").setDescription("Show the crisis numbers of Australia"))
44 .addSubcommand(subcommand => subcommand.setName("nz").setDescription("Show the crisis numbers of New Zealand"));
45
46 protected readonly countryInfo = {
47 "United Kingdom": [
48 "BEAT ED Helpline - 0808 801",
49 "Switchboard LGBTQI+ helpline - 0300 330 0630",
50 "Mind - 0300 123 3393",
51 "The mix (under 25s)- 0808 808 4994",
52 "Crisis text line - Text SHOUT to 85258"
53 ],
54 "United States": [
55 "Crisis support - 800-273-8255 (call only)",
56 "National ED helpline - 800-931-2237 (text or call)",
57 "LGBTQI+ hotline - 888-843-4564",
58 "MH and substance abuse - 800-662-4357",
59 "SH helpline S.A.F.E - 800-366-8288",
60 "Suicide and crisis lifeline - 998"
61 ],
62 Australia: [
63 "Headspace MH service - 1800 650 890",
64 "Butterfly ED helpline - 1800 334 673",
65 "QLIFE LGBTQI+ support - 1800 184 527",
66 "Mensline aus: mens support for MH - 1300 78 99 78",
67 "Suicide call back service - 1300 659 467"
68 ],
69 "New Zealand": [
70 "Youth line - 0800 376 633/ text 234",
71 "OUTLINE nz - 0800 688 5463",
72 "Need to talk? - 1737 (call/text) to speak to a trained counsellor.",
73 "Lifetime 24/7 helpline - 0800 543 354"
74 ]
75 };
76
77 async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> {
78 const countryCode: string = context.isLegacy ? context.parsedNamedArgs.country : context.options.getSubcommand(true);
79 const embedBuilder = new EmbedBuilder({
80 color: 0x007bff,
81 footer: {
82 text: "Stay safe!"
83 }
84 }).setTimestamp();
85 let country = "";
86
87 switch (countryCode.toLowerCase()) {
88 case "uk":
89 case "united kingdom":
90 case "united_kingdom":
91 case "united-kingdom":
92 case "unitedkingdom":
93 country = "United Kingdom";
94 break;
95
96 case "us":
97 case "united states":
98 case "united_states":
99 case "united-states":
100 case "unitedstates":
101 country = "United States";
102 break;
103
104 case "nz":
105 case "new zealand":
106 case "new_zealand":
107 case "new-zealand":
108 case "newzealand":
109 country = "New Zealand";
110 break;
111
112 case "aus":
113 case "australia":
114 country = "Australia";
115 break;
116
117 default:
118 await this.error(
119 message,
120 "Invalid country code/name provided. Please specify one of these:\nUK - United Kingdom\nUS - United States\nAUS - Australia\nNZ - New Zealand"
121 );
122 return;
123 }
124
125 return {
126 __reply: true,
127 embeds: [
128 embedBuilder
129 .setAuthor({
130 name: `Showing crisis numbers of ${country}`,
131 iconURL: message.guild?.iconURL() ?? undefined
132 })
133 .setDescription(this.countryInfo[country as keyof typeof this.countryInfo].join("\n"))
134 ]
135 };
136 }
137 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26