mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
36 lines
838 B
JavaScript
36 lines
838 B
JavaScript
const Command = require('../../structures/Command');
|
|
|
|
module.exports = class LMGTFYCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'lmgtfy',
|
|
aliases: ['let-me-google-that-for-you'],
|
|
group: 'text-edit',
|
|
memberName: 'lmgtfy',
|
|
description: 'Creates a LMGTFY link with the query you provide.',
|
|
credit: [
|
|
{
|
|
name: 'LMGTFY',
|
|
url: 'https://lmgtfy.com/'
|
|
}
|
|
],
|
|
args: [
|
|
{
|
|
key: 'query',
|
|
prompt: 'What would you like the link to search for?',
|
|
type: 'string',
|
|
validate: query => {
|
|
if (encodeURIComponent(query).length < 1950) return true;
|
|
return 'Invalid query, your query is too long.';
|
|
},
|
|
parse: query => encodeURIComponent(query)
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
run(msg, { query }) {
|
|
return msg.say(`http://lmgtfy.com/?iie=1&q=${query}`);
|
|
}
|
|
};
|