1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-10 06:08:34 +02:00
bitwarden-browser/src/commands/update.command.ts

92 lines
3.8 KiB
TypeScript
Raw Normal View History

2018-05-22 23:36:54 +02:00
import * as AdmZip from 'adm-zip';
2018-05-22 20:49:20 +02:00
import * as program from 'commander';
import * as fetch from 'node-fetch';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
import { Response } from '../models/response';
import { MessageResponse } from '../models/response/messageResponse';
export class UpdateCommand {
constructor(private platformUtilsService: PlatformUtilsService) { }
async run(cmd: program.Command): Promise<Response> {
const currentVersion = this.platformUtilsService.getApplicationVersion();
const response = await fetch.default('https://api.github.com/repos/bitwarden/cli/releases/latest');
if (response.status === 200) {
const responseJson = await response.json();
const res = new MessageResponse(null, null);
const tagName: string = responseJson.tag_name;
if (tagName === ('v' + currentVersion)) {
res.title = 'No update available.';
res.noColor = true;
return Response.success(res);
}
let downloadUrl: string = null;
if (responseJson.assets != null) {
for (const a of responseJson.assets) {
const download: string = a.browser_download_url;
if (download == null) {
continue;
}
if (download.indexOf('.zip') === -1) {
continue;
}
if (process.platform === 'win32' && download.indexOf('bw-windows') > -1) {
2018-05-22 20:49:20 +02:00
downloadUrl = download;
break;
} else if (process.platform === 'darwin' && download.indexOf('bw-macos') > -1) {
2018-05-22 20:49:20 +02:00
downloadUrl = download;
break;
} else if (process.platform === 'linux' && download.indexOf('bw-linux') > -1) {
2018-05-22 20:49:20 +02:00
downloadUrl = download;
break;
}
}
}
2018-05-22 23:36:54 +02:00
if (cmd.self || false) {
const zipResponse = await fetch.default(downloadUrl);
if (zipResponse.status === 200) {
try {
const zipBuffer = await zipResponse.buffer();
const zip = new AdmZip(zipBuffer);
zip.extractAllTo(__dirname, true);
res.title = 'Updated self to ' + tagName + '.';
if (responseJson.body != null && responseJson.body !== '') {
res.message = responseJson.body;
}
return Response.success(res);
} catch {
return Response.error('Error extracting update to ' + __dirname);
}
} else {
return Response.error('Error downloading update: ' + zipResponse.status);
}
}
2018-05-22 20:49:20 +02:00
res.title = 'A new version is available: ' + tagName;
if (downloadUrl == null) {
downloadUrl = 'https://github.com/bitwarden/cli/releases';
} else {
res.raw = downloadUrl;
}
2018-05-22 23:36:54 +02:00
res.message = '';
if (responseJson.body != null && responseJson.body !== '') {
res.message = responseJson.body + '\n\n';
}
res.message += 'You can download this update at: ' + downloadUrl + '\n' +
2018-05-22 20:49:20 +02:00
'If you installed this CLI through a package manager ' +
'you should probably update using its update command instead.';
return Response.success(res);
} else {
return Response.error('Error contacting update API: ' + response.status);
}
}
}