You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
147 lines
5.5 KiB
147 lines
5.5 KiB
"use strict";
|
|
|
|
const reportProcessor = require("./report-processor");
|
|
const settings = require("../settings");
|
|
|
|
const featureNamePattern = /^feature-(\d+)(?:-[a-zA-Z0-9]+)+$/;
|
|
const versionNamePattern = /^v\d+(\.\d+)*$/;
|
|
const masterNamePattern = /^master$/;
|
|
|
|
const writeComment = (options, message, callback) => options.github.issues.createComment({
|
|
"body": message,
|
|
"number": options.number,
|
|
"owner": options.baseRepoOptions.owner,
|
|
"repo": options.baseRepoOptions.reponame
|
|
}, callback);
|
|
|
|
const closePullRequest = (options, message, callback) => writeComment(options, message, (err) => {
|
|
if (err) {
|
|
return callback(err);
|
|
}
|
|
|
|
return options.github.issues.edit({
|
|
"number": options.number,
|
|
"owner": options.baseRepoOptions.owner,
|
|
"repo": options.baseRepoOptions.reponame,
|
|
"state": "closed"
|
|
}, callback);
|
|
});
|
|
|
|
const checkHasIssue = (options, issueNumber, callback) => options.github.issues.get({
|
|
"number": issueNumber,
|
|
"owner": options.baseRepoOptions.owner,
|
|
"repo": options.baseRepoOptions.reponame
|
|
}, (err, result) => {
|
|
if (err && err.code !== 404) {
|
|
return callback(err);
|
|
}
|
|
|
|
if (err || result.number.toString() !== issueNumber) {
|
|
return callback(null, false);
|
|
}
|
|
|
|
if (result.pull_request && result.pull_request.url) {
|
|
return callback(null, false);
|
|
}
|
|
|
|
return callback(null, true, result.title);
|
|
});
|
|
|
|
const checkHasReleases = (options, callback) => options.github.repos.getReleases({
|
|
"owner": options.baseRepoOptions.owner,
|
|
"per_page": 1,
|
|
"repo": options.baseRepoOptions.reponame
|
|
}, (err, result) => {
|
|
if (err) {
|
|
return callback(err);
|
|
}
|
|
|
|
return callback(null, result && result.length);
|
|
});
|
|
|
|
const checkPullRequest = (options, callback) => {
|
|
const head = options.headRepoOptions;
|
|
const base = options.baseRepoOptions;
|
|
|
|
if (head.reponame !== base.reponame) {
|
|
return closePullRequest(options, "Base and head repository names should match", callback);
|
|
}
|
|
|
|
if (head.owner === base.owner) {
|
|
if (!versionNamePattern.test(head.branchname) || !masterNamePattern.test(base.branchname)) {
|
|
return closePullRequest(options, "Only merging from version to master is allowed", callback);
|
|
}
|
|
|
|
return checkHasReleases(options, (err, hasReleases) => {
|
|
if (err) {
|
|
return writeComment(options, "Unable to check for releases", callback);
|
|
}
|
|
|
|
if (!hasReleases) {
|
|
return closePullRequest(options, "Merging from version to master is only allowed for repositories with releases", callback);
|
|
}
|
|
|
|
if (options.action === "opened") {
|
|
return writeComment(options, `Switching master branch to ${head.branchname} release`, callback);
|
|
}
|
|
|
|
return process.nextTick(callback);
|
|
});
|
|
}
|
|
|
|
if (!featureNamePattern.test(head.branchname)) {
|
|
return closePullRequest(options, `Only merging from feature branch is allowed (pattern: \`${featureNamePattern}\`)`, callback);
|
|
}
|
|
|
|
if (!versionNamePattern.test(base.branchname) && !masterNamePattern.test(base.branchname)) {
|
|
return closePullRequest(options, `Only merging to master or version branch is allowed; merging to '${base.branchname}' is not supported`, callback);
|
|
}
|
|
|
|
const issueNumber = featureNamePattern.exec(head.branchname)[1];
|
|
|
|
return checkHasIssue(options, issueNumber, (err, hasIssue, issueTitle) => {
|
|
if (err) {
|
|
return writeComment(options, `Unable to check for issue:\r\n\r\n${err.message}`, callback);
|
|
}
|
|
|
|
if (!hasIssue) {
|
|
return closePullRequest(options, `Unable to find issue #${issueNumber}`, callback);
|
|
}
|
|
|
|
const shouldHaveReleases = versionNamePattern.test(base.branchname);
|
|
|
|
return checkHasReleases(options, (err, hasReleases) => {
|
|
if (err) {
|
|
return writeComment(options, "Unable to check for releases", callback);
|
|
}
|
|
|
|
if (shouldHaveReleases && !hasReleases) {
|
|
return closePullRequest(options, "Merging from feature to version is only allowed for repositories with releases", callback);
|
|
}
|
|
|
|
if (!shouldHaveReleases && hasReleases) {
|
|
return closePullRequest(options, "Merging from feature to master is only allowed for repositories without releases", callback);
|
|
}
|
|
|
|
if (options.action === "opened") {
|
|
return writeComment(options, `Merging feature #${issueNumber} (${issueTitle}) to ${base.branchname}${shouldHaveReleases ? " release" : ""}`, callback);
|
|
}
|
|
|
|
return process.nextTick(callback);
|
|
});
|
|
});
|
|
};
|
|
|
|
exports.commentOnPullRequest = (options, callback) => {
|
|
options.github = settings.createGithub(options.baseRepoOptions.owner);
|
|
|
|
return checkPullRequest(options, (err, successMessage) => reportProcessor.getStatusMessageFromRelease(options.app, options.headRepoOptions, (err, successMessage) => {
|
|
const escapedErr = (err || "").substring(0, 64000).replace(/`/g, "` ");
|
|
const message = err
|
|
? `Was not built:\r\n\r\n\`\`\`\r\n${escapedErr}\r\n\`\`\`\r\n\r\nDO NOT MERGE!`
|
|
: `Build OK\r\n\r\n${successMessage}`;
|
|
const statusUrlMessage = `Build status URL: ${settings.siteRoot}status/${options.headRepoOptions.owner}/${options.headRepoOptions.reponame}/${options.headRepoOptions.rev}\r\n\r\n`;
|
|
|
|
return writeComment(options, `${message}\r\n\r\n${statusUrlMessage}`, callback);
|
|
}));
|
|
};
|
|
|