-
-
Save Marak/718020f185f3c7d8a564 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module['exports'] = function highFive(hook) { | |
// hook.io has a range of node modules available - see | |
// https://hook.io/modules. | |
// We use request (https://www.npmjs.com/package/request) for an easy way to | |
// make the HTTP request. | |
var request = require('request'); | |
// The parameters passed in via the slash command POST request. | |
var params = hook.params; | |
// Check that the hook has been triggered from our slash command by | |
// matching the token against the one in our environment variables. | |
if(params.token === hook.env.highfive_token) { | |
// Set up the options for the HTTP request. | |
var options = { | |
// Use the Webhook URL from the Slack Incoming Webhooks integration. | |
uri: hook.env.highfive_url, | |
method: 'POST', | |
// Slack expects a JSON payload with a "text" property. Links should be | |
// enclosed in '<', '>' for correct formatting in Slack. | |
json: { | |
'text': '<@' + params.user_name + '> sent a high five to ' + params.text | |
} | |
}; | |
// Make the POST request to the Slack incoming webhook. | |
request(options, function (error, response, body) { | |
// Pass error back to client if request endpoint can't be reached. | |
if (error) { | |
hook.res.end(error.message); | |
} | |
// Finally, send the response. This will be displayed to the user after | |
// they submit the slash command. | |
hook.res.end('High five success! Go to #highfives to see it :smile:'); | |
}); | |
} else { | |
// If the token didn't match, send a response anyway for debugging. | |
hook.res.end('Incorrect token.'); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment