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