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

85 lines
2.7 KiB
JavaScript
Raw Normal View History

2018-01-22 14:48:57 +01: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 14:48:57 +01:00
// probot-slack-status: "^0.2.2"
//
// Author:
// PombeirP
2018-01-23 15:27:25 +01:00
const getConfig = require('probot-config')
const defaultConfig = require('../lib/config')
const Slack = require('probot-slack-status')
2018-01-22 14:48:57 +01:00
2018-01-23 15:27:25 +01:00
let slackClient = null
2018-01-22 14:48:57 +01:00
module.exports = function(robot) {
// robot.on('slack.connected', ({ slack }) => {
Slack(robot, (slack) => {
2018-01-23 15:27:25 +01:00
robot.log.trace("Connected, assigned slackClient")
slackClient = slack
})
2018-01-22 14:48:57 +01:00
robot.on('pull_request.opened', async context => {
// Make sure we don't listen to our own messages
2018-01-23 15:27:25 +01:00
if (context.isBot) { return }
2018-01-22 14:48:57 +01:00
// A new PR was opened
2018-01-23 15:27:25 +01:00
await greetNewContributor(context, robot)
})
}
2018-01-22 14:48:57 +01:00
async function greetNewContributor(context, robot) {
2018-01-23 15:27:25 +01:00
const payload = context.payload
const github = context.github
//const config = await getConfig(context, 'github-bot.yml', defaultConfig(robot, '.github/github-bot.yml'))
const config = defaultConfig(robot, '.github/github-bot.yml')
const ownerName = payload.repository.owner.login
const repoName = payload.repository.name
const prNumber = payload.pull_request.number
2018-01-22 14:48:57 +01:00
if (!config['welcome-bot']) {
return;
}
2018-01-23 15:27:25 +01:00
robot.log(`greetNewContributor - Handling Pull Request #${prNumber} on repo ${ownerName}/${repoName}`)
2018-01-22 14:48:57 +01:00
try {
ghissues = await github.issues.getForRepo({
owner: ownerName,
repo: repoName,
state: 'all',
creator: payload.pull_request.user.login
})
2018-01-23 15:27:25 +01:00
const userPullRequests = ghissues.data.filter(issue => issue.pull_request)
2018-01-22 14:48:57 +01:00
if (userPullRequests.length === 1) {
try {
const welcomeMessage = config['welcome-bot'].message
if (!process.env.DRY_RUN) {
await github.issues.createComment({
owner: ownerName,
repo: repoName,
number: prNumber,
body: welcomeMessage
})
}
2018-01-22 14:48:57 +01:00
// Send message to Slack
2018-01-23 15:27:25 +01:00
const slackHelper = require('../lib/slack')
slackHelper.sendMessage(robot, slackClient, config.slack.notification.room, `Greeted ${payload.pull_request.user.login} on his first PR in the ${repoName} repo\n${payload.pull_request.html_url}`)
2018-01-22 14:48:57 +01:00
} catch (err) {
if (err.code !== 404) {
2018-01-23 15:27:25 +01:00
robot.log.error(`Couldn't create comment on PR: ${err}`, ownerName, repoName)
2018-01-22 14:48:57 +01:00
}
}
} else {
2018-01-23 15:27:25 +01:00
robot.log.debug("This is not the user's first PR on the repo, ignoring", ownerName, repoName, payload.pull_request.user.login)
2018-01-22 14:48:57 +01:00
}
} catch (err) {
2018-01-23 15:27:25 +01:00
robot.log.error(`Couldn't fetch the user's github issues for repo: ${err}`, ownerName, repoName)
2018-01-22 14:48:57 +01:00
}
2018-01-23 15:27:25 +01:00
}