2019-10-30 19:48:49 +01:00
import * as core from "@actions/core" ;
2019-11-13 16:54:39 +01:00
2020-05-14 23:27:38 +02:00
import { Outputs , RefKey , State } from "../constants" ;
2019-10-30 19:48:49 +01:00
2020-05-14 23:27:38 +02:00
export function isExactKeyMatch ( key : string , cacheKey? : string ) : boolean {
2019-10-30 19:48:49 +01:00
return ! ! (
2020-05-14 23:27:38 +02:00
cacheKey &&
cacheKey . localeCompare ( key , undefined , {
2019-10-30 19:48:49 +01:00
sensitivity : "accent"
} ) === 0
) ;
}
2020-05-14 23:27:38 +02:00
export function setCacheState ( state : string ) : void {
2020-05-19 19:46:58 +02:00
core . saveState ( State . CacheMatchedKey , state ) ;
2019-11-12 22:48:02 +01:00
}
export function setCacheHitOutput ( isCacheHit : boolean ) : void {
core . setOutput ( Outputs . CacheHit , isCacheHit . toString ( ) ) ;
}
2020-05-14 23:27:38 +02:00
export function setOutputAndState ( key : string , cacheKey? : string ) : void {
setCacheHitOutput ( isExactKeyMatch ( key , cacheKey ) ) ;
2020-05-19 19:46:58 +02:00
// Store the matched cache key if it exists
2020-05-14 23:27:38 +02:00
cacheKey && setCacheState ( cacheKey ) ;
2019-10-30 19:48:49 +01:00
}
2020-05-14 23:27:38 +02:00
export function getCacheState ( ) : string | undefined {
2020-05-19 19:46:58 +02:00
const cacheKey = core . getState ( State . CacheMatchedKey ) ;
2020-05-14 23:27:38 +02:00
if ( cacheKey ) {
core . debug ( ` Cache state/key: ${ cacheKey } ` ) ;
return cacheKey ;
2019-11-13 22:13:00 +01:00
}
return undefined ;
2019-10-30 19:48:49 +01:00
}
2019-11-21 20:37:54 +01:00
export function logWarning ( message : string ) : void {
const warningPrefix = "[warning]" ;
core . info ( ` ${ warningPrefix } ${ message } ` ) ;
}
2020-04-17 21:46:46 +02:00
// Cache token authorized for all events that are tied to a ref
2019-11-13 16:54:39 +01:00
// See GitHub Context https://help.github.com/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions#github-context
export function isValidEvent ( ) : boolean {
2020-04-20 19:44:37 +02:00
return RefKey in process . env && Boolean ( process . env [ RefKey ] ) ;
2019-11-13 16:54:39 +01:00
}
2020-06-02 17:21:03 +02:00
export function getInputAsArray (
name : string ,
options? : core.InputOptions
) : string [ ] {
return core
. getInput ( name , options )
. split ( "\n" )
. map ( s = > s . trim ( ) )
. filter ( x = > x !== "" ) ;
}