@atomist/org-visualizer
Version:
Organization Visualizer using Atomist project scanning
70 lines • 2.83 kB
JavaScript
;
/*
* Copyright © 2019 Atomist, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const sdm_pack_fingerprints_1 = require("@atomist/sdm-pack-fingerprints");
exports.NoLicense = "None";
const LicenseType = "license";
/**
* License aspect. Every repository gets a license fingerprint, which may have unknown
* as a license.
*/
exports.License = {
name: LicenseType,
displayName: "License",
extract: (p) => __awaiter(this, void 0, void 0, function* () {
const licenseFile = yield firstFileFound(p, "LICENSE", "LICENSE.txt", "license.txt");
let classification = exports.NoLicense;
let content;
if (!!licenseFile) {
content = yield licenseFile.getContent();
classification = content.trim().split("\n")[0].trim();
}
const data = { classification, content, path: licenseFile ? licenseFile.path : undefined };
return {
type: LicenseType,
name: LicenseType,
data,
sha: sdm_pack_fingerprints_1.sha256(JSON.stringify(data)),
};
}),
toDisplayableFingerprintName: () => "License",
toDisplayableFingerprint: fp => {
return fp.data.classification === exports.NoLicense ?
"None" :
`${fp.data.path}:${fp.data.classification}`;
},
};
function firstFileFound(p, ...paths) {
return __awaiter(this, void 0, void 0, function* () {
for (const path of paths) {
const f = yield p.getFile(path);
if (f) {
return f;
}
}
return undefined;
});
}
//# sourceMappingURL=license.js.map