mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
136 lines
3.9 KiB
TypeScript
136 lines
3.9 KiB
TypeScript
import { logger } from '../../logger';
|
|
import { get } from '../../manager';
|
|
import { WORKER_FILE_UPDATE_FAILED } from '../../constants/error-messages';
|
|
import { matchAt, replaceAt } from '../../util/string';
|
|
import { regEx } from '../../util/regex';
|
|
|
|
export async function confirmIfDepUpdated(
|
|
upgrade,
|
|
newContent: string
|
|
): Promise<boolean> {
|
|
const {
|
|
manager,
|
|
packageFile,
|
|
newValue,
|
|
newDigest,
|
|
autoReplaceData,
|
|
} = upgrade;
|
|
const extractPackageFile = get(manager, 'extractPackageFile');
|
|
let newUpgrade;
|
|
try {
|
|
const newExtract = await extractPackageFile(
|
|
newContent,
|
|
packageFile,
|
|
upgrade
|
|
);
|
|
newUpgrade = newExtract.deps[autoReplaceData.depIndex];
|
|
} catch (err) /* istanbul ignore next */ {
|
|
logger.debug('Failed to parse newContent');
|
|
}
|
|
if (
|
|
newUpgrade &&
|
|
newUpgrade.currentValue === newValue &&
|
|
(!newUpgrade.currentDigest || newUpgrade.currentDigest === newDigest)
|
|
) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function getDepsSignature(deps): string {
|
|
return deps.map((dep) => `${dep.depName}${dep.lookupName}`).join(',');
|
|
}
|
|
|
|
export async function checkBranchDepsMatchBaseDeps(
|
|
upgrade,
|
|
branchContent
|
|
): Promise<boolean> {
|
|
const { baseDeps, manager, packageFile } = upgrade;
|
|
const extractPackageFile = get(manager, 'extractPackageFile');
|
|
try {
|
|
const { deps: branchDeps } = await extractPackageFile(
|
|
branchContent,
|
|
packageFile,
|
|
upgrade
|
|
);
|
|
return getDepsSignature(baseDeps) === getDepsSignature(branchDeps);
|
|
} catch (err) /* istanbul ignore next */ {
|
|
logger.warn('Failed to parse branchContent');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function escapeRegExp(input: string): string {
|
|
return input.replace(/[.*+\-?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string
|
|
}
|
|
|
|
export async function doAutoReplace(
|
|
upgrade,
|
|
existingContent: string,
|
|
parentBranch: string | null
|
|
): Promise<string | null> {
|
|
if (parentBranch) {
|
|
if (!(await checkBranchDepsMatchBaseDeps(upgrade, existingContent))) {
|
|
logger.debug('Rebasing branch after deps list has changed');
|
|
return null;
|
|
}
|
|
if (!(await confirmIfDepUpdated(upgrade, existingContent))) {
|
|
logger.debug('Rebasing after outdated branch dep found');
|
|
return null;
|
|
}
|
|
logger.debug('Branch dep is already updated');
|
|
return existingContent;
|
|
}
|
|
const {
|
|
depName,
|
|
currentValue,
|
|
newValue,
|
|
currentDigest,
|
|
newDigest,
|
|
autoReplaceData,
|
|
} = upgrade;
|
|
const replaceString = autoReplaceData?.replaceString || currentValue;
|
|
logger.trace({ depName, replaceString }, 'autoReplace replaceString');
|
|
let searchIndex = existingContent.indexOf(replaceString);
|
|
if (searchIndex === -1) {
|
|
logger.warn(
|
|
{ depName },
|
|
'Cannot find replaceString in current file content'
|
|
);
|
|
return existingContent;
|
|
}
|
|
try {
|
|
let newString = replaceString.replace(
|
|
regEx(escapeRegExp(currentValue), 'g'),
|
|
newValue
|
|
);
|
|
if (currentDigest && newDigest) {
|
|
newString = newString.replace(
|
|
regEx(escapeRegExp(currentDigest), 'g'),
|
|
newDigest
|
|
);
|
|
}
|
|
logger.debug(`Starting search at index ${searchIndex}`);
|
|
// Iterate through the rest of the file
|
|
for (; searchIndex < existingContent.length; searchIndex += 1) {
|
|
// First check if we have a hit for the old version
|
|
if (matchAt(existingContent, searchIndex, replaceString)) {
|
|
logger.debug(`Found match at index ${searchIndex}`);
|
|
// Now test if the result matches
|
|
const testContent = replaceAt(
|
|
existingContent,
|
|
searchIndex,
|
|
replaceString,
|
|
newString
|
|
);
|
|
if (await confirmIfDepUpdated(upgrade, testContent)) {
|
|
return testContent;
|
|
}
|
|
}
|
|
}
|
|
} catch (err) /* istanbul ignore next */ {
|
|
logger.debug({ err }, 'doAutoReplace error');
|
|
}
|
|
// istanbul ignore next
|
|
throw new Error(WORKER_FILE_UPDATE_FAILED);
|
|
}
|