piston/api/src/package.js

210 lines
5.6 KiB
JavaScript
Raw Normal View History

2021-04-25 11:01:16 +02:00
const logger = require('logplease').create('package');
2021-02-20 23:39:03 +01:00
const semver = require('semver');
2021-04-25 10:55:20 +02:00
const config = require('./config');
const globals = require('./globals');
2021-03-06 07:17:56 +01:00
const fetch = require('node-fetch');
2021-02-20 23:39:03 +01:00
const path = require('path');
const fs = require('fs/promises');
const fss = require('fs');
const cp = require('child_process');
const crypto = require('crypto');
2021-04-25 10:55:20 +02:00
const runtime = require('./runtime');
const chownr = require('chownr');
const util = require('util');
2021-02-20 15:13:56 +01:00
class Package {
2021-05-08 02:20:21 +02:00
constructor({ language, version, download, checksum }) {
this.language = language;
this.version = semver.parse(version);
this.checksum = checksum;
this.download = download;
}
get installed() {
return fss.exists_sync(
path.join(this.install_path, globals.pkg_installed_file)
);
}
get install_path() {
return path.join(
config.data_directory,
globals.data_directories.packages,
this.language,
this.version.raw
);
}
async install() {
if (this.installed) {
throw new Error('Already installed');
2021-02-20 15:13:56 +01:00
}
2021-05-08 02:20:21 +02:00
logger.info(`Installing ${this.language}-${this.version.raw}`);
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
if (fss.exists_sync(this.install_path)) {
logger.warn(
`${this.language}-${this.version.raw} has residual files. Removing them.`
);
await fs.rm(this.install_path, { recursive: true, force: true });
2021-02-20 15:13:56 +01:00
}
2021-05-08 02:20:21 +02:00
logger.debug(`Making directory ${this.install_path}`);
await fs.mkdir(this.install_path, { recursive: true });
2021-03-13 06:01:04 +01:00
2021-05-08 02:20:21 +02:00
logger.debug(
`Downloading package from ${this.download} in to ${this.install_path}`
);
const pkgpath = path.join(this.install_path, 'pkg.tar.gz');
const download = await fetch(this.download);
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
const file_stream = fss.create_write_stream(pkgpath);
await new Promise((resolve, reject) => {
download.body.pipe(file_stream);
download.body.on('error', reject);
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
file_stream.on('finish', resolve);
});
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
logger.debug('Validating checksums');
logger.debug(`Assert sha256(pkg.tar.gz) == ${this.checksum}`);
const cs = crypto
.create_hash('sha256')
.update(fss.readFileSync(pkgpath))
.digest('hex');
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
if (cs !== this.checksum) {
throw new Error(`Checksum miss-match want: ${val} got: ${cs}`);
}
2021-03-13 06:01:04 +01:00
2021-05-08 02:20:21 +02:00
logger.debug(
`Extracting package files from archive ${pkgpath} in to ${this.install_path}`
);
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
await new Promise((resolve, reject) => {
const proc = cp.exec(
`bash -c 'cd "${this.install_path}" && tar xzf ${pkgpath}'`
);
2021-03-13 06:01:04 +01:00
2021-05-08 02:20:21 +02:00
proc.once('exit', (code, _) => {
code === 0 ? resolve() : reject();
});
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
proc.stdout.pipe(process.stdout);
proc.stderr.pipe(process.stderr);
2021-03-05 07:29:09 +01:00
2021-05-08 02:20:21 +02:00
proc.once('error', reject);
});
2021-03-13 06:01:04 +01:00
2021-05-08 02:20:21 +02:00
logger.debug('Registering runtime');
runtime.load_package(this.install_path);
2021-03-13 06:01:04 +01:00
2021-05-08 02:20:21 +02:00
logger.debug('Caching environment');
const get_env_command = `cd ${this.install_path}; source environment; env`;
2021-02-20 23:39:03 +01:00
2021-05-08 02:20:21 +02:00
const envout = await new Promise((resolve, reject) => {
let stdout = '';
2021-02-20 23:39:03 +01:00
2021-05-08 02:20:21 +02:00
const proc = cp.spawn('env', ['-i', 'bash', '-c', `${get_env_command}`], {
stdio: ['ignore', 'pipe', 'pipe'],
});
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
proc.once('exit', (code, _) => {
code === 0 ? resolve(stdout) : reject();
});
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
proc.stdout.on('data', (data) => {
stdout += data;
});
2021-03-13 06:01:04 +01:00
2021-05-08 02:20:21 +02:00
proc.once('error', reject);
});
2021-03-13 06:01:04 +01:00
2021-05-08 02:20:21 +02:00
const filtered_env = envout
.split('\n')
.filter(
(l) => !['PWD', 'OLDPWD', '_', 'SHLVL'].includes(l.split('=', 2)[0])
)
.join('\n');
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
await fs.write_file(path.join(this.install_path, '.env'), filtered_env);
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
logger.debug('Changing Ownership of package directory');
await util.promisify(chownr)(this.install_path, 0, 0);
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
logger.debug('Writing installed state to disk');
await fs.write_file(
path.join(this.install_path, globals.pkg_installed_file),
Date.now().toString()
);
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
logger.info(`Installed ${this.language}-${this.version.raw}`);
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
return {
language: this.language,
version: this.version.raw,
};
}
2021-05-08 02:20:21 +02:00
async uninstall() {
logger.info(`Uninstalling ${this.language}-${this.version.raw}`);
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
logger.debug('Finding runtime');
const found_runtime = runtime.get_runtime_by_name_and_version(
this.language,
this.version.raw
);
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
if (!found_runtime) {
logger.error(
`Uninstalling ${this.language}-${this.version.raw} failed: Not installed`
);
throw new Error(`${this.language}-${this.version.raw} is not installed`);
2021-02-20 15:13:56 +01:00
}
2021-05-08 02:20:21 +02:00
logger.debug('Unregistering runtime');
found_runtime.unregister();
2021-04-10 06:10:18 +02:00
2021-05-08 02:20:21 +02:00
logger.debug('Cleaning files from disk');
await fs.rmdir(this.install_path, { recursive: true });
2021-04-10 06:10:18 +02:00
2021-05-08 02:20:21 +02:00
logger.info(`Uninstalled ${this.language}-${this.version.raw}`);
2021-04-10 06:10:18 +02:00
2021-05-08 02:20:21 +02:00
return {
language: this.language,
version: this.version.raw,
};
}
2021-04-10 06:10:18 +02:00
2021-05-08 02:20:21 +02:00
static async get_package_list() {
const repo_content = await fetch(config.repo_url).then((x) => x.text());
2021-04-10 06:10:18 +02:00
2021-05-08 02:20:21 +02:00
const entries = repo_content.split('\n').filter((x) => x.length > 0);
2021-05-08 02:20:21 +02:00
return entries.map((line) => {
const [language, version, checksum, download] = line.split(',', 4);
2021-05-08 02:20:21 +02:00
return new Package({
language,
version,
checksum,
download,
});
});
}
2021-05-08 02:20:21 +02:00
static async get_package(lang, version) {
const packages = await Package.get_package_list();
2021-05-08 02:20:21 +02:00
const candidates = packages.filter((pkg) => {
return pkg.language == lang && semver.satisfies(pkg.version, version);
});
2021-05-08 02:20:21 +02:00
candidates.sort((a, b) => semver.rcompare(a.version, b.version));
2021-04-25 10:55:20 +02:00
2021-05-08 02:20:21 +02:00
return candidates[0] || null;
}
2021-03-13 06:01:04 +01:00
}
2021-02-20 15:13:56 +01:00
2021-04-25 10:55:20 +02:00
module.exports = Package;