1
0
Fork 0
toolkit/packages/core/src/core.ts

173 lines
4.1 KiB
TypeScript
Raw Normal View History

2019-05-21 19:26:44 +00:00
import {issue, issueCommand} from './command'
2019-05-17 03:36:45 +00:00
import * as path from 'path'
2019-05-21 16:00:23 +00:00
/**
* Interface for getInput options
*/
export interface InputOptions {
/** Optional. Whether the input is required. If required and not present, will throw. Defaults to false */
required?: boolean
}
/**
* The code to exit an action
*/
export enum ExitCode {
/**
* A code indicating that the action was successful
*/
Success = 0,
/**
* A code indicating that the action was a failure
*/
2019-08-06 13:12:30 +00:00
Failure = 1
}
2019-05-17 14:23:01 +00:00
//-----------------------------------------------------------------------
// Variables
//-----------------------------------------------------------------------
2019-05-17 03:36:45 +00:00
/**
* sets env variable for this action and future actions in the job
* @param name the name of the variable to set
* @param val the value of the variable
*/
2019-05-21 21:08:25 +00:00
export function exportVariable(name: string, val: string): void {
2019-05-20 23:17:56 +00:00
process.env[name] = val
2019-05-21 19:26:44 +00:00
issueCommand('set-env', {name}, val)
2019-05-17 03:36:45 +00:00
}
/**
2019-05-17 14:23:01 +00:00
* exports the variable and registers a secret which will get masked from logs
* @param name the name of the variable to set
2019-05-17 03:36:45 +00:00
* @param val value of the secret
*/
2019-05-21 21:08:25 +00:00
export function exportSecret(name: string, val: string): void {
2019-05-20 23:17:56 +00:00
exportVariable(name, val)
2019-08-25 04:55:22 +00:00
// the runner will error with not implemented
2019-08-24 13:22:38 +00:00
// leaving the function but raising the error earlier
2019-05-21 19:26:44 +00:00
issueCommand('set-secret', {}, val)
2019-08-25 04:55:22 +00:00
throw new Error('Not implemented.')
2019-05-20 23:17:56 +00:00
}
2019-05-17 03:36:45 +00:00
/**
* Prepends inputPath to the PATH (for this action and future actions)
* @param inputPath
*/
export function addPath(inputPath: string): void {
issueCommand('add-path', {}, inputPath)
process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`
}
2019-05-17 14:23:01 +00:00
/**
* Gets the value of an input. The value is also trimmed.
2019-05-20 23:17:56 +00:00
*
2019-05-17 14:23:01 +00:00
* @param name name of the input to get
* @param options optional. See InputOptions.
* @returns string
*/
2019-05-21 16:03:13 +00:00
export function getInput(name: string, options?: InputOptions): string {
2019-05-21 14:51:22 +00:00
const val: string =
process.env[`INPUT_${name.replace(' ', '_').toUpperCase()}`] || ''
2019-05-20 23:17:56 +00:00
if (options && options.required && !val) {
throw new Error(`Input required and not supplied: ${name}`)
}
2019-05-17 14:23:01 +00:00
2019-05-20 23:17:56 +00:00
return val.trim()
2019-05-17 14:23:01 +00:00
}
2019-06-24 20:14:47 +00:00
/**
* Sets the value of an output.
*
* @param name name of the output to set
* @param value value to store
*/
export function setOutput(name: string, value: string): void {
issueCommand('set-output', {name}, value)
2019-06-24 20:14:47 +00:00
}
2019-05-17 03:36:45 +00:00
//-----------------------------------------------------------------------
// Results
//-----------------------------------------------------------------------
/**
2019-05-20 23:17:56 +00:00
* Sets the action status to failed.
2019-05-17 03:36:45 +00:00
* When the action exits it will be with an exit code of 1
* @param message add error issue message
*/
2019-05-21 21:08:25 +00:00
export function setFailed(message: string): void {
2019-05-21 16:00:23 +00:00
process.exitCode = ExitCode.Failure
2019-05-20 23:17:56 +00:00
error(message)
2019-05-17 03:36:45 +00:00
}
//-----------------------------------------------------------------------
// Logging Commands
//-----------------------------------------------------------------------
/**
* Writes debug message to user log
* @param message debug message
*/
2019-05-21 21:08:25 +00:00
export function debug(message: string): void {
2019-05-21 19:26:44 +00:00
issueCommand('debug', {}, message)
2019-05-17 03:36:45 +00:00
}
/**
* Adds an error issue
* @param message error issue message
*/
2019-05-21 21:08:25 +00:00
export function error(message: string): void {
2019-05-21 19:26:44 +00:00
issue('error', message)
2019-05-17 03:36:45 +00:00
}
/**
* Adds an warning issue
* @param message warning issue message
*/
2019-05-21 21:08:25 +00:00
export function warning(message: string): void {
2019-05-21 19:26:44 +00:00
issue('warning', message)
2019-05-17 03:36:45 +00:00
}
2019-08-29 02:35:27 +00:00
/**
* Begin an output group.
*
* Output until the next `groupEnd` will be foldable in this group
*
* @param name The name of the output group
*/
export function startGroup(name: string): void {
issue('group', name)
}
/**
* End an output group.
*/
export function endGroup(): void {
issue('endgroup')
}
/**
* Wrap an asynchronous function call in a group.
*
* Returns the same type as the function itself.
*
* @param name The name of the group
* @param fn The function to wrap in the group
*/
export async function group<T>(name: string, fn: () => Promise<T>): Promise<T> {
startGroup(name)
let result: T
try {
result = await fn()
} finally {
endGroup()
}
2019-08-29 02:35:27 +00:00
return result
}