mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 02:00:12 +08:00
74 lines
3.7 KiB
JavaScript
74 lines
3.7 KiB
JavaScript
"use strict";
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getDownloadSpecification = void 0;
|
|
const path = __importStar(require("path"));
|
|
/**
|
|
* Creates a specification for a set of files that will be downloaded
|
|
* @param artifactName the name of the artifact
|
|
* @param artifactEntries a set of container entries that describe that files that make up an artifact
|
|
* @param downloadPath the path where the artifact will be downloaded to
|
|
* @param includeRootDirectory specifies if there should be an extra directory (denoted by the artifact name) where the artifact files should be downloaded to
|
|
*/
|
|
function getDownloadSpecification(artifactName, artifactEntries, downloadPath, includeRootDirectory) {
|
|
// use a set for the directory paths so that there are no duplicates
|
|
const directories = new Set();
|
|
const specifications = {
|
|
rootDownloadLocation: includeRootDirectory
|
|
? path.join(downloadPath, artifactName)
|
|
: downloadPath,
|
|
directoryStructure: [],
|
|
emptyFilesToCreate: [],
|
|
filesToDownload: []
|
|
};
|
|
for (const entry of artifactEntries) {
|
|
// Ignore artifacts in the container that don't begin with the same name
|
|
if (entry.path.startsWith(`${artifactName}/`) ||
|
|
entry.path.startsWith(`${artifactName}\\`)) {
|
|
// normalize all separators to the local OS
|
|
const normalizedPathEntry = path.normalize(entry.path);
|
|
// entry.path always starts with the artifact name, if includeRootDirectory is false, remove the name from the beginning of the path
|
|
const filePath = path.join(downloadPath, includeRootDirectory
|
|
? normalizedPathEntry
|
|
: normalizedPathEntry.replace(artifactName, ''));
|
|
// Case insensitive folder structure maintained in the backend, not every folder is created so the 'folder'
|
|
// itemType cannot be relied upon. The file must be used to determine the directory structure
|
|
if (entry.itemType === 'file') {
|
|
// Get the directories that we need to create from the filePath for each individual file
|
|
directories.add(path.dirname(filePath));
|
|
if (entry.fileLength === 0) {
|
|
// An empty file was uploaded, create the empty files locally so that no extra http calls are made
|
|
specifications.emptyFilesToCreate.push(filePath);
|
|
}
|
|
else {
|
|
specifications.filesToDownload.push({
|
|
sourceLocation: entry.contentLocation,
|
|
targetPath: filePath
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
specifications.directoryStructure = Array.from(directories);
|
|
return specifications;
|
|
}
|
|
exports.getDownloadSpecification = getDownloadSpecification;
|
|
//# sourceMappingURL=download-specification.js.map
|