2020-08-21 12:45:16 +00:00
|
|
|
import * as aws from './aws';
|
2021-06-22 09:09:26 +00:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as exec from '@actions/exec';
|
2020-08-20 14:40:33 +00:00
|
|
|
|
|
|
|
export async function login(registry: string, username: string, password: string): Promise<void> {
|
2020-08-21 12:45:16 +00:00
|
|
|
if (await aws.isECR(registry)) {
|
2020-08-20 14:40:33 +00:00
|
|
|
await loginECR(registry, username, password);
|
|
|
|
} else {
|
|
|
|
await loginStandard(registry, username, password);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function logout(registry: string): Promise<void> {
|
2021-06-22 09:09:26 +00: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 14:40:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function loginStandard(registry: string, username: string, password: string): Promise<void> {
|
2020-10-20 12:41:56 +00:00
|
|
|
if (!username || !password) {
|
|
|
|
throw new Error('Username and password required');
|
2020-08-20 14:40:33 +00:00
|
|
|
}
|
2020-10-20 12:41:56 +00:00
|
|
|
|
|
|
|
let loginArgs: Array<string> = ['login', '--password-stdin'];
|
|
|
|
loginArgs.push('--username', username);
|
2020-08-20 14:40:33 +00:00
|
|
|
loginArgs.push(registry);
|
|
|
|
|
|
|
|
if (registry) {
|
2021-04-27 22:34:26 +00:00
|
|
|
core.info(`Logging into ${registry}...`);
|
2020-08-20 14:40:33 +00:00
|
|
|
} else {
|
2021-04-27 22:34:26 +00:00
|
|
|
core.info(`Logging into Docker Hub...`);
|
2020-08-20 14:40:33 +00:00
|
|
|
}
|
2021-06-22 09:09:26 +00: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 14:40:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function loginECR(registry: string, username: string, password: string): Promise<void> {
|
2020-08-21 12:45:16 +00:00
|
|
|
const cliPath = await aws.getCLI();
|
|
|
|
const cliVersion = await aws.getCLIVersion();
|
2020-08-21 13:27:22 +00:00
|
|
|
const region = await aws.getRegion(registry);
|
2020-12-17 19:21:48 +00:00
|
|
|
const accountIDs = await aws.getAccountIDs(registry);
|
2020-12-11 06:15:35 +00:00
|
|
|
|
|
|
|
if (await aws.isPubECR(registry)) {
|
2021-04-27 22:34:26 +00:00
|
|
|
core.info(`AWS Public ECR detected with ${region} region`);
|
2020-12-11 06:15:35 +00:00
|
|
|
} else {
|
2021-04-27 22:34:26 +00:00
|
|
|
core.info(`AWS ECR detected with ${region} region`);
|
2020-12-11 06:15:35 +00:00
|
|
|
}
|
2020-08-21 12:45:16 +00:00
|
|
|
|
2021-12-06 10:28:43 +00:00
|
|
|
if (username) {
|
|
|
|
process.env.AWS_ACCESS_KEY_ID = username;
|
|
|
|
}
|
|
|
|
if (password) {
|
|
|
|
process.env.AWS_SECRET_ACCESS_KEY = password;
|
|
|
|
}
|
2020-08-21 12:56:11 +00:00
|
|
|
|
2021-04-27 22:34:26 +00:00
|
|
|
core.info(`Retrieving docker login command through AWS CLI ${cliVersion} (${cliPath})...`);
|
2020-12-17 19:21:48 +00:00
|
|
|
const loginCmds = await aws.getDockerLoginCmds(cliVersion, registry, region, accountIDs);
|
2020-08-21 13:27:22 +00:00
|
|
|
|
2021-04-27 22:34:26 +00:00
|
|
|
core.info(`Logging into ${registry}...`);
|
2020-12-16 20:53:24 +00:00
|
|
|
loginCmds.forEach((loginCmd, index) => {
|
2021-06-22 09:09:26 +00:00
|
|
|
exec
|
|
|
|
.getExecOutput(loginCmd, [], {
|
|
|
|
ignoreReturnCode: true,
|
|
|
|
silent: true
|
|
|
|
})
|
|
|
|
.then(res => {
|
|
|
|
if (res.stderr.length > 0 && res.exitCode != 0) {
|
|
|
|
throw new Error(res.stderr.trim());
|
|
|
|
}
|
|
|
|
if (loginCmds.length > 1) {
|
|
|
|
core.info(`Login Succeeded! (${index}/${loginCmds.length})`);
|
|
|
|
} else {
|
|
|
|
core.info('Login Succeeded!');
|
|
|
|
}
|
|
|
|
});
|
2020-08-20 14:40:33 +00:00
|
|
|
});
|
|
|
|
}
|