From 15575e600e62ca4c5695356f43ff03b1df19bdae Mon Sep 17 00:00:00 2001 From: Bsian Date: Wed, 30 Oct 2019 12:53:36 +0000 Subject: [PATCH] Added pull command, testing only --- src/commands/pull.ts | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/commands/pull.ts diff --git a/src/commands/pull.ts b/src/commands/pull.ts new file mode 100644 index 0000000..df0b904 --- /dev/null +++ b/src/commands/pull.ts @@ -0,0 +1,30 @@ +import { Message } from 'eris'; +import { Client } from '..'; +import { Command } from '../class'; + +export default class Pull extends Command { + constructor(client: Client) { + super(client); + this.name = 'pull'; + this.description = 'Fetches the latest commit from Gitlab'; + this.aliases = ['update']; + this.enabled = true; + this.permissions = { users: ['253600545972027394', '278620217221971968'] }; + } + + public async run(message: Message) { + try { + const updateMessage = await message.channel.createMessage(`${this.client.stores.emojis.loading} ***Fetching latest commit...***`); + let pull: string; + try { + pull = await this.client.util.exec('cd ../ && git pull'); + } catch (error) { + return updateMessage.edit(`${this.client.stores.emojis.error} ***Could not fetch latest commit***\n\`\`\`sh\n${error.message}\n\`\`\``); + } + if (pull.includes('Already up to date')) return updateMessage.edit(`${this.client.stores.emojis.success} ***No updates available***`); + return message; + } catch (error) { + return this.client.util.handleError(error, message, this); + } + } +}