mirror of https://github.com/renovatebot/renovate
75 lines
2.1 KiB
TypeScript
75 lines
2.1 KiB
TypeScript
import { logger } from '../../../logger';
|
|
import { regEx } from '../../../util/regex';
|
|
import { parseUrl } from '../../../util/url';
|
|
import { api as versioning } from '../../versioning/nuget';
|
|
import type { ParsedRegistryUrl } from './types';
|
|
|
|
const buildMetaRe = regEx(/\+.+$/g);
|
|
|
|
export function removeBuildMeta(version: string): string {
|
|
return version.replace(buildMetaRe, '');
|
|
}
|
|
|
|
const urlWhitespaceRe = regEx(/\s/g);
|
|
|
|
export function massageUrl(url: string | null | undefined): string | null {
|
|
if (url === null || url === undefined) {
|
|
return null;
|
|
}
|
|
|
|
let resultUrl = url;
|
|
|
|
// During `dotnet pack` certain URLs are being URL decoded which may introduce whitespace
|
|
// and causes Markdown link generation problems.
|
|
resultUrl = resultUrl.replace(urlWhitespaceRe, '%20');
|
|
|
|
return resultUrl;
|
|
}
|
|
|
|
const protocolVersionRegExp = regEx(/#protocolVersion=(?<protocol>2|3)/);
|
|
|
|
export function parseRegistryUrl(registryUrl: string): ParsedRegistryUrl {
|
|
const parsedUrl = parseUrl(registryUrl);
|
|
if (!parsedUrl) {
|
|
logger.debug(
|
|
{ urL: registryUrl },
|
|
`nuget registry failure: can't parse ${registryUrl}`,
|
|
);
|
|
return { feedUrl: registryUrl, protocolVersion: null };
|
|
}
|
|
let protocolVersion = 2;
|
|
const protocolVersionMatch = protocolVersionRegExp.exec(
|
|
parsedUrl.hash,
|
|
)?.groups;
|
|
if (protocolVersionMatch) {
|
|
const { protocol } = protocolVersionMatch;
|
|
parsedUrl.hash = '';
|
|
protocolVersion = Number.parseInt(protocol, 10);
|
|
} else if (parsedUrl.pathname.endsWith('.json')) {
|
|
protocolVersion = 3;
|
|
}
|
|
|
|
const feedUrl = parsedUrl.href;
|
|
return { feedUrl, protocolVersion };
|
|
}
|
|
|
|
/**
|
|
* Compare two versions. Return:
|
|
* - `1` if `a > b` or `b` is invalid
|
|
* - `-1` if `a < b` or `a` is invalid
|
|
* - `0` if `a == b` or both `a` and `b` are invalid
|
|
*/
|
|
export function sortNugetVersions(a: string, b: string): number {
|
|
if (versioning.isValid(a)) {
|
|
if (versioning.isValid(b)) {
|
|
return versioning.sortVersions(a, b);
|
|
} else {
|
|
return 1;
|
|
}
|
|
} else if (versioning.isValid(b)) {
|
|
return -1;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|