mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 15:06:27 +00:00
100 lines
3 KiB
TypeScript
100 lines
3 KiB
TypeScript
import is from '@sindresorhus/is';
|
|
import minimatch from 'minimatch';
|
|
import type { AllConfig } from '../../config/types';
|
|
import { logger } from '../../logger';
|
|
import { platform } from '../../modules/platform';
|
|
import { configRegexPredicate, isConfigRegex } from '../../util/regex';
|
|
|
|
// istanbul ignore next
|
|
function repoName(value: string | { repository: string }): string {
|
|
return String(is.string(value) ? value : value.repository).toLowerCase();
|
|
}
|
|
|
|
export async function autodiscoverRepositories(
|
|
config: AllConfig
|
|
): Promise<AllConfig> {
|
|
if (!config.autodiscover) {
|
|
if (!config.repositories?.length) {
|
|
logger.warn(
|
|
'No repositories found - did you want to run with flag --autodiscover?'
|
|
);
|
|
}
|
|
return config;
|
|
}
|
|
// Autodiscover list of repositories
|
|
let discovered = await platform.getRepos();
|
|
if (!discovered?.length) {
|
|
// Soft fail (no error thrown) if no accessible repositories
|
|
logger.debug(
|
|
'The account associated with your token does not have access to any repos'
|
|
);
|
|
return config;
|
|
}
|
|
|
|
if (config.autodiscoverFilter) {
|
|
discovered = applyFilters(
|
|
discovered,
|
|
is.string(config.autodiscoverFilter)
|
|
? [config.autodiscoverFilter]
|
|
: config.autodiscoverFilter
|
|
);
|
|
|
|
if (!discovered.length) {
|
|
// Soft fail (no error thrown) if no accessible repositories match the filter
|
|
logger.debug('None of the discovered repositories matched the filter');
|
|
return config;
|
|
}
|
|
}
|
|
|
|
logger.info(
|
|
{ length: discovered.length, repositories: discovered },
|
|
`Autodiscovered repositories`
|
|
);
|
|
|
|
// istanbul ignore if
|
|
if (config.repositories?.length) {
|
|
logger.debug(
|
|
'Checking autodiscovered repositories against configured repositories'
|
|
);
|
|
for (const configuredRepo of config.repositories) {
|
|
const repository = repoName(configuredRepo);
|
|
let found = false;
|
|
for (let i = discovered.length - 1; i > -1; i -= 1) {
|
|
if (repository === repoName(discovered[i])) {
|
|
found = true;
|
|
logger.debug({ repository }, 'Using configured repository settings');
|
|
// TODO: fix typings
|
|
discovered[i] = configuredRepo as never;
|
|
}
|
|
}
|
|
if (!found) {
|
|
logger.warn(
|
|
{ repository },
|
|
'Configured repository is in not in autodiscover list'
|
|
);
|
|
}
|
|
}
|
|
}
|
|
return { ...config, repositories: discovered };
|
|
}
|
|
|
|
export function applyFilters(repos: string[], filters: string[]): string[] {
|
|
const matched = new Set<string>();
|
|
|
|
for (const filter of filters) {
|
|
let res: string[];
|
|
if (isConfigRegex(filter)) {
|
|
const autodiscoveryPred = configRegexPredicate(filter);
|
|
if (!autodiscoveryPred) {
|
|
throw new Error(`Failed to parse regex pattern "${filter}"`);
|
|
}
|
|
res = repos.filter(autodiscoveryPred);
|
|
} else {
|
|
res = repos.filter(minimatch.filter(filter));
|
|
}
|
|
for (const repository of res) {
|
|
matched.add(repository);
|
|
}
|
|
}
|
|
return [...matched];
|
|
}
|