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