2017-03-07 11:39:37 +02:00
|
|
|
// Imports
|
2018-05-10 13:56:07 +01:00
|
|
|
import {GithubApi} from '../common/github-api';
|
|
|
|
import {GithubPullRequests} from '../common/github-pull-requests';
|
|
|
|
import {GithubTeams} from '../common/github-teams';
|
2017-03-07 11:39:37 +02:00
|
|
|
import {getEnvVar} from '../common/utils';
|
|
|
|
import {BuildVerifier} from './build-verifier';
|
|
|
|
|
|
|
|
// Run
|
|
|
|
_main();
|
|
|
|
|
|
|
|
// Functions
|
|
|
|
function _main() {
|
|
|
|
const githubToken = getEnvVar('AIO_GITHUB_TOKEN');
|
2018-05-10 13:56:07 +01:00
|
|
|
const githubOrg = getEnvVar('AIO_GITHUB_ORGANIZATION');
|
|
|
|
const githubRepo = getEnvVar('AIO_GITHUB_REPO');
|
2017-03-07 11:39:37 +02:00
|
|
|
const allowedTeamSlugs = getEnvVar('AIO_GITHUB_TEAM_SLUGS').split(',');
|
2017-06-19 01:15:07 +03:00
|
|
|
const trustedPrLabel = getEnvVar('AIO_TRUSTED_PR_LABEL');
|
2017-03-07 11:39:37 +02:00
|
|
|
const pr = +getEnvVar('AIO_PREVERIFY_PR');
|
|
|
|
|
2018-05-10 13:56:07 +01:00
|
|
|
const githubApi = new GithubApi(githubToken);
|
|
|
|
const prs = new GithubPullRequests(githubApi, githubOrg, githubRepo);
|
|
|
|
const teams = new GithubTeams(githubApi, githubOrg);
|
|
|
|
const buildVerifier = new BuildVerifier(prs, teams, allowedTeamSlugs, trustedPrLabel);
|
2017-03-07 11:39:37 +02:00
|
|
|
|
|
|
|
// Exit codes:
|
2017-06-19 01:15:07 +03:00
|
|
|
// - 0: The PR can be automatically trusted (i.e. author belongs to trusted team or PR has the "trusted PR" label).
|
2017-05-12 11:01:42 +03:00
|
|
|
// - 1: An error occurred.
|
2017-06-19 01:15:07 +03:00
|
|
|
// - 2: The PR cannot be automatically trusted.
|
|
|
|
buildVerifier.getPrIsTrusted(pr).
|
|
|
|
then(isTrusted => {
|
|
|
|
if (!isTrusted) {
|
|
|
|
console.warn(
|
|
|
|
`The PR cannot be automatically verified, because it doesn't have the "${trustedPrLabel}" label and the ` +
|
|
|
|
`the author is not an active member of any of the following teams: ${allowedTeamSlugs.join(', ')}`);
|
2017-03-07 11:39:37 +02:00
|
|
|
}
|
|
|
|
|
2017-06-19 01:15:07 +03:00
|
|
|
process.exit(isTrusted ? 0 : 2);
|
|
|
|
}).
|
|
|
|
catch(err => {
|
|
|
|
console.error(err);
|
|
|
|
process.exit(1);
|
|
|
|
});
|
2017-03-07 11:39:37 +02:00
|
|
|
}
|