mirror of
https://github.com/github/codeql-action.git
synced 2025-12-17 21:09:40 +08:00
136 lines
4.7 KiB
JavaScript
Generated
136 lines
4.7 KiB
JavaScript
Generated
"use strict";
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
result["default"] = mod;
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const core = __importStar(require("@actions/core"));
|
|
const io = __importStar(require("@actions/io"));
|
|
const fs = __importStar(require("fs"));
|
|
const yaml = __importStar(require("js-yaml"));
|
|
const path = __importStar(require("path"));
|
|
class ExternalQuery {
|
|
constructor(repository, ref) {
|
|
this.path = '';
|
|
this.repository = repository;
|
|
this.ref = ref;
|
|
}
|
|
}
|
|
exports.ExternalQuery = ExternalQuery;
|
|
class Config {
|
|
constructor() {
|
|
this.name = "";
|
|
this.disableDefaultQueries = false;
|
|
this.additionalQueries = [];
|
|
this.externalQueries = [];
|
|
this.pathsIgnore = [];
|
|
this.paths = [];
|
|
}
|
|
addQuery(queryUses) {
|
|
// The logic for parsing the string is based on what actions does for
|
|
// parsing the 'uses' actions in the workflow file
|
|
if (queryUses === "") {
|
|
throw '"uses" value for queries cannot be blank';
|
|
}
|
|
if (queryUses.startsWith("./")) {
|
|
this.additionalQueries.push(queryUses.slice(2));
|
|
return;
|
|
}
|
|
let tok = queryUses.split('@');
|
|
if (tok.length !== 2) {
|
|
throw '"uses" value for queries must be a path, or owner/repo@ref \n Found: ' + queryUses;
|
|
}
|
|
const ref = tok[1];
|
|
tok = tok[0].split('/');
|
|
// The first token is the owner
|
|
// The second token is the repo
|
|
// The rest is a path, if there is more than one token combine them to form the full path
|
|
if (tok.length > 3) {
|
|
tok = [tok[0], tok[1], tok.slice(2).join('/')];
|
|
}
|
|
if (tok.length < 2) {
|
|
throw '"uses" value for queries must be a path, or owner/repo@ref \n Found: ' + queryUses;
|
|
}
|
|
let external = new ExternalQuery(tok[0] + '/' + tok[1], ref);
|
|
if (tok.length === 3) {
|
|
external.path = tok[2];
|
|
}
|
|
this.externalQueries.push(external);
|
|
}
|
|
}
|
|
exports.Config = Config;
|
|
const configFolder = process.env['RUNNER_WORKSPACE'] || '/tmp/codeql-action';
|
|
function initConfig() {
|
|
const configFile = core.getInput('config-file');
|
|
const config = new Config();
|
|
// If no config file was provided create an empty one
|
|
if (configFile === '') {
|
|
core.debug('No configuration file was provided');
|
|
return config;
|
|
}
|
|
try {
|
|
const parsedYAML = yaml.safeLoad(fs.readFileSync(configFile, 'utf8'));
|
|
if (parsedYAML.name && typeof parsedYAML.name === "string") {
|
|
config.name = parsedYAML.name;
|
|
}
|
|
if (parsedYAML['disable-default-queries'] && typeof parsedYAML['disable-default-queries'] === "boolean") {
|
|
config.disableDefaultQueries = parsedYAML['disable-default-queries'];
|
|
}
|
|
const queries = parsedYAML.queries;
|
|
if (queries && queries instanceof Array) {
|
|
queries.forEach(query => {
|
|
if (query.uses && typeof query.uses === "string") {
|
|
config.addQuery(query.uses);
|
|
}
|
|
});
|
|
}
|
|
const pathsIgnore = parsedYAML['paths-ignore'];
|
|
if (pathsIgnore && pathsIgnore instanceof Array) {
|
|
pathsIgnore.forEach(path => {
|
|
if (typeof path === "string") {
|
|
config.pathsIgnore.push(path);
|
|
}
|
|
});
|
|
}
|
|
const paths = parsedYAML.paths;
|
|
if (paths && paths instanceof Array) {
|
|
paths.forEach(path => {
|
|
if (typeof path === "string") {
|
|
config.paths.push(path);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
catch (err) {
|
|
core.setFailed(err);
|
|
}
|
|
return config;
|
|
}
|
|
async function saveConfig(config) {
|
|
const configString = JSON.stringify(config);
|
|
await io.mkdirP(configFolder);
|
|
fs.writeFileSync(path.join(configFolder, 'config'), configString, 'utf8');
|
|
core.debug('Saved config:');
|
|
core.debug(configString);
|
|
}
|
|
async function loadConfig() {
|
|
const configFile = path.join(configFolder, 'config');
|
|
if (fs.existsSync(configFile)) {
|
|
const configString = fs.readFileSync(configFile, 'utf8');
|
|
core.debug('Loaded config:');
|
|
core.debug(configString);
|
|
return JSON.parse(configString);
|
|
}
|
|
else {
|
|
const config = initConfig();
|
|
core.debug('Initialized config:');
|
|
core.debug(JSON.stringify(config));
|
|
await saveConfig(config);
|
|
return config;
|
|
}
|
|
}
|
|
exports.loadConfig = loadConfig;
|