1
0
Files
build-push-action/src/buildx.ts
T

107 lines
2.9 KiB
TypeScript
Raw Normal View History

2020-11-17 21:38:45 +01:00
import csvparse from 'csv-parse/lib/sync';
2020-08-17 22:18:15 +02:00
import fs from 'fs';
import path from 'path';
2020-08-23 03:31:38 +02:00
import * as semver from 'semver';
2020-11-17 21:38:45 +01:00
2020-08-17 22:18:15 +02:00
import * as context from './context';
2020-08-16 00:36:41 +02:00
import * as exec from './exec';
2020-08-17 22:18:15 +02:00
export async function getImageIDFile(): Promise<string> {
return path.join(context.tmpDir(), 'iidfile').split(path.sep).join(path.posix.sep);
2020-08-17 22:18:15 +02:00
}
export async function getImageID(): Promise<string | undefined> {
const iidFile = await getImageIDFile();
if (!fs.existsSync(iidFile)) {
return undefined;
}
return fs.readFileSync(iidFile, {encoding: 'utf-8'});
}
2021-02-15 10:08:19 +01:00
export async function getSecretString(kvp: string): Promise<string> {
return getSecret(kvp, false);
}
export async function getSecretFile(kvp: string): Promise<string> {
return getSecret(kvp, true);
}
export async function getSecret(kvp: string, file: boolean): Promise<string> {
const delimiterIndex = kvp.indexOf('=');
const key = kvp.substring(0, delimiterIndex);
2021-02-15 10:08:19 +01:00
let value = kvp.substring(delimiterIndex + 1);
2020-11-17 21:38:45 +01:00
if (key.length == 0 || value.length == 0) {
throw new Error(`${kvp} is not a valid secret`);
}
2021-02-15 10:08:19 +01:00
if (file) {
if (!fs.existsSync(value)) {
throw new Error(`secret file ${value} not found`);
}
value = fs.readFileSync(value, {encoding: 'utf-8'});
}
const secretFile = context.tmpNameSync({
tmpdir: context.tmpDir()
2020-09-02 10:07:11 +02:00
});
2021-02-15 10:08:19 +01:00
fs.writeFileSync(secretFile, value);
2020-09-02 10:07:11 +02:00
return `id=${key},src=${secretFile}`;
}
2020-10-19 22:12:33 +02:00
export function isLocalOrTarExporter(outputs: string[]): Boolean {
2020-10-20 15:18:02 +02:00
for (let output of csvparse(outputs.join(`\n`), {
delimiter: ',',
trim: true,
columns: false,
2020-11-17 21:38:45 +01:00
relaxColumnCount: true
2020-10-20 15:18:02 +02:00
})) {
2020-10-20 17:53:03 +02:00
// Local if no type is defined
// https://github.com/docker/buildx/blob/d2bf42f8b4784d83fde17acb3ed84703ddc2156b/build/output.go#L29-L43
if (output.length == 1 && !output[0].startsWith('type=')) {
return true;
}
2020-10-20 15:18:02 +02:00
for (let [key, value] of output.map(chunk => chunk.split('=').map(item => item.trim()))) {
2020-10-19 22:12:33 +02:00
if (key == 'type' && (value == 'local' || value == 'tar')) {
return true;
}
}
}
return false;
}
export function hasGitAuthToken(secrets: string[]): Boolean {
for (let secret of secrets) {
if (secret.startsWith('GIT_AUTH_TOKEN=')) {
return true;
}
}
return false;
}
2020-08-16 00:36:41 +02:00
export async function isAvailable(): Promise<Boolean> {
return await exec.exec(`docker`, ['buildx'], true).then(res => {
if (res.stderr != '' && !res.success) {
return false;
}
return res.success;
});
}
2020-08-23 03:31:38 +02:00
export async function getVersion(): Promise<string> {
return await exec.exec(`docker`, ['buildx', 'version'], true).then(res => {
if (res.stderr != '' && !res.success) {
throw new Error(res.stderr);
}
return parseVersion(res.stdout);
});
}
export async function parseVersion(stdout: string): Promise<string> {
2020-08-23 04:01:20 +02:00
const matches = /\sv?([0-9.]+)/.exec(stdout);
2020-08-23 03:31:38 +02:00
if (!matches) {
throw new Error(`Cannot parse Buildx version`);
}
return semver.clean(matches[1]);
}