mirror of
https://github.com/azure/login.git
synced 2026-03-15 09:20:56 -04:00
83 lines
4.1 KiB
TypeScript
83 lines
4.1 KiB
TypeScript
import * as core from '@actions/core';
|
|
import * as crypto from "crypto";
|
|
import * as exec from '@actions/exec';
|
|
import * as io from '@actions/io';
|
|
|
|
import { FormatType, SecretParser } from 'actions-secret-parser';
|
|
import { ServicePrincipalLogin } from './PowerShell/ServicePrincipalLogin';
|
|
|
|
var azPath: string;
|
|
var prefix = !!process.env.AZURE_HTTP_USER_AGENT ? `${process.env.AZURE_HTTP_USER_AGENT}` : "";
|
|
var azPSHostEnv = !!process.env.AZUREPS_HOST_ENVIRONMENT ? `${process.env.AZUREPS_HOST_ENVIRONMENT}` : "";
|
|
|
|
async function main() {
|
|
try {
|
|
// Set user agent variable
|
|
var isAzCLISuccess = false;
|
|
let usrAgentRepo = crypto.createHash('sha256').update(`${process.env.GITHUB_REPOSITORY}`).digest('hex');
|
|
let actionName = 'AzureLogin';
|
|
let userAgentString = (!!prefix ? `${prefix}+` : '') + `GITHUBACTIONS/${actionName}@v1_${usrAgentRepo}`;
|
|
let azurePSHostEnv = (!!azPSHostEnv ? `${azPSHostEnv}+` : '') + `GITHUBACTIONS/${actionName}@v1_${usrAgentRepo}`;
|
|
core.exportVariable('AZURE_HTTP_USER_AGENT', userAgentString);
|
|
core.exportVariable('AZUREPS_HOST_ENVIRONMENT', azurePSHostEnv);
|
|
|
|
azPath = await io.which("az", true);
|
|
await executeAzCliCommand("--version");
|
|
|
|
let creds = core.getInput('creds', { required: true });
|
|
let secrets = new SecretParser(creds, FormatType.JSON);
|
|
let servicePrincipalId = secrets.getSecret("$.clientId", false);
|
|
let servicePrincipalKey = secrets.getSecret("$.clientSecret", true);
|
|
let tenantId = secrets.getSecret("$.tenantId", false);
|
|
let subscriptionId = secrets.getSecret("$.subscriptionId", false);
|
|
const enableAzPSSession = core.getInput('enable-AzPSSession').toLowerCase() === "true";
|
|
const allowNoSubscriptionsLogin = core.getInput('allow-no-subscriptions').toLowerCase() === "true";
|
|
if (!servicePrincipalId || !servicePrincipalKey || !tenantId) {
|
|
throw new Error("Not all values are present in the creds object. Ensure clientId, clientSecret and tenantId are supplied.");
|
|
}
|
|
|
|
if (!subscriptionId && !allowNoSubscriptionsLogin) {
|
|
throw new Error("Not all values are present in the creds object. Ensure subscriptionId is supplied.");
|
|
}
|
|
|
|
// Attempting Az cli login
|
|
if (allowNoSubscriptionsLogin) {
|
|
await executeAzCliCommand(`login --allow-no-subscriptions --service-principal -u "${servicePrincipalId}" -p "${servicePrincipalKey}" --tenant "${tenantId}"`, true);
|
|
}
|
|
else {
|
|
await executeAzCliCommand(`login --service-principal -u "${servicePrincipalId}" -p "${servicePrincipalKey}" --tenant "${tenantId}"`, true);
|
|
await executeAzCliCommand(`account set --subscription "${subscriptionId}"`, true);
|
|
}
|
|
isAzCLISuccess = true;
|
|
if (enableAzPSSession) {
|
|
// Attempting Az PS login
|
|
console.log(`Running Azure PS Login`);
|
|
const spnlogin: ServicePrincipalLogin = new ServicePrincipalLogin(servicePrincipalId, servicePrincipalKey, tenantId, subscriptionId, allowNoSubscriptionsLogin);
|
|
await spnlogin.initialize();
|
|
await spnlogin.login();
|
|
}
|
|
console.log("Login successful.");
|
|
} catch (error) {
|
|
if (!isAzCLISuccess) {
|
|
core.error("Az CLI Login failed. Please check the credentials. For more information refer https://aka.ms/create-secrets-for-GitHub-workflows");
|
|
} else {
|
|
core.error(`Azure PowerShell Login failed. Please check the credentials. For more information refer https://aka.ms/create-secrets-for-GitHub-workflows"`);
|
|
}
|
|
core.setFailed(error);
|
|
} finally {
|
|
// Reset AZURE_HTTP_USER_AGENT
|
|
core.exportVariable('AZURE_HTTP_USER_AGENT', prefix);
|
|
core.exportVariable('AZUREPS_HOST_ENVIRONMENT', azPSHostEnv);
|
|
}
|
|
}
|
|
|
|
async function executeAzCliCommand(command: string, silent?: boolean) {
|
|
try {
|
|
await exec.exec(`"${azPath}" ${command}`, [], {silent: !!silent});
|
|
}
|
|
catch(error) {
|
|
throw new Error(error);
|
|
}
|
|
}
|
|
|
|
main(); |