import { execaCommand } from 'execa' import { Challenge } from './Challenge.js' import { Solution } from './Solution.js' const solutionsRegex = /challenges\/[\S\s]*\/solutions\/(c|cpp|cs|dart|java|javascript|python|rust|typescript)\/[\S\s]*\/(.*).(c|cpp|cs|dart|java|js|py|rs|ts)/ const dockerRegex = /templates\/docker\/(c|cpp|cs|dart|java|javascript|python|rust|typescript)\/(.*)/ const inputOutputRegex = /challenges\/[\S\s]*\/test\/(.*)\/(input.txt|output.txt)/ export interface GitAffectedOptions { isContinuousIntegration: boolean base?: string } export class GitAffected implements GitAffectedOptions { public isContinuousIntegration: boolean public base?: string constructor(options: GitAffectedOptions) { this.isContinuousIntegration = options.isContinuousIntegration this.base = options.base } public parseGitOutput(output: string): string[] { return output .split('\n') .map((line) => line.trim()) .filter((line) => line.length > 0) } public async getFilesUsingBaseAndHead( base: string, head: string ): Promise { try { const { stdout } = await execaCommand( `git diff --name-only --relative ${base} ${head}` ) return this.parseGitOutput(stdout) } catch { return [] } } public async getUncommittedFiles(): Promise { return await this.getFilesUsingBaseAndHead('HEAD', '.') } public async getLatestPushedCommit(): Promise { const latestCommit = this.isContinuousIntegration || this.base != null ? '~1' : '' const { stdout } = await execaCommand( `git rev-parse origin/master${latestCommit}` ) return stdout } public async getUnpushedFiles(): Promise { return await this.getFilesUsingBaseAndHead( await this.getLatestPushedCommit(), '.' ) } public async getAffectedSolutionsFromFiles( files: string[] ): Promise { const affectedSolutionsPaths = files.filter((filePath) => { return solutionsRegex.test(filePath) }) const affectedDockerPaths = files.filter((filePath) => { return dockerRegex.test(filePath) }) const affectedLanguages = affectedDockerPaths.map((filePath) => { const [, , programmingLanguageName] = filePath .replaceAll('\\', '/') .split('/') return programmingLanguageName }) const affectedInputOutput = files.filter((filePath) => { return inputOutputRegex.test(filePath) }) const affectedChallengesFromInputOutput = affectedInputOutput.map( (filePath) => { const [, challengeName] = filePath.replaceAll('\\', '/').split('/') return new Challenge({ name: challengeName }) } ) const solutionsChallenges = await Solution.getManyByPaths( affectedSolutionsPaths ) const solutionsDocker = await Solution.getManyByProgrammingLanguages( affectedLanguages ) const solutions: Solution[] = [...solutionsDocker, ...solutionsChallenges] for (const challenge of affectedChallengesFromInputOutput) { const solutionsByChallenge = await Solution.getManyByChallenge(challenge) solutions.push(...solutionsByChallenge) } const solutionsUnique: Solution[] = [] for (const solution of solutions) { const isAlreadyIncluded = solutionsUnique.some((solutionUnique) => { return solutionUnique.path === solution.path }) if (!isAlreadyIncluded) { solutionsUnique.push(solution) } } return solutionsUnique } public async getAffectedSolutionsFromGit(): Promise { let files = [ ...(await this.getUnpushedFiles()), ...(await this.getUncommittedFiles()) ] if (this.base != null) { files.push(...(await this.getFilesUsingBaseAndHead(this.base, '.'))) } files = Array.from(new Set(files)) return await this.getAffectedSolutionsFromFiles(files) } }