2020-08-21 14:45:16 +02:00
|
|
|
import * as aws from './aws';
|
2021-06-22 11:09:26 +02:00
|
|
|
import * as core from '@actions/core';
|
2023-02-21 10:06:17 +01:00
|
|
|
import {Exec} from '@docker/actions-toolkit/lib/exec';
|
2020-08-20 16:40:33 +02:00
|
|
|
|
2021-12-20 10:59:11 +01:00
|
|
|
export async function login(registry: string, username: string, password: string, ecr: string): Promise<void> {
|
|
|
|
if (/true/i.test(ecr) || (ecr == 'auto' && aws.isECR(registry))) {
|
2020-08-20 16:40:33 +02:00
|
|
|
await loginECR(registry, username, password);
|
|
|
|
} else {
|
|
|
|
await loginStandard(registry, username, password);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function logout(registry: string): Promise<void> {
|
2023-02-21 10:06:17 +01:00
|
|
|
await Exec.getExecOutput('docker', ['logout', registry], {
|
|
|
|
ignoreReturnCode: true
|
|
|
|
}).then(res => {
|
|
|
|
if (res.stderr.length > 0 && res.exitCode != 0) {
|
|
|
|
core.warning(res.stderr.trim());
|
|
|
|
}
|
|
|
|
});
|
2020-08-20 16:40:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function loginStandard(registry: string, username: string, password: string): Promise<void> {
|
2020-10-20 14:41:56 +02:00
|
|
|
if (!username || !password) {
|
|
|
|
throw new Error('Username and password required');
|
2020-08-20 16:40:33 +02:00
|
|
|
}
|
2020-10-20 14:41:56 +02:00
|
|
|
|
2022-03-21 10:57:36 +01:00
|
|
|
const loginArgs: Array<string> = ['login', '--password-stdin'];
|
2020-10-20 14:41:56 +02:00
|
|
|
loginArgs.push('--username', username);
|
2020-08-20 16:40:33 +02:00
|
|
|
loginArgs.push(registry);
|
|
|
|
|
|
|
|
if (registry) {
|
2021-04-28 00:34:26 +02:00
|
|
|
core.info(`Logging into ${registry}...`);
|
2020-08-20 16:40:33 +02:00
|
|
|
} else {
|
2021-04-28 00:34:26 +02:00
|
|
|
core.info(`Logging into Docker Hub...`);
|
2020-08-20 16:40:33 +02:00
|
|
|
}
|
2023-02-21 10:06:17 +01:00
|
|
|
await Exec.getExecOutput('docker', loginArgs, {
|
|
|
|
ignoreReturnCode: true,
|
|
|
|
silent: true,
|
|
|
|
input: Buffer.from(password)
|
|
|
|
}).then(res => {
|
|
|
|
if (res.stderr.length > 0 && res.exitCode != 0) {
|
|
|
|
throw new Error(res.stderr.trim());
|
|
|
|
}
|
|
|
|
core.info(`Login Succeeded!`);
|
|
|
|
});
|
2020-08-20 16:40:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function loginECR(registry: string, username: string, password: string): Promise<void> {
|
2021-12-20 10:43:09 +01:00
|
|
|
core.info(`Retrieving registries data through AWS SDK...`);
|
|
|
|
const regDatas = await aws.getRegistriesData(registry, username, password);
|
|
|
|
for (const regData of regDatas) {
|
|
|
|
core.info(`Logging into ${regData.registry}...`);
|
2023-02-21 10:06:17 +01:00
|
|
|
await Exec.getExecOutput('docker', ['login', '--password-stdin', '--username', regData.username, regData.registry], {
|
|
|
|
ignoreReturnCode: true,
|
|
|
|
silent: true,
|
|
|
|
input: Buffer.from(regData.password)
|
|
|
|
}).then(res => {
|
|
|
|
if (res.stderr.length > 0 && res.exitCode != 0) {
|
|
|
|
throw new Error(res.stderr.trim());
|
|
|
|
}
|
|
|
|
core.info('Login Succeeded!');
|
|
|
|
});
|
2021-12-20 10:43:09 +01:00
|
|
|
}
|
2020-08-20 16:40:33 +02:00
|
|
|
}
|