mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 08:36:26 +00:00
40a59cc9e0
Co-authored-by: Rhys Arkins <rhys@arkins.net>
70 lines
2.1 KiB
TypeScript
70 lines
2.1 KiB
TypeScript
import is from '@sindresorhus/is';
|
|
import { TEMPORARY_ERROR } from '../../constants/error-messages';
|
|
import { logger } from '../../logger';
|
|
import { ExecOptions, exec } from '../../util/exec';
|
|
import { readLocalFile } from '../../util/fs';
|
|
import type { UpdateArtifact, UpdateArtifactsResult } from '../types';
|
|
|
|
export async function updateArtifacts({
|
|
packageFileName,
|
|
updatedDeps,
|
|
newPackageFileContent,
|
|
config,
|
|
}: UpdateArtifact): Promise<UpdateArtifactsResult[] | null> {
|
|
logger.debug(`pip_requirements.updateArtifacts(${packageFileName})`);
|
|
if (!is.nonEmptyArray(updatedDeps)) {
|
|
logger.debug('No updated pip_requirements deps - returning null');
|
|
return null;
|
|
}
|
|
try {
|
|
const cmd: string[] = [];
|
|
const rewrittenContent = newPackageFileContent.replace(/\\\n/g, '');
|
|
const lines = rewrittenContent.split('\n').map((line) => line.trim());
|
|
for (const dep of updatedDeps) {
|
|
const hashLine = lines.find(
|
|
(line) => line.startsWith(`${dep}==`) && line.includes('--hash=')
|
|
);
|
|
if (hashLine) {
|
|
const depConstraint = hashLine.split(' ')[0];
|
|
cmd.push(`hashin ${depConstraint} -r ${packageFileName}`);
|
|
}
|
|
}
|
|
const execOptions: ExecOptions = {
|
|
cwdFile: '.',
|
|
docker: {
|
|
image: 'python',
|
|
tagScheme: 'pip_requirements',
|
|
preCommands: ['pip install hashin'],
|
|
},
|
|
};
|
|
await exec(cmd, execOptions);
|
|
const newContent = await readLocalFile(packageFileName, 'utf8');
|
|
if (newContent === newPackageFileContent) {
|
|
logger.debug(`${packageFileName} is unchanged`);
|
|
return null;
|
|
}
|
|
logger.debug(`Returning updated ${packageFileName}`);
|
|
return [
|
|
{
|
|
file: {
|
|
name: packageFileName,
|
|
contents: newContent,
|
|
},
|
|
},
|
|
];
|
|
} catch (err) {
|
|
// istanbul ignore if
|
|
if (err.message === TEMPORARY_ERROR) {
|
|
throw err;
|
|
}
|
|
logger.debug({ err }, `Failed to update ${packageFileName} file`);
|
|
return [
|
|
{
|
|
artifactError: {
|
|
lockFile: packageFileName,
|
|
stderr: `${String(err.stdout)}\n${String(err.stderr)}`,
|
|
},
|
|
},
|
|
];
|
|
}
|
|
}
|