mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-12 23:51:55 +00:00
76 lines
1.7 KiB
TypeScript
76 lines
1.7 KiB
TypeScript
import { newlineRegex } from '../../../util/regex';
|
|
import type { PackageDependency, PackageFileContent } from '../types';
|
|
import {
|
|
endBlockRegex,
|
|
excludeBlockStartRegex,
|
|
parseLine,
|
|
} from './line-parser';
|
|
|
|
function findMatchingModule(
|
|
tool: PackageDependency,
|
|
deps: PackageDependency[],
|
|
): PackageDependency | undefined {
|
|
let bestMatch: PackageDependency | undefined;
|
|
const normalizedTool = tool.depName! + '/';
|
|
|
|
// Find the longest matching prefix for the tool within the dependencies
|
|
for (const dep of deps) {
|
|
if (
|
|
normalizedTool.startsWith(dep.depName! + '/') &&
|
|
dep.depName!.length > (bestMatch?.depName!.length ?? 0)
|
|
) {
|
|
bestMatch = dep;
|
|
}
|
|
}
|
|
|
|
return bestMatch;
|
|
}
|
|
|
|
export function extractPackageFile(content: string): PackageFileContent | null {
|
|
const deps: PackageDependency[] = [];
|
|
const tools: PackageDependency[] = [];
|
|
let inExcludeBlock = false;
|
|
|
|
const lines = content.split(newlineRegex);
|
|
for (let lineNumber = 0; lineNumber < lines.length; lineNumber += 1) {
|
|
const line = lines[lineNumber];
|
|
const dep = parseLine(line);
|
|
|
|
if (inExcludeBlock) {
|
|
if (endBlockRegex.test(line)) {
|
|
inExcludeBlock = false;
|
|
}
|
|
continue;
|
|
}
|
|
|
|
if (!dep) {
|
|
if (excludeBlockStartRegex.test(line)) {
|
|
inExcludeBlock = true;
|
|
}
|
|
continue;
|
|
}
|
|
|
|
if (dep.depType === 'tool') {
|
|
tools.push(dep);
|
|
continue;
|
|
}
|
|
|
|
dep.managerData ??= {};
|
|
dep.managerData.lineNumber = lineNumber;
|
|
|
|
deps.push(dep);
|
|
}
|
|
|
|
for (const tool of tools) {
|
|
const match = findMatchingModule(tool, deps);
|
|
if (match?.depType === 'indirect') {
|
|
delete match.enabled;
|
|
}
|
|
}
|
|
|
|
if (!deps.length) {
|
|
return null;
|
|
}
|
|
|
|
return { deps };
|
|
}
|