mirror of
https://github.com/LBRYFoundation/lbry-tipbot.git
synced 2025-08-23 16:57:24 +00:00
Added welcome message for new users, needs request module.
This commit is contained in:
parent
ca69ef4c70
commit
8256ce3d36
1 changed files with 10 additions and 0 deletions
10
app.js
10
app.js
|
@ -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];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue