2020-10-30 20:34:04 +00:00
|
|
|
// Copyright 2019-2020 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-09-16 19:31:05 +00:00
|
|
|
/* eslint-disable no-console */
|
2019-03-28 17:09:26 +00:00
|
|
|
import {
|
|
|
|
createWriteStream,
|
|
|
|
statSync,
|
|
|
|
writeFile as writeFileCallback,
|
|
|
|
} from 'fs';
|
2019-08-02 21:11:10 +00:00
|
|
|
import { join, normalize } from 'path';
|
2019-03-28 17:09:26 +00:00
|
|
|
import { tmpdir } from 'os';
|
2021-08-19 22:56:29 +00:00
|
|
|
import { throttle } from 'lodash';
|
2019-03-28 17:09:26 +00:00
|
|
|
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { ParserConfiguration } from 'dashdash';
|
|
|
|
import { createParser } from 'dashdash';
|
2019-03-28 17:09:26 +00:00
|
|
|
import ProxyAgent from 'proxy-agent';
|
|
|
|
import { FAILSAFE_SCHEMA, safeLoad } from 'js-yaml';
|
|
|
|
import { gt } from 'semver';
|
2021-08-27 20:21:42 +00:00
|
|
|
import config from 'config';
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { StrictOptions as GotOptions } from 'got';
|
|
|
|
import got from 'got';
|
2019-03-28 17:09:26 +00:00
|
|
|
import { v4 as getGuid } from 'uuid';
|
|
|
|
import pify from 'pify';
|
|
|
|
import mkdirp from 'mkdirp';
|
|
|
|
import rimraf from 'rimraf';
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { BrowserWindow } from 'electron';
|
|
|
|
import { app, ipcMain } from 'electron';
|
2019-03-28 17:09:26 +00:00
|
|
|
|
2019-05-24 01:27:42 +00:00
|
|
|
import { getTempPath } from '../../app/attachments';
|
2021-08-19 22:56:29 +00:00
|
|
|
import { DialogType } from '../types/Dialogs';
|
2020-09-09 22:50:44 +00:00
|
|
|
import { getUserAgent } from '../util/getUserAgent';
|
2021-08-06 21:21:01 +00:00
|
|
|
import { isAlpha, isBeta } from '../util/version';
|
2019-05-24 01:27:42 +00:00
|
|
|
|
2019-03-28 17:09:26 +00:00
|
|
|
import * as packageJson from '../../package.json';
|
|
|
|
import { getSignatureFileName } from './signature';
|
2020-08-27 18:08:37 +00:00
|
|
|
import { isPathInside } from '../util/isPathInside';
|
2019-03-28 17:09:26 +00:00
|
|
|
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { LoggerType } from '../types/Logging';
|
2019-03-28 17:09:26 +00:00
|
|
|
|
|
|
|
const writeFile = pify(writeFileCallback);
|
|
|
|
const mkdirpPromise = pify(mkdirp);
|
|
|
|
const rimrafPromise = pify(rimraf);
|
|
|
|
const { platform } = process;
|
|
|
|
|
2021-07-16 00:57:34 +00:00
|
|
|
export const GOT_CONNECT_TIMEOUT = 2 * 60 * 1000;
|
|
|
|
export const GOT_LOOKUP_TIMEOUT = 2 * 60 * 1000;
|
|
|
|
export const GOT_SOCKET_TIMEOUT = 2 * 60 * 1000;
|
2020-02-12 21:30:58 +00:00
|
|
|
|
2021-08-19 22:56:29 +00:00
|
|
|
type JSONUpdateSchema = {
|
|
|
|
version: string;
|
|
|
|
files: Array<{
|
|
|
|
url: string;
|
|
|
|
sha512: string;
|
|
|
|
size: string;
|
|
|
|
blockMapSize?: string;
|
|
|
|
}>;
|
|
|
|
path: string;
|
|
|
|
sha512: string;
|
|
|
|
releaseDate: string;
|
|
|
|
};
|
|
|
|
|
2021-06-30 21:27:18 +00:00
|
|
|
export type UpdaterInterface = {
|
|
|
|
force(): Promise<void>;
|
|
|
|
};
|
|
|
|
|
2021-08-19 22:56:29 +00:00
|
|
|
export type UpdateInformationType = {
|
|
|
|
fileName: string;
|
|
|
|
size: number;
|
|
|
|
version: string;
|
|
|
|
};
|
|
|
|
|
2019-03-28 17:09:26 +00:00
|
|
|
export async function checkForUpdates(
|
2021-06-30 21:27:18 +00:00
|
|
|
logger: LoggerType,
|
|
|
|
forceUpdate = false
|
2021-08-19 22:56:29 +00:00
|
|
|
): Promise<UpdateInformationType | null> {
|
2019-03-28 17:09:26 +00:00
|
|
|
const yaml = await getUpdateYaml();
|
2021-08-19 22:56:29 +00:00
|
|
|
const parsedYaml = parseYaml(yaml);
|
|
|
|
const version = getVersion(parsedYaml);
|
2019-03-28 17:09:26 +00:00
|
|
|
|
|
|
|
if (!version) {
|
|
|
|
logger.warn('checkForUpdates: no version extracted from downloaded yaml');
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-06-30 21:27:18 +00:00
|
|
|
if (forceUpdate || isVersionNewer(version)) {
|
|
|
|
logger.info(
|
|
|
|
`checkForUpdates: found newer version ${version} ` +
|
|
|
|
`forceUpdate=${forceUpdate}`
|
|
|
|
);
|
2019-03-28 17:09:26 +00:00
|
|
|
|
2021-08-19 22:56:29 +00:00
|
|
|
const fileName = getUpdateFileName(parsedYaml);
|
|
|
|
|
2019-03-28 17:09:26 +00:00
|
|
|
return {
|
2021-08-19 22:56:29 +00:00
|
|
|
fileName,
|
|
|
|
size: getSize(parsedYaml, fileName),
|
2019-03-28 17:09:26 +00:00
|
|
|
version,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.info(
|
|
|
|
`checkForUpdates: ${version} is not newer; no new update available`
|
|
|
|
);
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-09-16 19:31:05 +00:00
|
|
|
export function validatePath(basePath: string, targetPath: string): void {
|
2019-08-02 21:11:10 +00:00
|
|
|
const normalized = normalize(targetPath);
|
|
|
|
|
2020-08-27 18:08:37 +00:00
|
|
|
if (!isPathInside(normalized, basePath)) {
|
2019-08-02 21:11:10 +00:00
|
|
|
throw new Error(
|
|
|
|
`validatePath: Path ${normalized} is not under base path ${basePath}`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-28 17:09:26 +00:00
|
|
|
export async function downloadUpdate(
|
|
|
|
fileName: string,
|
2021-08-19 22:56:29 +00:00
|
|
|
logger: LoggerType,
|
|
|
|
mainWindow?: BrowserWindow
|
2019-03-28 17:09:26 +00:00
|
|
|
): Promise<string> {
|
|
|
|
const baseUrl = getUpdatesBase();
|
|
|
|
const updateFileUrl = `${baseUrl}/${fileName}`;
|
|
|
|
|
|
|
|
const signatureFileName = getSignatureFileName(fileName);
|
|
|
|
const signatureUrl = `${baseUrl}/${signatureFileName}`;
|
|
|
|
|
|
|
|
let tempDir;
|
|
|
|
try {
|
|
|
|
tempDir = await createTempDir();
|
|
|
|
const targetUpdatePath = join(tempDir, fileName);
|
|
|
|
const targetSignaturePath = join(tempDir, getSignatureFileName(fileName));
|
|
|
|
|
2019-08-02 21:11:10 +00:00
|
|
|
validatePath(tempDir, targetUpdatePath);
|
|
|
|
validatePath(tempDir, targetSignaturePath);
|
|
|
|
|
2021-08-24 21:01:55 +00:00
|
|
|
logger.info(`downloadUpdate: Downloading signature ${signatureUrl}`);
|
2021-10-06 16:25:22 +00:00
|
|
|
const { body } = await got.get(signatureUrl, getGotOptions());
|
2019-03-28 17:09:26 +00:00
|
|
|
await writeFile(targetSignaturePath, body);
|
|
|
|
|
2021-08-24 21:01:55 +00:00
|
|
|
logger.info(`downloadUpdate: Downloading update ${updateFileUrl}`);
|
2021-10-06 16:25:22 +00:00
|
|
|
const downloadStream = got.stream(updateFileUrl, getGotOptions());
|
2019-03-28 17:09:26 +00:00
|
|
|
const writeStream = createWriteStream(targetUpdatePath);
|
|
|
|
|
2020-12-18 17:09:31 +00:00
|
|
|
await new Promise<void>((resolve, reject) => {
|
2021-08-19 22:56:29 +00:00
|
|
|
if (mainWindow) {
|
|
|
|
let downloadedSize = 0;
|
|
|
|
|
|
|
|
const throttledSend = throttle(() => {
|
|
|
|
mainWindow.webContents.send(
|
|
|
|
'show-update-dialog',
|
|
|
|
DialogType.Downloading,
|
|
|
|
{ downloadedSize }
|
|
|
|
);
|
|
|
|
}, 500);
|
|
|
|
|
|
|
|
downloadStream.on('data', data => {
|
|
|
|
downloadedSize += data.length;
|
|
|
|
throttledSend();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-03-28 17:09:26 +00:00
|
|
|
downloadStream.on('error', error => {
|
|
|
|
reject(error);
|
|
|
|
});
|
|
|
|
downloadStream.on('end', () => {
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
|
|
|
|
writeStream.on('error', error => {
|
|
|
|
reject(error);
|
|
|
|
});
|
|
|
|
|
|
|
|
downloadStream.pipe(writeStream);
|
|
|
|
});
|
|
|
|
|
|
|
|
return targetUpdatePath;
|
|
|
|
} catch (error) {
|
|
|
|
if (tempDir) {
|
|
|
|
await deleteTempDir(tempDir);
|
|
|
|
}
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Helper functions
|
|
|
|
|
|
|
|
export function getUpdateCheckUrl(): string {
|
|
|
|
return `${getUpdatesBase()}/${getUpdatesFileName()}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getUpdatesBase(): string {
|
2021-08-27 20:21:42 +00:00
|
|
|
return config.get('updatesUrl');
|
2019-03-28 17:09:26 +00:00
|
|
|
}
|
|
|
|
export function getCertificateAuthority(): string {
|
2021-08-27 20:21:42 +00:00
|
|
|
return config.get('certificateAuthority');
|
2019-03-28 17:09:26 +00:00
|
|
|
}
|
|
|
|
export function getProxyUrl(): string | undefined {
|
|
|
|
return process.env.HTTPS_PROXY || process.env.https_proxy;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getUpdatesFileName(): string {
|
2021-08-06 21:21:01 +00:00
|
|
|
const prefix = getChannel();
|
2019-03-28 17:09:26 +00:00
|
|
|
|
|
|
|
if (platform === 'darwin') {
|
|
|
|
return `${prefix}-mac.yml`;
|
|
|
|
}
|
2020-09-16 19:31:05 +00:00
|
|
|
|
|
|
|
return `${prefix}.yml`;
|
2019-03-28 17:09:26 +00:00
|
|
|
}
|
|
|
|
|
2021-08-06 21:21:01 +00:00
|
|
|
function getChannel(): string {
|
|
|
|
const { version } = packageJson;
|
|
|
|
|
|
|
|
if (isAlpha(version)) {
|
|
|
|
return 'alpha';
|
|
|
|
}
|
|
|
|
if (isBeta(version)) {
|
|
|
|
return 'beta';
|
|
|
|
}
|
|
|
|
return 'latest';
|
2019-03-28 17:09:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function isVersionNewer(newVersion: string): boolean {
|
|
|
|
const { version } = packageJson;
|
|
|
|
|
|
|
|
return gt(newVersion, version);
|
|
|
|
}
|
|
|
|
|
2021-08-19 22:56:29 +00:00
|
|
|
export function getVersion(info: JSONUpdateSchema): string | null {
|
2020-09-16 19:31:05 +00:00
|
|
|
return info && info.version;
|
2019-03-28 17:09:26 +00:00
|
|
|
}
|
|
|
|
|
2020-09-16 19:31:05 +00:00
|
|
|
const validFile = /^[A-Za-z0-9.-]+$/;
|
|
|
|
export function isUpdateFileNameValid(name: string): boolean {
|
2019-08-02 21:11:10 +00:00
|
|
|
return validFile.test(name);
|
|
|
|
}
|
|
|
|
|
2021-08-19 22:56:29 +00:00
|
|
|
export function getUpdateFileName(info: JSONUpdateSchema): string {
|
2019-08-02 21:11:10 +00:00
|
|
|
if (!info || !info.path) {
|
|
|
|
throw new Error('getUpdateFileName: No path present in YAML file');
|
2019-03-28 17:09:26 +00:00
|
|
|
}
|
|
|
|
|
2020-09-16 19:31:05 +00:00
|
|
|
const { path } = info;
|
2019-08-02 21:11:10 +00:00
|
|
|
if (!isUpdateFileNameValid(path)) {
|
|
|
|
throw new Error(
|
|
|
|
`getUpdateFileName: Path '${path}' contains invalid characters`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return path;
|
2019-03-28 17:09:26 +00:00
|
|
|
}
|
|
|
|
|
2021-08-19 22:56:29 +00:00
|
|
|
function getSize(info: JSONUpdateSchema, fileName: string): number {
|
|
|
|
if (!info || !info.files) {
|
|
|
|
throw new Error('getUpdateFileName: No files present in YAML file');
|
|
|
|
}
|
|
|
|
|
|
|
|
const foundFile = info.files.find(file => file.url === fileName);
|
|
|
|
|
|
|
|
return Number(foundFile?.size) || 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function parseYaml(yaml: string): JSONUpdateSchema {
|
2019-03-28 17:09:26 +00:00
|
|
|
return safeLoad(yaml, { schema: FAILSAFE_SCHEMA, json: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
async function getUpdateYaml(): Promise<string> {
|
|
|
|
const targetUrl = getUpdateCheckUrl();
|
2021-10-06 16:25:22 +00:00
|
|
|
const body = await got(targetUrl, getGotOptions()).text();
|
2019-03-28 17:09:26 +00:00
|
|
|
|
|
|
|
if (!body) {
|
|
|
|
throw new Error('Got unexpected response back from update check');
|
|
|
|
}
|
|
|
|
|
2021-10-06 16:25:22 +00:00
|
|
|
return body;
|
2019-03-28 17:09:26 +00:00
|
|
|
}
|
|
|
|
|
2021-10-06 16:25:22 +00:00
|
|
|
function getGotOptions(): GotOptions {
|
|
|
|
const certificateAuthority = getCertificateAuthority();
|
2019-03-28 17:09:26 +00:00
|
|
|
const proxyUrl = getProxyUrl();
|
2021-10-06 16:25:22 +00:00
|
|
|
const agent = proxyUrl
|
|
|
|
? {
|
|
|
|
http: new ProxyAgent(proxyUrl),
|
|
|
|
https: new ProxyAgent(proxyUrl),
|
|
|
|
}
|
|
|
|
: undefined;
|
2019-03-28 17:09:26 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
agent,
|
2021-10-06 16:25:22 +00:00
|
|
|
https: {
|
|
|
|
certificateAuthority,
|
|
|
|
},
|
2019-03-28 17:09:26 +00:00
|
|
|
headers: {
|
|
|
|
'Cache-Control': 'no-cache',
|
2020-09-09 22:50:44 +00:00
|
|
|
'User-Agent': getUserAgent(packageJson.version),
|
2019-03-28 17:09:26 +00:00
|
|
|
},
|
2021-07-16 00:57:34 +00:00
|
|
|
timeout: {
|
|
|
|
connect: GOT_CONNECT_TIMEOUT,
|
|
|
|
lookup: GOT_LOOKUP_TIMEOUT,
|
|
|
|
|
|
|
|
// This timeout is reset whenever we get new data on the socket
|
|
|
|
socket: GOT_SOCKET_TIMEOUT,
|
|
|
|
},
|
2019-03-28 17:09:26 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function getBaseTempDir() {
|
|
|
|
// We only use tmpdir() when this code is run outside of an Electron app (as in: tests)
|
2019-05-24 01:27:42 +00:00
|
|
|
return app ? getTempPath(app.getPath('userData')) : tmpdir();
|
2019-03-28 17:09:26 +00:00
|
|
|
}
|
|
|
|
|
2020-09-16 19:31:05 +00:00
|
|
|
export async function createTempDir(): Promise<string> {
|
2019-03-28 17:09:26 +00:00
|
|
|
const baseTempDir = getBaseTempDir();
|
|
|
|
const uniqueName = getGuid();
|
|
|
|
const targetDir = join(baseTempDir, uniqueName);
|
|
|
|
await mkdirpPromise(targetDir);
|
|
|
|
|
|
|
|
return targetDir;
|
|
|
|
}
|
|
|
|
|
2020-09-16 19:31:05 +00:00
|
|
|
export async function deleteTempDir(targetDir: string): Promise<void> {
|
2019-03-28 17:09:26 +00:00
|
|
|
const pathInfo = statSync(targetDir);
|
|
|
|
if (!pathInfo.isDirectory()) {
|
|
|
|
throw new Error(
|
|
|
|
`deleteTempDir: Cannot delete path '${targetDir}' because it is not a directory`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const baseTempDir = getBaseTempDir();
|
2020-08-27 18:08:37 +00:00
|
|
|
if (!isPathInside(targetDir, baseTempDir)) {
|
2019-03-28 17:09:26 +00:00
|
|
|
throw new Error(
|
|
|
|
`deleteTempDir: Cannot delete path '${targetDir}' since it is not within base temp dir`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
await rimrafPromise(targetDir);
|
|
|
|
}
|
|
|
|
|
2021-07-01 23:40:19 +00:00
|
|
|
export function getPrintableError(error: Error | string): Error | string {
|
|
|
|
if (typeof error === 'string') {
|
|
|
|
return error;
|
|
|
|
}
|
2019-03-28 17:09:26 +00:00
|
|
|
return error && error.stack ? error.stack : error;
|
|
|
|
}
|
|
|
|
|
2020-09-16 19:31:05 +00:00
|
|
|
export function getCliOptions<T>(options: ParserConfiguration['options']): T {
|
2019-03-28 17:09:26 +00:00
|
|
|
const parser = createParser({ options });
|
|
|
|
const cliOptions = parser.parse(process.argv);
|
|
|
|
|
|
|
|
if (cliOptions.help) {
|
|
|
|
const help = parser.help().trimRight();
|
|
|
|
console.log(help);
|
|
|
|
process.exit(0);
|
|
|
|
}
|
|
|
|
|
2020-09-16 19:31:05 +00:00
|
|
|
return (cliOptions as unknown) as T;
|
2019-03-28 17:09:26 +00:00
|
|
|
}
|
2020-07-20 18:42:26 +00:00
|
|
|
|
|
|
|
export function setUpdateListener(performUpdateCallback: () => void): void {
|
2021-08-24 21:01:55 +00:00
|
|
|
ipcMain.removeAllListeners('start-update');
|
2020-07-20 18:42:26 +00:00
|
|
|
ipcMain.once('start-update', performUpdateCallback);
|
|
|
|
}
|
2021-08-19 22:56:29 +00:00
|
|
|
|
2021-10-01 18:49:59 +00:00
|
|
|
export async function getAutoDownloadUpdateSetting(
|
|
|
|
mainWindow: BrowserWindow | undefined,
|
|
|
|
logger: LoggerType
|
2021-08-19 22:56:29 +00:00
|
|
|
): Promise<boolean> {
|
2021-10-01 18:49:59 +00:00
|
|
|
if (!mainWindow) {
|
|
|
|
logger.warn(
|
|
|
|
'getAutoDownloadUpdateSetting: No main window, returning false'
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-08-19 22:56:29 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
ipcMain.once(
|
|
|
|
'settings:get-success:autoDownloadUpdate',
|
|
|
|
(_, error, value: boolean) => {
|
|
|
|
if (error) {
|
|
|
|
reject(error);
|
|
|
|
} else {
|
|
|
|
resolve(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
mainWindow.webContents.send('settings:get:autoDownloadUpdate');
|
|
|
|
});
|
|
|
|
}
|