2020-03-28 22:35:26 +08:00
import { isDebug } from '@actions/core'
2020-03-07 11:36:56 +08:00
import { ActionInterface } from './constants'
2020-03-02 20:52:38 +08:00
/* Utility function that checks to see if a value is undefined or not. */
export const isNullOrUndefined = ( value : any ) : boolean = >
2020-03-05 21:19:45 +08:00
typeof value === 'undefined' || value === null || value === ''
2020-03-02 20:52:38 +08:00
/* Generates a token type used for the action. */
2020-03-07 11:36:56 +08:00
export const generateTokenType = ( action : ActionInterface ) : string = >
2020-03-02 20:52:38 +08:00
action . ssh
2020-03-05 21:19:45 +08:00
? 'SSH Deploy Key'
2020-03-02 20:52:38 +08:00
: action . accessToken
2020-03-05 21:19:45 +08:00
? 'Access Token'
2020-03-02 20:52:38 +08:00
: action . gitHubToken
2020-03-05 21:19:45 +08:00
? 'GitHub Token'
: '...'
2020-03-02 20:52:38 +08:00
/* Generates a the repository path used to make the commits. */
2020-03-07 11:36:56 +08:00
export const generateRepositoryPath = ( action : ActionInterface ) : string = >
2020-03-02 20:52:38 +08:00
action . ssh
2020-03-02 21:37:55 +08:00
? ` git@github.com: ${ action . repositoryName } `
2020-03-25 22:17:13 +08:00
: ` https:// ${
action . accessToken || ` x-access-token: ${ action . gitHubToken } `
} @github . com / $ { action . repositoryName } . git `
2020-03-02 20:52:38 +08:00
/* Checks for the required tokens and formatting. Throws an error if any case is matched. */
2020-03-07 11:36:56 +08:00
export const hasRequiredParameters = ( action : ActionInterface ) : void = > {
2020-03-02 20:52:38 +08:00
if (
( isNullOrUndefined ( action . accessToken ) &&
isNullOrUndefined ( action . gitHubToken ) &&
isNullOrUndefined ( action . ssh ) ) ||
isNullOrUndefined ( action . repositoryPath )
) {
throw new Error (
2020-03-05 21:19:45 +08:00
'No deployment token/method was provided. You must provide the action with either a Personal Access Token or the GitHub Token secret in order to deploy. If you wish to use an ssh deploy token then you must set SSH to true.'
)
2020-03-02 20:52:38 +08:00
}
if ( isNullOrUndefined ( action . branch ) ) {
2020-03-05 21:19:45 +08:00
throw new Error ( 'Branch is required.' )
2020-03-02 20:52:38 +08:00
}
if ( ! action . folder || isNullOrUndefined ( action . folder ) ) {
2020-03-05 21:19:45 +08:00
throw new Error ( 'You must provide the action with a folder to deploy.' )
2020-03-02 20:52:38 +08:00
}
2020-03-05 21:19:45 +08:00
if ( action . folder . startsWith ( '/' ) || action . folder . startsWith ( './' ) ) {
2020-03-02 20:52:38 +08:00
throw new Error (
"Incorrectly formatted build folder. The deployment folder cannot be prefixed with '/' or './'. Instead reference the folder name directly."
2020-03-05 21:19:45 +08:00
)
2020-03-02 20:52:38 +08:00
}
2020-03-05 21:19:45 +08:00
}
2020-03-02 20:52:38 +08:00
/* Suppresses sensitive information from being exposed in error messages. */
export const suppressSensitiveInformation = (
str : string ,
2020-03-07 11:36:56 +08:00
action : ActionInterface
) : string = > {
2020-03-05 21:19:45 +08:00
let value = str
2020-03-02 20:52:38 +08:00
2020-03-28 22:35:26 +08:00
if ( isDebug ( ) ) {
2020-03-02 20:52:38 +08:00
// Data is unmasked in debug mode.
2020-03-05 21:19:45 +08:00
return value
2020-03-02 20:52:38 +08:00
}
if ( action . accessToken ) {
2020-03-05 21:19:45 +08:00
value = value . replace ( action . accessToken , '***' )
2020-03-02 20:52:38 +08:00
}
if ( action . gitHubToken ) {
2020-03-05 21:19:45 +08:00
value = value . replace ( action . gitHubToken , '***' )
2020-03-02 20:52:38 +08:00
}
if ( action . repositoryPath ) {
2020-03-05 21:19:45 +08:00
value = value . replace ( action . repositoryPath , '***' )
2020-03-02 20:52:38 +08:00
}
2020-03-05 21:19:45 +08:00
return value
}