grub-fork/src/clj/grub/websocket.clj

19 lines
743 B
Clojure
Raw Normal View History

(ns grub.websocket
(:require [grub.db :as db]
[org.httpkit.server :as httpkit]
[clojure.core.async :as a :refer [<! >! chan go]]))
2014-08-19 20:24:19 +00:00
(defn disconnected [status ws-channel to from]
(println "Client disconnected:" (.toString ws-channel) "with status" status)
(a/close! to)
(a/close! from))
(defn add-connected-client! [ws-channel to from]
(println "Client connected:" (.toString ws-channel))
2014-08-19 20:24:19 +00:00
(a/go-loop [] (if-let [event (<! to)]
(do (httpkit/send! ws-channel (pr-str event))
(recur))
(httpkit/close ws-channel)))
(httpkit/on-receive ws-channel #(a/put! from (read-string %)))
2014-08-19 20:24:19 +00:00
(httpkit/on-close ws-channel #(disconnected % ws-channel to from)))