import execa from 'execa' import { Challenge } from './Challenge' import { Solution } from './Solution' const solutionsRegex = new RegExp( /challenges\/[\s\S]*\/solutions\/(c|cpp|cs|dart|java|javascript|python|rust|typescript)\/[\s\S]*\/(solution|Solution).(c|cpp|cs|dart|java|js|py|rs|ts)/ ) export interface GitAffectedOptions { isContinuousIntegration: boolean } export class GitAffected implements GitAffectedOptions { public isContinuousIntegration: boolean constructor (options: GitAffectedOptions) { this.isContinuousIntegration = options.isContinuousIntegration } 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 { const { stdout } = await execa.command( `git diff --name-only --relative ${base} ${head}` ) return this.parseGitOutput(stdout) } public async getUncommittedFiles (): Promise { return await this.getFilesUsingBaseAndHead('HEAD', '.') } public async getLatestPushedCommit (): Promise { const latestCommit = this.isContinuousIntegration ? '~1' : '' const { stdout } = await execa.command(`git rev-parse origin/master${latestCommit}`) return stdout } public async getUnpushedFiles (): Promise { return await this.getFilesUsingBaseAndHead( await this.getLatestPushedCommit(), '.' ) } public async getAffectedSolutions (): Promise { const files = Array.from( new Set([ ...(await this.getUnpushedFiles()), ...(await this.getUncommittedFiles()) ]) ) const affectedSolutionsPaths = files.filter((filePath) => { return solutionsRegex.test(filePath) }) return affectedSolutionsPaths.map((solution) => { const [, challengeName, , programmingLanguageName, solutionName] = solution.split('/') return new Solution({ challenge: new Challenge({ name: challengeName }), name: solutionName, programmingLanguageName }) }) } }