Code Monkey home page Code Monkey logo

slack-rtm's Introduction

slack-rtm ci-status

A Clojure library to interact with the Slack Real Time Messaging API. It's powered by clj-slack and core.async.

Usage

Include [slack-rtm "0.1.0"] in your dependencies. Get a Slack token (it can be a bot token too). Then:

(use 'slack-rtm.core)

;; connect to the Real Time Messaging API
(def rtm-conn (connect "your-token"))

;; rtm-conn is a map with publications and channels that
;; allows you to receive and send data to and from Slack.

;; :events-publication allows you to listen for slack events
(def events-publication (:events-publication rtm-conn))

;; let's listen for events of type :pong
(def pong-receiver #(println "got this:" %))
(sub-to-event events-publication :pong pong-receiver)

;; send events to Slack by getting the dispatcher channel
(def dispatcher (:dispatcher rtm-conn))
(send-event dispatcher {:type "ping"})

;; at this point pong-receiver should have been called with a pong response

The map returned by connect has four items:

  • :start is map containing the response from the Slack API rtm.start method, which contains data about the current state of the team:

  • :events-publication is a core.async publication that you can use to subscribe to the different kind of slack event types. You can use core.async's sub method using as topic the string version of the event type (e.g. "message", "im_open", etc.). Or better yet, use the sub-to-event function that allows you to subscribe both a core.async channel or an unary function; it also allows you to subscribe using keywords (e.g. :message, :im_open, etc.).

  • :dispatcher is a core.async channel you can use to send events to slack. You can use core.async primitive methods (>!!, >!, put!), or better yet use send-event which automatically adds an :id to the map if none is present.

  • :websocket-publication is a core.async publication that allows you to subscribe to raw WebSocket callbacks. It support the following topics: :on-connect, :on-receive, :on-binary, :on-close, :on-error. Refer to stylefruits/gniazdo for information on these.

Hook subscriptions before connecting

Using (connect "token") will connect right away, which means you can miss events (like the hello event) by the time you subscribe. You can subscribe to any event before the connection has been performed by specifying a list of :topics channel-or-funciton pairs to connect like this:

(connect "token"
         :hello #(prn %)
         :on-close (fn [status reason] (prn status reason)))

License

Distributed under the WTFPL.

slack-rtm's People

Contributors

casidiablo avatar devth avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.