status-github-bot/bot_scripts/greet-new-contributor.js

116 lines
4.0 KiB
JavaScript
Raw Normal View History

2018-01-22 13:48:57 +00:00
// Description:
// Script that listens to new GitHub pull requests
// and greets the user if it is their first PR on the repo
//
// Dependencies:
// github: "^13.1.0"
// probot-config: "^0.1.0"
2018-01-22 13:48:57 +00:00
//
// Author:
// PombeirP
const getConfig = require('probot-config')
2018-01-22 13:48:57 +00:00
const slackHelper = require('../lib/slack')
const defaultConfig = require('../lib/config')
2018-02-13 14:51:00 +00:00
const botName = 'greet-new-contributor'
2018-01-22 13:48:57 +00:00
module.exports = (robot) => {
2018-01-22 13:48:57 +00:00
robot.on('pull_request.opened', async context => {
// Make sure we don't listen to our own messages
2018-01-23 14:27:25 +00:00
if (context.isBot) { return }
2018-01-22 13:48:57 +00:00
// A new PR was opened
2018-01-23 14:27:25 +00:00
await greetNewContributor(context, robot)
})
}
2018-01-22 13:48:57 +00:00
2018-02-14 14:06:20 +00:00
function executeTemplate (templateString, templateVars) {
let s = templateString
for (const templateVar in templateVars) {
if (templateVars.hasOwnProperty(templateVar)) {
const value = templateVars[templateVar]
s = s.replace(`{${templateVar}}`, value)
}
}
return s
}
async function greetNewContributor (context, robot) {
2018-02-07 16:04:59 +00:00
const { github, payload } = context
const config = await getConfig(context, 'github-bot.yml', defaultConfig(robot, '.github/github-bot.yml'))
2018-02-16 20:35:49 +00:00
const repoInfo = { owner: payload.repository.owner.login, repo: payload.repository.name }
const prInfo = { ...repoInfo, number: payload.pull_request.number }
const welcomeBotConfig = config ? config['welcome-bot'] : null
if (!welcomeBotConfig) {
return
}
2018-02-16 20:35:49 +00:00
robot.log(`${botName} - Handling Pull Request #${prInfo.number} on repo ${repoInfo.owner}/${repoInfo.repo}`)
2018-01-22 13:48:57 +00:00
try {
const ghissuesPayload = await github.issues.getForRepo({
2018-02-16 20:35:49 +00:00
...repoInfo,
2018-01-22 13:48:57 +00:00
state: 'all',
creator: payload.pull_request.user.login
})
const userPullRequests = ghissuesPayload.data.filter(issue => issue.pull_request)
2018-01-22 13:48:57 +00:00
if (userPullRequests.length === 1) {
try {
2018-02-16 20:35:49 +00:00
const welcomeMessage = executeTemplate(welcomeBotConfig['message-template'], { user: payload.pull_request.user.login, 'pr-number': prInfo.number, 'repo-name': repoInfo.repo })
2018-02-14 14:06:20 +00:00
if (process.env.DRY_RUN) {
2018-02-16 20:35:49 +00:00
robot.log(`${botName} - Would have created comment in GHI`, prInfo, welcomeMessage)
} else {
await github.issues.createComment({
2018-02-16 20:35:49 +00:00
...prInfo,
body: welcomeMessage
})
}
2018-01-22 13:48:57 +00:00
// Send message to Slack
2018-02-16 20:35:49 +00:00
slackHelper.sendMessage(robot, config.slack.notification.room, `Greeted ${payload.pull_request.user.login} on his first PR in the ${repoInfo.repo} repo\n${payload.pull_request.html_url}`)
const slackRecipients = welcomeBotConfig['slack-recipients']
if (slackRecipients) {
for (const slackUsername of slackRecipients) {
await notifySlackRecipient(robot, slackUsername, payload, repoInfo)
}
}
2018-01-22 13:48:57 +00:00
} catch (err) {
if (err.code !== 404) {
2018-02-16 20:35:49 +00:00
robot.log.error(`${botName} - Couldn't create comment on PR: ${err}`, repoInfo)
2018-01-22 13:48:57 +00:00
}
}
} else {
2018-02-16 20:35:49 +00:00
robot.log.debug(`${botName} - This is not the user's first PR on the repo, ignoring`, repoInfo, payload.pull_request.user.login)
2018-01-22 13:48:57 +00:00
}
} catch (err) {
2018-02-16 20:35:49 +00:00
robot.log.error(`${botName} - Couldn't fetch the user's github issues for repo: ${err}`, repoInfo)
2018-01-22 13:48:57 +00:00
}
}
async function notifySlackRecipient (robot, slackUsername, payload, repoInfo) {
try {
const slackProfileCache = robot['slackProfileCache']
const userID = await slackProfileCache.getSlackIdFromSlackUsername(slackUsername)
const resp = await robot.slackWeb.im.open(userID)
const dmChannelID = resp.channel.id
const msg = `Greeted ${payload.pull_request.user.login} on his first PR in the ${repoInfo.repo} repo\n${payload.pull_request.html_url}`
robot.log.info(`${botName} - Opened DM Channel ${dmChannelID}`)
robot.log.info(`Notifying ${slackUsername} about user's first PM in ${payload.pull_request.url}`)
robot.slackWeb.chat.postMessage(dmChannelID, msg, {unfurl_links: true, as_user: slackHelper.BotUserName})
} catch (error) {
robot.log.warn(`Could not open DM channel to ${slackUsername} for new user's first PM notification`, error)
}
}