2019-10-30 18:48:49 +00:00
import * as core from "@actions/core" ;
2019-11-13 15:54:39 +00:00
2020-05-14 22:27:38 +01:00
import { Outputs , RefKey , State } from "../constants" ;
2019-10-30 18:48:49 +00:00
2020-05-14 22:27:38 +01:00
export function isExactKeyMatch ( key : string , cacheKey? : string ) : boolean {
2019-10-30 18:48:49 +00:00
return ! ! (
2020-05-14 22:27:38 +01:00
cacheKey &&
cacheKey . localeCompare ( key , undefined , {
2019-10-30 18:48:49 +00:00
sensitivity : "accent"
} ) === 0
) ;
}
2020-05-14 22:27:38 +01:00
export function setCacheState ( state : string ) : void {
core . saveState ( State . CacheResult , state ) ;
2019-11-12 21:48:02 +00:00
}
export function setCacheHitOutput ( isCacheHit : boolean ) : void {
core . setOutput ( Outputs . CacheHit , isCacheHit . toString ( ) ) ;
}
2020-05-14 22:27:38 +01:00
export function setOutputAndState ( key : string , cacheKey? : string ) : void {
setCacheHitOutput ( isExactKeyMatch ( key , cacheKey ) ) ;
2019-10-30 18:48:49 +00:00
// Store the cache result if it exists
2020-05-14 22:27:38 +01:00
cacheKey && setCacheState ( cacheKey ) ;
2019-10-30 18:48:49 +00:00
}
2020-05-14 22:27:38 +01:00
export function getCacheState ( ) : string | undefined {
const cacheKey = core . getState ( State . CacheResult ) ;
if ( cacheKey ) {
core . debug ( ` Cache state/key: ${ cacheKey } ` ) ;
return cacheKey ;
2019-11-13 21:13:00 +00:00
}
return undefined ;
2019-10-30 18:48:49 +00:00
}
2019-11-21 19:37:54 +00:00
export function logWarning ( message : string ) : void {
const warningPrefix = "[warning]" ;
core . info ( ` ${ warningPrefix } ${ message } ` ) ;
}
2020-04-17 20:46:46 +01:00
// Cache token authorized for all events that are tied to a ref
2019-11-13 15:54:39 +00: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 18:44:37 +01:00
return RefKey in process . env && Boolean ( process . env [ RefKey ] ) ;
2019-11-13 15:54:39 +00:00
}