/[sudobot]/branches/5.x/src/commands/fun/PixabayCommand.ts
ViewVC logotype

Annotation of /branches/5.x/src/commands/fun/PixabayCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 5418 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 /**
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 axios from "axios";
21     import { EmbedBuilder, SlashCommandBuilder } from "discord.js";
22     import Command, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command";
23    
24     function url() {
25     return `https://pixabay.com/api/?key=${process.env.PIXABAY_TOKEN}&safesearch=true&per_page=3`;
26     }
27    
28     export async function image(cmd: Command, message: CommandMessage, options: BasicCommandContext, type: "photo" | "all" | "illustration" | "vector") {
29     let genurl = `${url()}&image_type=${type}`;
30     let query = !options.isLegacy ? options.options.getString("query") : options.parsedNamedArgs.query;
31    
32     if (query && query.trim() !== "") {
33     let q = new URLSearchParams({ q: query }).toString();
34     console.log(q);
35     genurl += `&${q}`;
36     }
37    
38     axios
39     .get(genurl)
40     .then(async res => {
41     if (res && res.status === 200) {
42     //console.log(res.data.hits);
43     if (!res.data.hits || res.data.hits?.length < 1) {
44     await cmd.error(message, "No search result found from the API.");
45    
46     return;
47     }
48    
49     await cmd.deferredReply(message, {
50     content: res.data.hits[Math.floor(Math.random() * res.data.hits.length)].largeImageURL
51     });
52     }
53     })
54     .catch(async err => {
55     console.log(err.message);
56     await cmd.deferredReply(message, {
57     embeds: [
58     new EmbedBuilder().setColor("#f14a60").setDescription("Too many requests at the same time, please try again after some time.")
59     ]
60     });
61     });
62     }
63    
64     export async function photo(cmd: Command, message: CommandMessage, options: BasicCommandContext) {
65     await image(cmd, message, options, "photo");
66     }
67    
68     export async function vector(cmd: Command, message: CommandMessage, options: BasicCommandContext) {
69     await image(cmd, message, options, "vector");
70     }
71    
72     export async function illustration(cmd: Command, message: CommandMessage, options: BasicCommandContext) {
73     await image(cmd, message, options, "illustration");
74     }
75    
76     export default class PixabayCommand extends Command {
77     public readonly name = "pixabay";
78     public readonly subcommandsCustom = ["image", "photo", "illustration", "vector"];
79     public readonly validationRules: ValidationRule[] = [
80     {
81     types: [ArgumentType.String],
82     name: "subcommand",
83     requiredErrorMessage: `Please provide a valid subcommand! The available subcommands are: \`${this.subcommandsCustom.join("`, `")}\`.`
84     },
85     {
86     types: [ArgumentType.StringRest],
87     name: "query",
88     optional: true,
89     typeErrorMessage: "Invalid query given"
90     }
91     ];
92     public readonly permissions = [];
93     public readonly description = "Fetch images from Pixabay";
94    
95     public readonly slashCommandBuilder = new SlashCommandBuilder()
96     .addSubcommand(subcommand =>
97     subcommand
98     .setName("image")
99     .setDescription("Fetch any type of image")
100     .addStringOption(option => option.setName("query").setDescription("The search query"))
101     )
102     .addSubcommand(subcommand =>
103     subcommand
104     .setName("photo")
105     .setDescription("Fetch captured photos only")
106     .addStringOption(option => option.setName("query").setDescription("The search query"))
107     )
108     .addSubcommand(subcommand =>
109     subcommand
110     .setName("vector")
111     .setDescription("Fetch vector graphics only")
112     .addStringOption(option => option.setName("query").setDescription("The search query"))
113     )
114     .addSubcommand(subcommand =>
115     subcommand
116     .setName("illustration")
117     .setDescription("Fetch illustrations")
118     .addStringOption(option => option.setName("query").setDescription("The search query"))
119     );
120    
121     async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> {
122     const subcmd = context.isLegacy ? context.parsedNamedArgs.subcommand : context.options.getSubcommand(true);
123    
124     if (subcmd === "photo") {
125     await photo(this, message, context);
126     } else if (subcmd === "vector") {
127     await vector(this, message, context);
128     } else if (subcmd === "illustration") {
129     await illustration(this, message, context);
130     } else if (subcmd === "image") {
131     await image(this, message, context, "all");
132     }
133     }
134     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26