56 lines
2.5 KiB
JavaScript
56 lines
2.5 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const core = require("@actions/core");
|
|
const Constants_1 = 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;`;
|
|
}
|
|
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;`;
|
|
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;
|