cloudservices/src/commands/pull.ts

82 lines
4.6 KiB
TypeScript
Raw Normal View History

2019-10-30 08:53:36 -04:00
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 {
2019-11-01 19:15:39 -04:00
const updateMessage = await message.channel.createMessage(`${this.client.stores.emojis.loading} ***Fetching latest commit...***\n\`\`\`sh\ngit pull\n\`\`\``);
2019-10-30 08:53:36 -04:00
let pull: string;
2019-10-30 13:19:44 -04:00
2019-10-30 08:53:36 -04:00
try {
2019-10-30 13:19:44 -04:00
pull = await this.client.util.exec('git pull');
2019-10-30 08:53:36 -04:00
} catch (error) {
2019-11-01 19:15:39 -04:00
const updatedMessage = updateMessage.content.replace(`${this.client.stores.emojis.loading} ***Fetching latest commit...***`, `${this.client.stores.emojis.error} ***Could not fetch latest commit***`)
.replace(/```$/, `${error.message}\n\`\`\``);
return updateMessage.edit(updatedMessage);
}
if (pull.includes('Already up to date')) {
const updatedMessage = updateMessage.content.replace(`${this.client.stores.emojis.loading} ***Fetching latest commit...***`, `${this.client.stores.emojis.success} ***No updates available***`)
.replace(/```$/, `${pull}\n\`\`\``);
return updateMessage.edit(updatedMessage);
2019-10-30 08:53:36 -04:00
}
2019-11-01 19:15:39 -04:00
if (!pull.includes('origin/master')) {
const updatedMessage = updateMessage.content.replace(`${this.client.stores.emojis.loading} ***Fetching latest commit...***`, `${this.client.stores.emojis.error} ***Unexpected git output***`)
.replace(/```$/, `${pull}\n\`\`\``);
return updateMessage.edit(updatedMessage);
}
const continueMessage = updateMessage.content.replace(`${this.client.stores.emojis.loading} ***Fetching latest commit...***`, `${this.client.stores.emojis.success} ***Pulled latest commit***\n${this.client.stores.emojis.loading} ***Reinstalling dependencies...***`)
.replace(/```$/, `${pull}\nyarn install\n\`\`\``);
const passedPull = await updateMessage.edit(continueMessage);
2019-10-30 13:19:44 -04:00
2019-11-01 19:15:39 -04:00
let install: string;
2019-10-30 13:19:44 -04:00
try {
2019-11-01 19:15:39 -04:00
install = await this.client.util.exec('yarn install');
2019-10-30 13:19:44 -04:00
} catch (error) {
2019-11-01 19:15:39 -04:00
const updatedMessage = passedPull.content.replace(`${this.client.stores.emojis.loading} ***Reinstalling dependencies...***`, `${this.client.stores.emojis.error} ***Failed to reinstall dependencies***`)
2019-10-30 13:19:44 -04:00
.replace(/```$/, `${error.message}\n\`\`\``);
return updateMessage.edit(updatedMessage);
}
2019-11-01 19:15:39 -04:00
let updatedPackages: Message;
if (install.includes('Already up-to-date')) {
const updatedMessage = passedPull.content.replace(`${this.client.stores.emojis.loading} ***Reinstalling dependencies...***`, `${this.client.stores.emojis.success} ***No dependency updates available***\n${this.client.stores.emojis.loading} ***Rebuilding files...***`)
.replace(/```$/, `${install}\nyarn run build\n\`\`\``);
updatedPackages = await updateMessage.edit(updatedMessage);
} else if (install.includes('success Saved lockfile.')) {
const updatedMessage = passedPull.content.replace(`${this.client.stores.emojis.loading} ***Reinstalling dependencies...***`, `${this.client.stores.emojis.success} ***Updated dependencies***\n${this.client.stores.emojis.loading} ***Rebuilding files...***`)
.replace(/```$/, `${install}\nyarn run build\n\`\`\``);
updatedPackages = await updateMessage.edit(updatedMessage);
} else {
const updatedMessage = passedPull.content.replace(`${this.client.stores.emojis.loading} ***Reinstalling dependencies...***`, `${this.client.stores.emojis.error} ***Unexpected yarn install output***`)
.replace(/```$/, `${pull}\n\`\`\``);
return updateMessage.edit(updatedMessage);
}
2019-10-30 13:19:44 -04:00
2019-11-01 19:15:39 -04:00
let build: string;
try {
build = await this.client.util.exec('yarn run build');
} catch (error) {
const updatedMessage = updatedPackages.content.replace(`${this.client.stores.emojis.loading} ***Rebuilding files...***`, `${this.client.stores.emojis.error} ***Failed to rebuild files***`)
.replace(/```$/, `${error.message}\n\`\`\``);
return updateMessage.edit(updatedMessage);
}
const finalMessage = updatedPackages.content.replace(`${this.client.stores.emojis.loading} ***Rebuilding files...***`, `${this.client.stores.emojis.success} ***Files rebuilt***`)
.replace(/```$/, `${build}\n\`\`\``);
2019-10-30 13:19:44 -04:00
2019-10-30 14:35:30 -04:00
return updateMessage.edit(finalMessage);
2019-10-30 08:53:36 -04:00
} catch (error) {
return this.client.util.handleError(error, message, this);
}
}
}