mirror of
https://github.com/azure/login.git
synced 2026-03-13 18:17:09 -04:00
* Added OIDC support for login action (#147) * OIDC support for Powershell login (#156) * OIDC support ps (#155) ps login support * Update main.ts * formatting code * nit changes Co-authored-by: Balaga Gayatri <balaga-gayatri@github.com>
86 lines
4.0 KiB
JavaScript
86 lines
4.0 KiB
JavaScript
"use strict";
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const core = __importStar(require("@actions/core"));
|
|
const Constants_1 = __importDefault(require("../Constants"));
|
|
class ScriptBuilder {
|
|
constructor() {
|
|
this.script = "";
|
|
}
|
|
getAzPSLoginScript(scheme, tenantId, args) {
|
|
let command = `Clear-AzContext -Scope Process;
|
|
Clear-AzContext -Scope CurrentUser -Force -ErrorAction SilentlyContinue;`;
|
|
if (scheme === Constants_1.default.ServicePrincipal) {
|
|
if (args.environment.toLowerCase() == "azurestack") {
|
|
command += `Add-AzEnvironment -Name ${args.environment} -ARMEndpoint ${args.resourceManagerEndpointUrl} | out-null;`;
|
|
}
|
|
// Separate command script for OIDC and non-OIDC
|
|
if (!!args.federatedToken) {
|
|
command += `Connect-AzAccount -ServicePrincipal -ApplicationId '${args.servicePrincipalId}' -Tenant '${tenantId}' -FederatedToken '${args.federatedToken}' \
|
|
-Environment '${args.environment}' | out-null;`;
|
|
}
|
|
else {
|
|
command += `Connect-AzAccount -ServicePrincipal -Tenant '${tenantId}' -Credential \
|
|
(New-Object System.Management.Automation.PSCredential('${args.servicePrincipalId}',(ConvertTo-SecureString '${args.servicePrincipalKey.replace("'", "''")}' -AsPlainText -Force))) \
|
|
-Environment '${args.environment}' | out-null;`;
|
|
}
|
|
// command to set the subscription
|
|
if (args.scopeLevel === Constants_1.default.Subscription && !args.allowNoSubscriptionsLogin) {
|
|
command += `Set-AzContext -SubscriptionId '${args.subscriptionId}' -TenantId '${tenantId}' | out-null;`;
|
|
}
|
|
}
|
|
this.script += `try {
|
|
$ErrorActionPreference = "Stop"
|
|
$WarningPreference = "SilentlyContinue"
|
|
$output = @{}
|
|
${command}
|
|
$output['${Constants_1.default.Success}'] = "true"
|
|
}
|
|
catch {
|
|
$output['${Constants_1.default.Error}'] = $_.exception.Message
|
|
}
|
|
return ConvertTo-Json $output`;
|
|
core.debug(`Azure PowerShell Login Script: ${this.script}`);
|
|
return this.script;
|
|
}
|
|
getLatestModuleScript(moduleName) {
|
|
const command = `Get-Module -Name ${moduleName} -ListAvailable | Sort-Object Version -Descending | Select-Object -First 1`;
|
|
this.script += `try {
|
|
$ErrorActionPreference = "Stop"
|
|
$WarningPreference = "SilentlyContinue"
|
|
$output = @{}
|
|
$data = ${command}
|
|
$output['${Constants_1.default.AzVersion}'] = $data.Version.ToString()
|
|
$output['${Constants_1.default.Success}'] = "true"
|
|
}
|
|
catch {
|
|
$output['${Constants_1.default.Error}'] = $_.exception.Message
|
|
}
|
|
return ConvertTo-Json $output`;
|
|
core.debug(`GetLatestModuleScript: ${this.script}`);
|
|
return this.script;
|
|
}
|
|
}
|
|
exports.default = ScriptBuilder;
|