mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
62 lines
2.2 KiB
JavaScript
62 lines
2.2 KiB
JavaScript
const Command = require('../../framework/Command');
|
||
const moment = require('moment');
|
||
const { MessageEmbed } = require('discord.js');
|
||
const request = require('node-superfetch');
|
||
const { trimArray } = require('../../util/Util');
|
||
const logos = require('../../assets/json/logos');
|
||
|
||
module.exports = class NPMCommand extends Command {
|
||
constructor(client) {
|
||
super(client, {
|
||
name: 'npm',
|
||
group: 'search',
|
||
memberName: 'npm',
|
||
description: 'Responds with information on an NPM package.',
|
||
clientPermissions: ['EMBED_LINKS'],
|
||
credit: [
|
||
{
|
||
name: 'npm',
|
||
url: 'https://www.npmjs.com/',
|
||
reason: 'API'
|
||
}
|
||
],
|
||
args: [
|
||
{
|
||
key: 'pkg',
|
||
label: 'package',
|
||
type: 'string',
|
||
parse: pkg => encodeURIComponent(pkg.replaceAll(' ', '-'))
|
||
}
|
||
]
|
||
});
|
||
}
|
||
|
||
async run(msg, { pkg }) {
|
||
try {
|
||
const { body } = await request.get(`https://registry.npmjs.com/${pkg}`);
|
||
if (body.time.unpublished) return msg.say('This package no longer exists.');
|
||
const version = body.versions[body['dist-tags'].latest];
|
||
const maintainers = trimArray(body.maintainers.map(user => user.name));
|
||
const dependencies = version.dependencies ? trimArray(Object.keys(version.dependencies)) : null;
|
||
const embed = new MessageEmbed()
|
||
.setColor(0xCB0000)
|
||
.setAuthor('NPM', logos.npm, 'https://www.npmjs.com/')
|
||
.setTitle(body.name)
|
||
.setURL(`https://www.npmjs.com/package/${pkg}`)
|
||
.setDescription(body.description || 'No description.')
|
||
.addField('❯ Version', body['dist-tags'].latest, true)
|
||
.addField('❯ License', body.license || 'None', true)
|
||
.addField('❯ Author', body.author ? body.author.name : '???', true)
|
||
.addField('❯ Creation Date', moment.utc(body.time.created).format('MM/DD/YYYY h:mm A'), true)
|
||
.addField('❯ Modification Date', moment.utc(body.time.modified).format('MM/DD/YYYY h:mm A'), true)
|
||
.addField('❯ Main File', version.main || 'index.js', true)
|
||
.addField('❯ Dependencies', dependencies && dependencies.length ? dependencies.join(', ') : 'None')
|
||
.addField('❯ Maintainers', maintainers.join(', '));
|
||
return msg.embed(embed);
|
||
} catch (err) {
|
||
if (err.status === 404) return msg.say('Could not find any results.');
|
||
throw err;
|
||
}
|
||
}
|
||
};
|