Skip to content

transybao93/Slack-Events

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🔔 Slack Events API for Laravel 🔔

Latest Stable Version License Build Status

Work with Slack Events API as easily as with native Laravel 5 events and event listeners.

🔗 Reasons to use this package for the Slack Events API:

  • Based on native Laravel Events
  • Supports all Slack Event types
  • Supports token validation
  • Supports URL verification and "challenge" requests
  • PSR compatible code
  • Full documentation
  • Almost full test coverage
  • Lots of emoji in the documentation (even cats! 🐈)

🌎 Installation

1) Require the package with Composer

composer require lisennk/laravel-slack-events-api

2) Open config/app.php and add \Lisennk\LaravelSlackEvents\SlackEventsServiceProvider::class to the providers[] array.

For example:

// ...

'providers' => [
// ...
// A whole bunch of providers
// ...

\Lisennk\LaravelSlackEvents\SlackEventsServiceProvider::class,
],

// ...

If you are using Laravel 5.3, in this file you will find a comment with text like /* Package Service Providers... */, which can help you to find the right place.

3) Publish the config file

php artisan vendor:publish

4) Open in browser api.slack.com site, go to "My Apps" page and then go to your app control panel. You will need to configure a few things here in the next 2 steps.

5) Go to the "App Credentials" page, scroll down and copy "Verification Token".

verification_token

Open config/slackEvents.php and paste your Verification Token under the 'token' key:

'token' => 'paste-your-token-here'

6) Now open the "Event Subscriptions" page. Here you must enable events, add events you wish to listen for and set Request URL. Request URL is the 'route' key in your config/slackEvents.php file:

return [
    /*
    |-------------------------------------------------------------
    | Your validation token from "App Credentials"
    |-------------------------------------------------------------
    */
    'token' => 'your-validation-token-here',

    /*
    |-------------------------------------------------------------
    | Events Request URL — path, where events will be served
    |-------------------------------------------------------------
    */
    'route' => '/api/slack/event/fire', // <===== THIS IS YOUR REQUEST URL
];

'route' works just like built-in Laravel routes, so if your site URL is https://example.com and your 'route' is /api/slack/event/fire, then your full Request URL is https://example.com/api/slack/event/fire. You can leave it as-is or set your own route instead of the default /api/slack/event/fire.

This package will do all verification and "challenge" work for you, so you only need to set your Request URL — by default it's:

https://[your-site-url]/api/slack/event/fire

request_url

🍴 Usage

Also see: Quick Example.

Thanks to this package, working with Slack Events is the same as working with Laravel Events. So if you haven't read the Laravel Events documentation or Slack Events API documentation yet, it's highly recommended to read them before you start.

This package provides a separate Laravel Event class for every Slack event that has Slack Events API support. For example, the reaction_added event implementation is the Lisennk\LaravelSlackEvents\Events\ReactionAdded class.

Also see: Full list of supported events and their classes.

Each Event class has public fields representing the real Slack Event request:

Field Description
public $token; Verification token
public $team_id; The unique identifier for the team where this event occurred.
public $api_app_id The unique identifier for the application this event is intended for.
public $event; Contains the inner set of fields representing the event that's happening.
public $data Alias for public $event field. Makes code more clear if your event object name is $event too, so you can write $event->data instead of $event->event.
public $type; This reflects the type of callback you're receiving.
public $authed_users; An array of string-based User IDs.

For example, if you want to get the reaction name from reaction_added event, you can get it from the ReactionAdded event class like this:

$reactionAdded->event['reaction']; // reaction name, something like :thumbsup:

So, suppose we want to make a reaction_added Slack Event listener. What do we need to do?

Example

1) Open the App/Listeners directory (or create it if it doesn't exist). Now create a new file and call it ReactionAddedListener.php. Paste in this code:

<?php

namespace App\Listeners;

use \Lisennk\LaravelSlackEvents\Events\ReactionAdded;
use Illuminate\Support\Facades\Log;
use Illuminate\Contracts\Queue\ShouldQueue;

class ReactionAddedListener implements ShouldQueue
{
    /**
     * Create the event listener.
     *
     * @return void
     */
    public function __construct()
    {
        // Here you can setup something
    }

    /**
     * Handle the event.
     *
     * @param  ReactionAdded  $event
     * @return void
     */
    public function handle(ReactionAdded $reactionAdded)
    {
        // Do some magic with event data
        Log::info('New reaction added, reaction name is: ' . $reactionAdded->event['reaction']);
    }
}

As you can see, it's a normal event listener. You might notice that the listener implements ShouldQueue — it's useful because our app must respond to the request within three seconds in order to adhere to the Slack Events API terms. If you want some long-running stuff in your event listener, you need to configure a queue.

2) Now we add this listener to /App/Providers/EventServiceProvider.php like any other event listener:

// ...

protected $listen = [
        
        // ...

        \Lisennk\LaravelSlackEvents\Events\ReactionAdded::class => [
            \App\Listeners\ReactionAddedListener::class
        ]
    ];
    
// ...

3) Profit! You are ready to go.

🍒 Full list of supported events and their classes

Event Name Event Class
channel_archive \Lisennk\LaravelSlackEvents\Events\ChannelArchive
channel_created \Lisennk\LaravelSlackEvents\Events\ChannelCreated
channel_deleted \Lisennk\LaravelSlackEvents\Events\ChannelDeleted
channel_history_changed \Lisennk\LaravelSlackEvents\Events\ChannelHistoryChanged
channel_joined \Lisennk\LaravelSlackEvents\Events\ChannelJoined
channel_rename \Lisennk\LaravelSlackEvents\Events\ChannelRename
channel_unarchive \Lisennk\LaravelSlackEvents\Events\ChannelUnarchive
dnd_updated \Lisennk\LaravelSlackEvents\Events\DndUpdated
dnd_updated_user \Lisennk\LaravelSlackEvents\Events\DndUpdatedUser
email_domain_changed \Lisennk\LaravelSlackEvents\Events\EmailDomainChanged
emoji_changed \Lisennk\LaravelSlackEvents\Events\EmojiChanged
file_change \Lisennk\LaravelSlackEvents\Events\FileChange
file_comment_added \Lisennk\LaravelSlackEvents\Events\FileCommentAdded
file_comment_deleted \Lisennk\LaravelSlackEvents\Events\FileCommentDeleted
file_comment_edited \Lisennk\LaravelSlackEvents\Events\FileCommentEdited
file_created \Lisennk\LaravelSlackEvents\Events\FileCreated
file_deleted \Lisennk\LaravelSlackEvents\Events\FileDeleted
file_public \Lisennk\LaravelSlackEvents\Events\FilePublic
file_shared \Lisennk\LaravelSlackEvents\Events\FileShared
file_unshared \Lisennk\LaravelSlackEvents\Events\FileUnshared
group_archive \Lisennk\LaravelSlackEvents\Events\GroupArchive
group_close \Lisennk\LaravelSlackEvents\Events\GroupClose
group_history_changed \Lisennk\LaravelSlackEvents\Events\GroupHistoryChanged
group_open \Lisennk\LaravelSlackEvents\Events\GroupOpen
group_rename \Lisennk\LaravelSlackEvents\Events\GroupRename
group_unarchive \Lisennk\LaravelSlackEvents\Events\GroupUnarchive
im_close \Lisennk\LaravelSlackEvents\Events\ImClose
im_created \Lisennk\LaravelSlackEvents\Events\ImCreated
im_history_changed \Lisennk\LaravelSlackEvents\Events\ImHistoryChanged
im_open \Lisennk\LaravelSlackEvents\Events\ImOpen
message \Lisennk\LaravelSlackEvents\Events\Message
message.channels \Lisennk\LaravelSlackEvents\Events\MessageChannels
message.groups \Lisennk\LaravelSlackEvents\Events\MessageGroups
message.im \Lisennk\LaravelSlackEvents\Events\MessageIm
message.mpim \Lisennk\LaravelSlackEvents\Events\MessageMpim
pin_added \Lisennk\LaravelSlackEvents\Events\PinAdded
pin_removed \Lisennk\LaravelSlackEvents\Events\PinRemoved
reaction_added \Lisennk\LaravelSlackEvents\Events\ReactionAdded
reaction_removed \Lisennk\LaravelSlackEvents\Events\ReactionRemoved
star_added \Lisennk\LaravelSlackEvents\Events\StarAdded
star_removed \Lisennk\LaravelSlackEvents\Events\StarRemoved
subteam_created \Lisennk\LaravelSlackEvents\Events\SubteamCreated
subteam_self_added \Lisennk\LaravelSlackEvents\Events\SubteamSelfAdded
subteam_self_removed \Lisennk\LaravelSlackEvents\Events\SubteamSelfRemoved
subteam_updated \Lisennk\LaravelSlackEvents\Events\SubteamUpdated
team_domain_change \Lisennk\LaravelSlackEvents\Events\TeamDomainChange
team_join \Lisennk\LaravelSlackEvents\Events\TeamJoin
team_rename \Lisennk\LaravelSlackEvents\Events\TeamRename
url_verification \Lisennk\LaravelSlackEvents\Events\UrlVerification
user_change \Lisennk\LaravelSlackEvents\Events\UserChange

🌺 Contributing

Feel free to star this repository, create pull requests or issues, and report typos.

📚 Reference

About

🔔 Slack Events API for PHP Laravel 5

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%