Merge branch 'master' into patch-1

This commit is contained in:
Kim Gardner
2017-10-06 12:09:41 +01:00
committed by GitHub
6 changed files with 75 additions and 0 deletions
+1
View File
@@ -45,5 +45,6 @@ plugins/*
!plugins/talk-plugin-deep-reply-count
!plugins/talk-plugin-subscriber
!plugins/talk-plugin-flag-details
!plugins/talk-plugin-slack-notifications
**/node_modules/*
@@ -0,0 +1,3 @@
{
"extends": "@coralproject/eslint-config-talk"
}
@@ -0,0 +1,5 @@
const hooks = require('./server/hooks');
module.exports = {
hooks,
};
@@ -0,0 +1,9 @@
{
"name": "@coralproject/talk-plugin-slack-notifications",
"pluginName": "talk-plugin-slack-notifications",
"version": "0.0.1",
"description": "Posts new comments to Slack via a webhook",
"main": "index.js",
"author": "The Coral Project Team <coral@mozillafoundation.org>",
"license": "Apache-2.0"
}
@@ -0,0 +1,11 @@
const config = {
SLACK_WEBHOOK_URL: process.env.TALK_SLACK_WEBHOOK_URL,
SLACK_WEBHOOK_TIMEOUT: process.env.TALK_SLACK_WEBHOOK_TIMEOUT || 5000,
};
if (process.env.NODE_ENV !== 'test' && !config.SLACK_WEBHOOK_URL) {
// TODO this error should point users to Talk's Slack app once that's in place
throw new Error('Please set the TALK_SLACK_WEBHOOK_URL environment variable to use the slack-notifications plugin.');
}
module.exports = config;
@@ -0,0 +1,46 @@
const fetch = require('node-fetch');
const {SLACK_WEBHOOK_URL, SLACK_WEBHOOK_TIMEOUT} = require('./config');
const debug = require('debug')('talk:plugin:slack-notifications');
// We don't add the hooks during _test_ as the Slack API is not available.
if (process.env.NODE_ENV === 'test') {
return null;
}
module.exports = {
RootMutation: {
createComment: {
async post(_, {input}, context, _info, result) {
debug(`Posting notification to Slack webhook: ${SLACK_WEBHOOK_URL}`);
const {
comment: {
body: text,
created_at: createdAt
}
} = result;
const username = context.user.username;
process.nextTick(async () => {
const response = await fetch(SLACK_WEBHOOK_URL, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
timeout: SLACK_WEBHOOK_TIMEOUT,
body: JSON.stringify({
attachments: [{
text: text,
footer: `Comment by ${username}`,
ts: Math.floor(Date.parse(createdAt) / 1000),
}]
}),
});
if (!response.ok) {
const responseText = await response.text();
console.trace(`Posting to Slack failed with HTTP code ${response.status} and body '${responseText}'`);
}
});
return result;
},
},
},
};