Files
xiao/commands/events/time.js
T
2018-07-08 15:16:04 +00:00

38 lines
1.1 KiB
JavaScript

const Command = require('../../structures/Command');
module.exports = class TimeCommand extends Command {
constructor(client) {
super(client, {
name: 'time',
aliases: ['time-zone'],
group: 'events',
memberName: 'time',
description: 'Responds with the current time in a particular location.',
details: '**Zones**: <https://en.wikipedia.org/wiki/List_of_tz_database_time_zones>',
args: [
{
key: 'timeZone',
label: 'time zone',
prompt: 'Which time zone do you want to get the time of?',
type: 'string',
parse: timeZone => timeZone.replace(/ /g, '_').toUpperCase()
}
]
});
}
run(msg, { timeZone }) {
let neopia = false;
if (timeZone === 'NEOPIA/STANDARD' || timeZone === 'NEOPIA') {
timeZone = 'AMERICA/VANCOUVER';
neopia = true;
}
try {
const time = new Date().toLocaleTimeString('en-US', { timeZone });
return msg.say(`The current time in ${neopia ? 'NEOPIA' : timeZone} is ${time}.`);
} catch (err) {
return msg.reply('Invalid time zone. Refer to <https://en.wikipedia.org/wiki/List_of_tz_database_time_zones>.');
}
}
};