/gifsuggest slash-command
We have all heard of IaaS, SaaS and PaaS offerings. But I recently came across AWS Lambda, which I would like to define as RaaS (Runtime as a Service). So what AWS lambda provides is an execution environment for running NodeJS and Python code in a completely Serverless/Stateless manner. which means all we have to do is write code that conforms to the specs of a lambda function and let AWS handle the scaling and execution of the code. The good news being that it integrates well with many AWS services and you get billed only for the compute time you use. You can trigger a Lambda function in response to many events such as an S3 upload or a change in a Code Commit repository. Since I wanted to play around with this technology I thought of building a slash command that suggests gifs for a given term. The solution architecture for this application would be as follows.
So the sequence of events is as follows.
- When we type in
/gifsuggest "something"
slack makes aPOST
request to our app, providing us with lots of information such as the user, team, channel etc. They also provide aresponse_url
whos purpose I will explain later. - Using the nginx config on my VPS I redirect the request to a containerized express app.
- Slack user experience guidelines enforce a rule which states that a response must be made in 3000ms or else the command is considered a failure. Which is why at this time I just send some placeholder text immediately to slack.
- The next step is we
POST
the search term and the response url to an API Gateway endpoint. - The API Gateway is what triggers the execution of our lambda function.
- The lambda function
GET
s gifs using the giphy api. - Finally using the
response_url
from earlier wePOST
the gifs and create a slack message. Slack allows us to use the same response url to create 5 messages in half an hour.
Below is the slash command in action.
Now let’s get into the code. There are many moving parts in this application so I will show each microservice in the order of which they execute. The first is the express app that quickly replies to slack and then starts the lambda function. I have called this service slack-lb.
This app is run in an alpine Linux docker container with a nodejs environment.
The next microservice is the Lambda function itself.
There are 2 main parts of invoking a lambda function in javascript.
- Event: This contains the data that is being passed into the invocation.
- Context: This contains the lifecycle information of the lambda function such as execution time remaining and other lifecycle hooks.
Amazon is nice enough to provide a NodeJS library that registers the AWS lambda context as an Express middleware. This makes migrating existing express apps to Lambda very easy. We just need to write a handler as follows.
and then register middleware in our express app.
To deploy the lambda function all we need to do is create a zip file with the node modules, the handler and the express app files and then upload them on AWS.
Benefits of Lamda:
- No need to manage any infrastructure.
- Automatic scaling.
- Easy monitoring using cloudwatch.
Issues with Lambda:
- Currently only supports NodeJS 4.3
- Only supports stateless applications
- No support for sending files
Scope for improving this project:
- Right now once gifs are sent the user still has to copy the url and paste it at the destination there should be a way to forward the gifs using message buttons.
- The app is using a public api key for giphy which is rate limited and not peak performance. Must get a production key
- Migrate the proxy slack-lb app into its own lambda function.
PS: A lot of people make this mistake but GIF stands for Graphical Interchangeable Format. which would mean that it is gif and not jiff.
P.P.S: Like everything I do this is opensource. Feel free to contribute