mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 00:56:26 +00:00
84 lines
2.7 KiB
TypeScript
84 lines
2.7 KiB
TypeScript
import URL from 'url';
|
|
import addrs from 'email-addresses';
|
|
import * as hostRules from '../util/host-rules';
|
|
import { logger } from '../logger';
|
|
import { Platform } from './common';
|
|
import { RenovateConfig } from '../config/common';
|
|
import { getOptions } from '../config/definitions';
|
|
|
|
export * from './common';
|
|
|
|
const supportedPlatforms = getOptions().find(
|
|
option => option.name === 'platform'
|
|
).allowedValues;
|
|
|
|
let _platform: Platform;
|
|
|
|
const handler: ProxyHandler<Platform> = {
|
|
get(_target: Platform, prop: keyof Platform) {
|
|
if (!_platform) throw new Error(`platform-not-found`);
|
|
|
|
// TODO: add more validation
|
|
|
|
return _platform[prop];
|
|
},
|
|
};
|
|
|
|
export const platform = new Proxy<Platform>({} as any, handler);
|
|
|
|
export async function setPlatformApi(name: string): Promise<void> {
|
|
if (!supportedPlatforms.includes(name))
|
|
throw new Error(
|
|
`Init: Platform "${name}" not found. Must be one of: ${supportedPlatforms.join(
|
|
', '
|
|
)}`
|
|
);
|
|
_platform = await import('./' + name);
|
|
}
|
|
|
|
export async function initPlatform(config: RenovateConfig) {
|
|
await setPlatformApi(config.platform);
|
|
// TODO: types
|
|
const platformInfo = await platform.initPlatform(config);
|
|
const returnConfig: any = { ...config, ...platformInfo };
|
|
let gitAuthor: string;
|
|
if (config && config.gitAuthor) {
|
|
logger.info(`Using configured gitAuthor (${config.gitAuthor})`);
|
|
gitAuthor = config.gitAuthor;
|
|
} else if (!(platformInfo && platformInfo.gitAuthor)) {
|
|
logger.info('Using default gitAuthor: Renovate Bot <bot@renovateapp.com>');
|
|
gitAuthor = 'Renovate Bot <bot@renovateapp.com>';
|
|
} /* istanbul ignore next */ else {
|
|
logger.info('Using platform gitAuthor: ' + platformInfo.gitAuthor);
|
|
gitAuthor = platformInfo.gitAuthor;
|
|
}
|
|
let gitAuthorParsed: addrs.ParsedMailbox | null = null;
|
|
try {
|
|
gitAuthorParsed = addrs.parseOneAddress(gitAuthor) as addrs.ParsedMailbox;
|
|
} catch (err) /* istanbul ignore next */ {
|
|
logger.debug({ gitAuthor, err }, 'Error parsing gitAuthor');
|
|
}
|
|
// istanbul ignore if
|
|
if (!gitAuthorParsed) {
|
|
throw new Error('Init: gitAuthor is not parsed as valid RFC5322 format');
|
|
}
|
|
global.gitAuthor = {
|
|
name: gitAuthorParsed.name,
|
|
email: gitAuthorParsed.address,
|
|
};
|
|
// TODO: types
|
|
const platformRule: any = {
|
|
hostType: returnConfig.platform,
|
|
hostName: URL.parse(returnConfig.endpoint).hostname,
|
|
};
|
|
['token', 'username', 'password'].forEach(field => {
|
|
if (config[field]) {
|
|
platformRule[field] = config[field];
|
|
delete returnConfig[field];
|
|
}
|
|
});
|
|
returnConfig.hostRules = returnConfig.hostRules || [];
|
|
returnConfig.hostRules.push(platformRule);
|
|
hostRules.add(platformRule);
|
|
return returnConfig;
|
|
}
|