-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
152 lines (119 loc) · 4.44 KB
/
main.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
** This module is the action's main entry point.
*/
import * as core from "@actions/core";
import { install } from "./lib/install";
import { createEncryptionKey, saveEncryptionKey, saveSalesforceCredentials, setDefaultStack, setLicenseKey } from "./lib/cli";
import { setCommitterEmail, setCommitterName, configureGitAuthentication } from "./lib/git";
import { setDiagnostics } from "./lib/diag";
export async function run()
{
try
{
// Gather and validate input:
const versionSpec = core.getInput("version");
const includePrerelease =
core.getInput("include-prerelease") ? // getBooleanInput() will throw if input is not present, so guard against that
core.getBooleanInput("include-prerelease") :
false;
const skipInstall =
core.getInput("skip-install") ? // getBooleanInput() will throw if input is not present, so guard against that
core.getBooleanInput("skip-install") :
false;
const licenseKey = core.getInput("license-key");
if (!licenseKey)
{
core.setFailed("Input value 'license-key' is required.");
}
const salesforceUsername = core.getInput("salesforce-username");
const salesforcePassword = core.getInput("salesforce-password");
if (!!salesforceUsername !== !!salesforcePassword)
{
core.setFailed("Either both or neither of inputs 'salesforce-username' and 'salesforce-password' must have a value.");
}
const gitUsername = core.getInput("git-username");
const gitPassword = core.getInput("git-password");
const gitCommitterName = core.getInput("git-committer-name");
const gitCommitterEmail = core.getInput("git-committer-email");
if (gitUsername && !gitPassword)
{
core.setFailed("Input value 'git-username' must only be used when also using 'git-password'.");
}
const stackName = core.getInput("stack-name");
if (!stackName && salesforcePassword)
{
core.setFailed("Input value 'stack-name' is required when saving Salesforce credentials.");
}
if (!stackName && gitPassword)
{
core.setFailed("Input value 'stack-name' is required when saving Git credentials.");
}
const encryptionKeyInput = core.getInput("encryption-key");
if (encryptionKeyInput && encryptionKeyInput.length !== 64)
{
core.setFailed("Input value 'encryption-key' must consist of 64 hexadecimal characters if specified.");
}
const logFileName = core.getInput("log-file-name");
const logLevel = core.getInput("log-level");
if (process.exitCode === core.ExitCode.Failure)
{
// Don't proceed if input validation failed.
return;
}
// Configure diagnostics for use during this action:
setDiagnostics("setup.log", logLevel);
// Download and install:
const installedVersion = await core.group("Install", () => install(versionSpec, includePrerelease, skipInstall));
core.setOutput("version", installedVersion);
// Validate and save license key:
await core.group("Set license key", () => setLicenseKey(licenseKey));
// Create (if needed) and save encryption key:
const encryptionKey = await core.group("Save encryption key", async () =>
{
const encryptionKey = encryptionKeyInput || await createEncryptionKey();
core.setSecret(encryptionKey); // Mask encryption key in logs
core.setOutput("encryption-key", encryptionKey);
if (stackName)
{
await saveEncryptionKey(encryptionKey, stackName);
}
return encryptionKey;
});
// Save Salesforce credentials:
if (salesforcePassword)
{
await core.group("Save Salesforce credentials", () => saveSalesforceCredentials(salesforceUsername, salesforcePassword, stackName));
}
// Configure Git authentication and committer signature:
if (gitPassword)
{
await core.group("Configure Git authentication", () => configureGitAuthentication(gitUsername, gitPassword, encryptionKey, stackName));
}
if (gitCommitterName || gitCommitterEmail)
{
await core.group("Configure Git committer", async () =>
{
if (gitCommitterName)
{
await setCommitterName(gitCommitterName);
}
if (gitCommitterEmail)
{
await setCommitterEmail(gitCommitterEmail);
}
});
}
// Set default stack:
if (stackName)
{
await core.group("Set default stack", () => setDefaultStack(stackName));
}
// Configure diagnostics for subsequent steps:
setDiagnostics(logFileName, logLevel);
}
catch (error)
{
core.setFailed(error.message);
}
}
run();