2020-08-20 16:40:33 +02:00
|
|
|
import * as core from '@actions/core';
|
2020-08-21 14:45:16 +02:00
|
|
|
import * as aws from './aws';
|
2020-08-20 16:40:33 +02:00
|
|
|
import * as execm from './exec';
|
|
|
|
|
|
|
|
export async function login(registry: string, username: string, password: string): Promise<void> {
|
2020-08-21 14:45:16 +02:00
|
|
|
if (await 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> {
|
|
|
|
await execm.exec('docker', ['logout', registry], false).then(res => {
|
|
|
|
if (res.stderr != '' && !res.success) {
|
|
|
|
core.warning(res.stderr);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function loginStandard(registry: string, username: string, password: string): Promise<void> {
|
2020-09-24 20:21:04 +02:00
|
|
|
let loginArgs: Array<string> = ['login', '--password-stdin'];
|
2020-08-20 16:40:33 +02:00
|
|
|
if (username) {
|
|
|
|
loginArgs.push('--username', username);
|
|
|
|
}
|
|
|
|
loginArgs.push(registry);
|
|
|
|
|
|
|
|
if (registry) {
|
|
|
|
core.info(`🔑 Logging into ${registry}...`);
|
|
|
|
} else {
|
|
|
|
core.info(`🔑 Logging into DockerHub...`);
|
|
|
|
}
|
2020-09-24 20:21:04 +02:00
|
|
|
await execm.exec('docker', loginArgs, true, password).then(res => {
|
2020-08-20 16:40:33 +02:00
|
|
|
if (res.stderr != '' && !res.success) {
|
|
|
|
throw new Error(res.stderr);
|
|
|
|
}
|
|
|
|
core.info('🎉 Login Succeeded!');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function loginECR(registry: string, username: string, password: string): Promise<void> {
|
2020-08-21 14:45:16 +02:00
|
|
|
const cliPath = await aws.getCLI();
|
|
|
|
const cliVersion = await aws.getCLIVersion();
|
2020-08-21 15:27:22 +02:00
|
|
|
const region = await aws.getRegion(registry);
|
2020-08-21 16:29:54 +02:00
|
|
|
core.info(`💡 AWS ECR detected with ${region} region`);
|
2020-08-21 14:45:16 +02:00
|
|
|
|
2020-08-20 16:40:33 +02:00
|
|
|
process.env.AWS_ACCESS_KEY_ID = username;
|
|
|
|
process.env.AWS_SECRET_ACCESS_KEY = password;
|
2020-08-21 14:56:11 +02:00
|
|
|
|
|
|
|
core.info(`⬇️ Retrieving docker login command through AWS CLI ${cliVersion} (${cliPath})...`);
|
2020-08-21 16:29:54 +02:00
|
|
|
const loginCmd = await aws.getDockerLoginCmd(cliVersion, registry, region);
|
2020-08-21 15:27:22 +02:00
|
|
|
|
|
|
|
core.info(`🔑 Logging into ${registry}...`);
|
|
|
|
execm.exec(loginCmd, [], true).then(res => {
|
|
|
|
if (res.stderr != '' && !res.success) {
|
|
|
|
throw new Error(res.stderr);
|
|
|
|
}
|
|
|
|
core.info('🎉 Login Succeeded!');
|
2020-08-20 16:40:33 +02:00
|
|
|
});
|
|
|
|
}
|