-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment_variable.ts
229 lines (229 loc) · 8.35 KB
/
environment_variable.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
import { isAbsolute as isPathAbsolute } from "jsr:@std/path@^1.0.8/is-absolute";
import { setEnv } from "https://raw.githubusercontent.com/hugoalh/env-es/v0.2.0/env.ts";
import { addEnvPath } from "https://raw.githubusercontent.com/hugoalh/env-es/v0.2.0/path.ts";
import { isStringSingleLine } from "https://raw.githubusercontent.com/hugoalh/is-string-singleline-es/v1.0.4/mod.ts";
import {
stringifyInput,
type KeyValueLike,
type StringizableType
} from "./_share.ts";
import {
appendFileLineCommand,
appendFileMapCommand,
clearFileCommand,
optimizeFileCommand
} from "./command/file.ts";
/**
* Add value to the `PATH`.
*
* > **🛡️ Runtime Permissions**
* >
* > - Environment Variable \[Deno: `env`\]
* > - `GITHUB_PATH` (Optional)
* > - `PATH` (Optional)
* > - File System - Read \[Deno: `read`; NodeJS (>= v20.9.0) 🧪: `fs-read`\]
* > - *Resources* (Optional)
* > - File System - Write \[Deno: `write`; NodeJS (>= v20.9.0) 🧪: `fs-write`\]
* > - *Resources* (Optional)
* @param {string} path Value that need to add to the `PATH`.
* @param {GitHubActionsSetEnvironmentVariableOptions} [options={}] Options.
* @returns {void}
*/
export function addPATH(path: string, options?: GitHubActionsSetEnvironmentVariableOptions): void;
/**
* Add value to the `PATH`.
*
* > **🛡️ Runtime Permissions**
* >
* > - Environment Variable \[Deno: `env`\]
* > - `GITHUB_PATH` (Optional)
* > - `PATH` (Optional)
* > - File System - Read \[Deno: `read`; NodeJS (>= v20.9.0) 🧪: `fs-read`\]
* > - *Resources* (Optional)
* > - File System - Write \[Deno: `write`; NodeJS (>= v20.9.0) 🧪: `fs-write`\]
* > - *Resources* (Optional)
* @param {string[]} paths Value that need to add to the `PATH`.
* @param {GitHubActionsSetEnvironmentVariableOptions} [options={}] Options.
* @returns {void}
*/
export function addPATH(paths: string[], options?: GitHubActionsSetEnvironmentVariableOptions): void;
export function addPATH(param0: string | string[], options: GitHubActionsSetEnvironmentVariableOptions = {}): void {
const {
scopeCurrent = true,
scopeSubsequent = true
}: GitHubActionsSetEnvironmentVariableOptions = options;
const paths: string[] = (typeof param0 === "string") ? [param0] : param0;
paths.forEach((path: string): void => {
if (!isPathAbsolute(path)) {
throw new SyntaxError(`\`${path}\` is not a valid absolute path!`);
}
});
if (paths.length > 0) {
if (scopeCurrent) {
addEnvPath(...paths);
}
if (scopeSubsequent) {
appendFileLineCommand("GITHUB_PATH", ...paths);
}
}
}
/**
* **\[🅰️ Advanced\]** Clear the environment variables for all of the subsequent steps which set in the current step.
*
* > **🛡️ Runtime Permissions**
* >
* > - Environment Variable \[Deno: `env`\]
* > - `GITHUB_ENV`
* > - File System - Read \[Deno: `read`; NodeJS (>= v20.9.0) 🧪: `fs-read`\]
* > - *Resources*
* > - File System - Write \[Deno: `write`; NodeJS (>= v20.9.0) 🧪: `fs-write`\]
* > - *Resources*
* @returns {void}
*/
export function clearEnvironmentVariableSubsequent(): void {
return clearFileCommand("GITHUB_ENV");
}
export {
clearEnvironmentVariableSubsequent as clearEnvSubsequent
};
/**
* **\[🅰️ Advanced\]** Clear the `PATH` for all of the subsequent steps which set in the current step.
*
* > **🛡️ Runtime Permissions**
* >
* > - Environment Variable \[Deno: `env`\]
* > - `GITHUB_PATH`
* > - File System - Read \[Deno: `read`; NodeJS (>= v20.9.0) 🧪: `fs-read`\]
* > - *Resources* (Optional)
* > - File System - Write \[Deno: `write`; NodeJS (>= v20.9.0) 🧪: `fs-write`\]
* > - *Resources* (Optional)
* @returns {void}
*/
export function clearPATHSubsequent(): void {
return clearFileCommand("GITHUB_PATH");
}
/**
* **\[🅰️ Advanced\]** Optimize the environment variables for all of the subsequent steps which set in the current step to reduce size whenever possible.
*
* > **🛡️ Runtime Permissions**
* >
* > - Environment Variable \[Deno: `env`\]
* > - `GITHUB_ENV`
* > - File System - Read \[Deno: `read`; NodeJS (>= v20.9.0) 🧪: `fs-read`\]
* > - *Resources*
* > - File System - Write \[Deno: `write`; NodeJS (>= v20.9.0) 🧪: `fs-write`\]
* > - *Resources*
* @returns {void}
*/
export function optimizeEnvironmentVariableSubsequent(): void {
return optimizeFileCommand("GITHUB_ENV");
}
export {
optimizeEnvironmentVariableSubsequent as optimizeEnvSubsequent
};
/**
* **\[🅰️ Advanced\]** Optimize the `PATH` for all of the subsequent steps which set in the current step to reduce size whenever possible.
*
* > **🛡️ Runtime Permissions**
* >
* > - Environment Variable \[Deno: `env`\]
* > - `GITHUB_PATH`
* > - File System - Read \[Deno: `read`; NodeJS (>= v20.9.0) 🧪: `fs-read`\]
* > - *Resources* (Optional)
* > - File System - Write \[Deno: `write`; NodeJS (>= v20.9.0) 🧪: `fs-write`\]
* > - *Resources* (Optional)
* @returns {void}
*/
export function optimizePATHSubsequent(): void {
return optimizeFileCommand("GITHUB_PATH");
}
const regexpEnvironmentVariableKeyForbidden = /^(?:CI|PATH)$|^(?:ACTIONS|GITHUB|RUNNER)_/i;
/**
* Validate the item is a valid GitHub Actions environment variable key.
* @param {string} item Item that need to determine.
* @returns {void}
*/
function validateEnvironmentVariableKey(item: string): void {
if (!(isStringSingleLine(item) && item.length > 0)) {
throw new SyntaxError(`\`${item}\` is not a valid environment variable key!`);
}
if (regexpEnvironmentVariableKeyForbidden.test(item)) {
throw new Error(`Modify environment variable \`${item}\` is forbidden!`);
}
}
export interface GitHubActionsSetEnvironmentVariableOptions {
/**
* Whether to set for the current step.
* @default {true}
*/
scopeCurrent?: boolean;
/**
* Whether to set for all of the subsequent steps.
* @default {true}
*/
scopeSubsequent?: boolean;
}
/**
* Set an environment variable.
*
* > **🛡️ Runtime Permissions**
* >
* > - Environment Variable \[Deno: `env`\]
* > - `GITHUB_ENV` (Optional)
* > - *Resources* (Optional)
* > - File System - Read \[Deno: `read`; NodeJS (>= v20.9.0) 🧪: `fs-read`\]
* > - *Resources* (Optional)
* > - File System - Write \[Deno: `write`; NodeJS (>= v20.9.0) 🧪: `fs-write`\]
* > - *Resources* (Optional)
* @param {string} key Key of the environment variable.
* @param {StringizableType} value Value of the environment variable.
* @param {GitHubActionsSetEnvironmentVariableOptions} [options={}] Options.
* @returns {void}
*/
export function setEnvironmentVariable(key: string, value: StringizableType, options?: GitHubActionsSetEnvironmentVariableOptions): void;
/**
* Set the environment variables.
*
* > **🛡️ Runtime Permissions**
* >
* > - Environment Variable \[Deno: `env`\]
* > - `GITHUB_ENV` (Optional)
* > - *Resources* (Optional)
* > - File System - Read \[Deno: `read`; NodeJS (>= v20.9.0) 🧪: `fs-read`\]
* > - *Resources* (Optional)
* > - File System - Write \[Deno: `write`; NodeJS (>= v20.9.0) 🧪: `fs-write`\]
* > - *Resources* (Optional)
* @param {KeyValueLike<StringizableType>} pairs Pairs of the environment variable.
* @param {GitHubActionsSetEnvironmentVariableOptions} [options={}] Options.
* @returns {void}
*/
export function setEnvironmentVariable(pairs: KeyValueLike<StringizableType>, options?: GitHubActionsSetEnvironmentVariableOptions): void;
export function setEnvironmentVariable(param0: string | KeyValueLike<StringizableType>, param1?: StringizableType | GitHubActionsSetEnvironmentVariableOptions, param2?: GitHubActionsSetEnvironmentVariableOptions): void {
const {
scopeCurrent = true,
scopeSubsequent = true
}: GitHubActionsSetEnvironmentVariableOptions = ((typeof param0 === "string") ? (param1 as GitHubActionsSetEnvironmentVariableOptions | undefined) : param2) ?? {};
const pairs: Map<string, string> = new Map<string, string>();
if (typeof param0 === "string") {
validateEnvironmentVariableKey(param0);
pairs.set(param0, stringifyInput(param1 as StringizableType));
} else {
for (const [key, value] of ((param0 instanceof Map) ? param0.entries() : Object.entries(param0))) {
validateEnvironmentVariableKey(key);
pairs.set(key, stringifyInput(value));
}
}
if (pairs.size > 0) {
if (scopeCurrent) {
for (const [key, value] of pairs.values()) {
setEnv(key, value);
}
}
if (scopeSubsequent) {
appendFileMapCommand("GITHUB_ENV", pairs);
}
}
}
export {
setEnvironmentVariable as setEnv
};