mirror of https://github.com/renovatebot/renovate
155 lines
4.4 KiB
TypeScript
155 lines
4.4 KiB
TypeScript
import is from '@sindresorhus/is';
|
|
import { logger } from '../../../logger';
|
|
import { coerceArray } from '../../../util/array';
|
|
import { regEx } from '../../../util/regex';
|
|
import { parseYaml } from '../../../util/yaml';
|
|
import { DockerDatasource } from '../../datasource/docker';
|
|
import { HelmDatasource } from '../../datasource/helm';
|
|
import { isOCIRegistry } from '../helmv3/oci';
|
|
import type {
|
|
ExtractConfig,
|
|
PackageDependency,
|
|
PackageFileContent,
|
|
} from '../types';
|
|
import type { Doc, HelmRepository } from './schema';
|
|
import { Doc as documentSchema } from './schema';
|
|
import {
|
|
kustomizationsKeysUsed,
|
|
localChartHasKustomizationsYaml,
|
|
} from './utils';
|
|
|
|
const isValidChartName = (name: string | undefined): boolean =>
|
|
!!name && !regEx(/[!@#$%^&*(),.?":{}/|<>A-Z]/).test(name);
|
|
|
|
function isLocalPath(possiblePath: string): boolean {
|
|
return ['./', '../', '/'].some((localPrefix) =>
|
|
possiblePath.startsWith(localPrefix),
|
|
);
|
|
}
|
|
|
|
export async function extractPackageFile(
|
|
content: string,
|
|
packageFile: string,
|
|
config: ExtractConfig,
|
|
): Promise<PackageFileContent | null> {
|
|
const deps: PackageDependency[] = [];
|
|
let docs: Doc[];
|
|
let registryData: Record<string, HelmRepository> = {};
|
|
// Record kustomization usage for all deps, since updating artifacts is run on the helmfile.yaml as a whole.
|
|
let needKustomize = false;
|
|
try {
|
|
docs = parseYaml(content, {
|
|
customSchema: documentSchema,
|
|
failureBehaviour: 'filter',
|
|
removeTemplates: true,
|
|
json: true,
|
|
});
|
|
} catch (err) {
|
|
logger.debug(
|
|
{ err, packageFile },
|
|
'Failed to parse helmfile helmfile.yaml',
|
|
);
|
|
return null;
|
|
}
|
|
|
|
for (const doc of docs) {
|
|
// Always check for repositories in the current document and override the existing ones if any (as YAML does)
|
|
if (doc.repositories) {
|
|
registryData = {};
|
|
for (let i = 0; i < doc.repositories.length; i += 1) {
|
|
registryData[doc.repositories[i].name] = doc.repositories[i];
|
|
}
|
|
logger.debug(
|
|
{ registryAliases: registryData, packageFile },
|
|
`repositories discovered.`,
|
|
);
|
|
}
|
|
|
|
for (const dep of coerceArray(doc.releases)) {
|
|
let depName = dep.chart;
|
|
let repoName: string | null = null;
|
|
|
|
// If it starts with ./ ../ or / then it's a local path
|
|
if (isLocalPath(dep.chart)) {
|
|
if (
|
|
kustomizationsKeysUsed(dep) ||
|
|
(await localChartHasKustomizationsYaml(dep, packageFile))
|
|
) {
|
|
needKustomize = true;
|
|
}
|
|
deps.push({
|
|
depName: dep.name,
|
|
skipReason: 'local-chart',
|
|
});
|
|
continue;
|
|
}
|
|
|
|
if (isOCIRegistry(dep.chart)) {
|
|
const v = dep.chart.substring(6).split('/');
|
|
depName = v.pop()!;
|
|
repoName = v.join('/');
|
|
} else if (dep.chart.includes('/')) {
|
|
const v = dep.chart.split('/');
|
|
repoName = v.shift()!;
|
|
depName = v.join('/');
|
|
} else {
|
|
repoName = dep.chart;
|
|
}
|
|
|
|
if (!is.string(dep.version)) {
|
|
deps.push({
|
|
depName,
|
|
skipReason: 'invalid-version',
|
|
});
|
|
continue;
|
|
}
|
|
|
|
const res: PackageDependency = {
|
|
depName,
|
|
currentValue: dep.version,
|
|
registryUrls: [registryData[repoName]?.url]
|
|
.concat([config.registryAliases?.[repoName]] as string[])
|
|
.filter(is.string),
|
|
};
|
|
if (kustomizationsKeysUsed(dep)) {
|
|
needKustomize = true;
|
|
}
|
|
|
|
if (isOCIRegistry(dep.chart)) {
|
|
res.datasource = DockerDatasource.id;
|
|
res.packageName = `${repoName}/${depName}`;
|
|
} else if (registryData[repoName]?.oci) {
|
|
res.datasource = DockerDatasource.id;
|
|
const alias = registryData[repoName]?.url;
|
|
if (alias) {
|
|
res.packageName = `${alias}/${depName}`;
|
|
}
|
|
}
|
|
|
|
// By definition on helm the chart name should be lowercase letter + number + -
|
|
// However helmfile support templating of that field
|
|
if (!isValidChartName(res.depName)) {
|
|
res.skipReason = 'unsupported-chart-type';
|
|
}
|
|
|
|
// Skip in case we cannot locate the registry
|
|
if (
|
|
res.datasource !== DockerDatasource.id &&
|
|
is.emptyArray(res.registryUrls)
|
|
) {
|
|
res.skipReason = 'unknown-registry';
|
|
}
|
|
|
|
deps.push(res);
|
|
}
|
|
}
|
|
|
|
return deps.length
|
|
? {
|
|
deps,
|
|
datasource: HelmDatasource.id,
|
|
...(needKustomize && { managerData: { needKustomize } }),
|
|
}
|
|
: null;
|
|
}
|