@atomist/sdm-pack-aspect
Version:
an Atomist SDM Extension Pack for visualizing drift across an organization
74 lines (66 loc) • 2.19 kB
text/typescript
/*
* 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.
*/
import { Project } from "@atomist/automation-client";
import {
Aspect,
ExtractFingerprint,
fingerprintOf,
FP,
} from "@atomist/sdm-pack-fingerprint";
export interface CodeOwnershipData {
/**
* Content of the CODEOWNERS
*/
content: string;
/**
* JIRA team specified in a comment, if any
*/
jiraTeam?: string;
}
const CodeOwnershipFingerprintName = "code-ownership";
/*
* Find a code ownership file if possible
*/
export const CodeOwnershipExtractor: ExtractFingerprint<CodeOwnershipData> =
async (p: Project) => {
const codeownersFile = await p.getFile("CODEOWNERS");
if (codeownersFile) {
const content = await codeownersFile.getContent();
const jiraTeamMatch = /JiraTeam\((?<teamId>.*)\)/.exec(content);
const jiraTeam = jiraTeamMatch ? jiraTeamMatch.groups.teamId : "No Jira Team";
const data: CodeOwnershipData = {
jiraTeam,
content,
};
return fingerprintOf({
type: CodeOwnershipFingerprintName,
data,
});
}
return undefined;
};
export function codeOwnership(): Aspect<CodeOwnershipData> {
return {
displayName: "Code Ownership",
name: "codeOwnership",
baseOnly: true,
extract: CodeOwnershipExtractor,
toDisplayableFingerprint: (fp: FP) => fp.data,
apply: async (p, tsi) => {
throw new Error(`Applying code ownership is not yet supported. But it could be.`);
},
};
}