Added welcome message for new users, needs request module.

This commit is contained in:
Fillerino 2016-08-08 21:46:54 +02:00 committed by GitHub
parent ca69ef4c70
commit 8256ce3d36

10
app.js
View file

@ -1,4 +1,5 @@
var SlackBot = require('slackbots'); var SlackBot = require('slackbots');
var request = require('request');
['SLACK_TOKEN', 'RPCUSER', 'RPCPASSWORD'].forEach(function(envVar) { ['SLACK_TOKEN', 'RPCUSER', 'RPCPASSWORD'].forEach(function(envVar) {
if (!process.env[envVar]) { if (!process.env[envVar]) {
@ -11,6 +12,12 @@ var slackbot = new SlackBot({
name: 'wunderbot' name: 'wunderbot'
}); });
function sendwelcomemsg(usertowelcome) {
request('https://raw.githubusercontent.com/lbryio/lbry.io/master/posts/other/slack-greeting.md', function (error, response, body) {
if (!error && response.statusCode == 200) {
bot.postMessage(usertowelcome, body);
}
})};
var tipbot = require('./tipbot'); var tipbot = require('./tipbot');
tipbot.init(process.env.RPCUSER, process.env.RPCPASSWORD); tipbot.init(process.env.RPCUSER, process.env.RPCPASSWORD);
@ -22,6 +29,9 @@ hashbot.init(slackbot, process.env.MINING_CHANNEL);
slackbot.on('start', function() { slackbot.on('start', function() {
slackbot.on('message', function(data) { slackbot.on('message', function(data) {
if (data.type == 'team_join') {
setTimeout(function() { sendwelcomemsg(data.user.id); },2000); //Delay because of slow slack api updates which sometimes does not send msg.
}
if (data.text) { if (data.text) {
var command = data.text.trim().split(' ')[0]; var command = data.text.trim().split(' ')[0];