renovate/lib/modules/manager/poetry/artifacts.ts
Michael Kriese 0a582d31c7
refactor: fix nullable types (#16156)
* refactor: fix nullable types

* chore: revert changes

* chore: fix lint comments

* chore: revert changes
2022-06-20 16:15:40 +00:00

228 lines
6.9 KiB
TypeScript

import { parse } from '@iarna/toml';
import is from '@sindresorhus/is';
import { quote } from 'shlex';
import { TEMPORARY_ERROR } from '../../../constants/error-messages';
import { logger } from '../../../logger';
import type { HostRule } from '../../../types';
import { exec } from '../../../util/exec';
import type { ExecOptions, ToolConstraint } from '../../../util/exec/types';
import {
deleteLocalFile,
getSiblingFileName,
readLocalFile,
writeLocalFile,
} from '../../../util/fs';
import { find } from '../../../util/host-rules';
import { regEx } from '../../../util/regex';
import { PypiDatasource } from '../../datasource/pypi';
import { dependencyPattern } from '../pip_requirements/extract';
import type {
UpdateArtifact,
UpdateArtifactsConfig,
UpdateArtifactsResult,
} from '../types';
import type { PoetryFile, PoetryLock, PoetrySource } from './types';
function getPythonConstraint(
existingLockFileContent: string,
config: UpdateArtifactsConfig
): string | undefined | null {
const { constraints = {} } = config;
const { python } = constraints;
if (python) {
logger.debug('Using python constraint from config');
return python;
}
try {
const data = parse(existingLockFileContent) as PoetryLock;
if (is.string(data?.metadata?.['python-versions'])) {
return data?.metadata?.['python-versions'];
}
} catch (err) {
// Do nothing
}
return undefined;
}
const pkgValRegex = regEx(`^${dependencyPattern}$`);
function getPoetryRequirement(pyProjectContent: string): string | null {
try {
const pyproject: PoetryFile = parse(pyProjectContent);
// https://python-poetry.org/docs/pyproject/#poetry-and-pep-517
const buildBackend = pyproject['build-system']?.['build-backend'];
if (
(buildBackend === 'poetry.masonry.api' ||
buildBackend === 'poetry.core.masonry.api') &&
is.nonEmptyArray(pyproject['build-system']?.requires)
) {
for (const requirement of pyproject['build-system']!.requires) {
if (is.nonEmptyString(requirement)) {
const pkgValMatch = pkgValRegex.exec(requirement);
if (pkgValMatch) {
const [, depName, , currVal] = pkgValMatch;
if (
(depName === 'poetry' || depName === 'poetry_core') &&
currVal
) {
return currVal.trim();
}
}
}
}
}
} catch (err) {
logger.debug({ err }, 'Error parsing pyproject.toml file');
}
return null;
}
function getPoetrySources(content: string, fileName: string): PoetrySource[] {
let pyprojectFile: PoetryFile;
try {
pyprojectFile = parse(content);
} catch (err) {
logger.debug({ err }, 'Error parsing pyproject.toml file');
return [];
}
if (!pyprojectFile.tool?.poetry) {
logger.debug(`{$fileName} contains no poetry section`);
return [];
}
const sources = pyprojectFile.tool?.poetry?.source ?? [];
const sourceArray: PoetrySource[] = [];
for (const source of sources) {
if (source.name && source.url) {
sourceArray.push({ name: source.name, url: source.url });
}
}
return sourceArray;
}
function getMatchingHostRule(source: PoetrySource): HostRule {
const scopedMatch = find({ hostType: PypiDatasource.id, url: source.url });
return is.nonEmptyObject(scopedMatch)
? scopedMatch
: find({ url: source.url });
}
function getSourceCredentialVars(
pyprojectContent: string,
packageFileName: string
): Record<string, string> {
const poetrySources = getPoetrySources(pyprojectContent, packageFileName);
const envVars: Record<string, string> = {};
for (const source of poetrySources) {
const matchingHostRule = getMatchingHostRule(source);
const formattedSourceName = source.name
.replace(regEx(/(\.|-)+/g), '_')
.toUpperCase();
if (matchingHostRule.username) {
envVars[`POETRY_HTTP_BASIC_${formattedSourceName}_USERNAME`] =
matchingHostRule.username;
}
if (matchingHostRule.password) {
envVars[`POETRY_HTTP_BASIC_${formattedSourceName}_PASSWORD`] =
matchingHostRule.password;
}
}
return envVars;
}
export async function updateArtifacts({
packageFileName,
updatedDeps,
newPackageFileContent,
config,
}: UpdateArtifact): Promise<UpdateArtifactsResult[] | null> {
logger.debug(`poetry.updateArtifacts(${packageFileName})`);
const isLockFileMaintenance = config.updateType === 'lockFileMaintenance';
if (!is.nonEmptyArray(updatedDeps) && !isLockFileMaintenance) {
logger.debug('No updated poetry deps - returning null');
return null;
}
// Try poetry.lock first
let lockFileName = getSiblingFileName(packageFileName, 'poetry.lock');
let existingLockFileContent = await readLocalFile(lockFileName, 'utf8');
if (!existingLockFileContent) {
// Try pyproject.lock next
lockFileName = getSiblingFileName(packageFileName, 'pyproject.lock');
existingLockFileContent = await readLocalFile(lockFileName, 'utf8');
if (!existingLockFileContent) {
logger.debug(`No lock file found`);
return null;
}
}
logger.debug(`Updating ${lockFileName}`);
try {
await writeLocalFile(packageFileName, newPackageFileContent);
const cmd: string[] = [];
if (isLockFileMaintenance) {
await deleteLocalFile(lockFileName);
cmd.push('poetry update --lock --no-interaction');
} else {
cmd.push(
`poetry update --lock --no-interaction ${updatedDeps
.map((dep) => dep.depName)
.filter(is.string)
.map((dep) => quote(dep))
.join(' ')}`
);
}
const tagConstraint = getPythonConstraint(existingLockFileContent, config);
const constraint =
config.constraints?.poetry ?? getPoetryRequirement(newPackageFileContent);
const extraEnv = getSourceCredentialVars(
newPackageFileContent,
packageFileName
);
const toolConstraint: ToolConstraint = {
toolName: 'poetry',
constraint,
};
const execOptions: ExecOptions = {
cwdFile: packageFileName,
extraEnv,
docker: {
image: 'python',
tagConstraint,
tagScheme: 'poetry',
},
toolConstraints: [toolConstraint],
};
await exec(cmd, execOptions);
const newPoetryLockContent = await readLocalFile(lockFileName, 'utf8');
if (existingLockFileContent === newPoetryLockContent) {
logger.debug(`${lockFileName} is unchanged`);
return null;
}
logger.debug(`Returning updated ${lockFileName}`);
return [
{
file: {
type: 'addition',
path: lockFileName,
contents: newPoetryLockContent,
},
},
];
} catch (err) {
// istanbul ignore if
if (err.message === TEMPORARY_ERROR) {
throw err;
}
logger.debug({ err }, `Failed to update ${lockFileName} file`);
return [
{
artifactError: {
lockFile: lockFileName,
stderr: `${String(err.stdout)}\n${String(err.stderr)}`,
},
},
];
}
}