1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
{-# LANGUAGE OverloadedStrings #-}
module Network.Wai.Handler.WebSockets
( websocketsApp
, websocketsOr
, isWebSocketsReq
, getRequestHead
, runWebSockets
) where
import Data.ByteString (ByteString)
import qualified Data.ByteString.Char8 as BC
import qualified Data.CaseInsensitive as CI
import Network.HTTP.Types (status500)
import qualified Network.Wai as Wai
import qualified Network.WebSockets as WS
import qualified Network.WebSockets.Connection as WS
import qualified System.IO.Streams as Streams
--------------------------------------------------------------------------------
isWebSocketsReq :: Wai.Request -> Bool
isWebSocketsReq req =
fmap CI.mk (lookup "upgrade" $ Wai.requestHeaders req) == Just "websocket"
--------------------------------------------------------------------------------
websocketsOr :: WS.ConnectionOptions
-> WS.ServerApp
-> Wai.Application
-> Wai.Application
websocketsOr opts app backup req sendResponse =
case websocketsApp opts app req of
Nothing -> backup req sendResponse
Just res -> sendResponse res
--------------------------------------------------------------------------------
websocketsApp :: WS.ConnectionOptions
-> WS.ServerApp
-> Wai.Request
-> Maybe Wai.Response
websocketsApp opts app req
| isWebSocketsReq req =
Just $ flip Wai.responseRaw backup $ \src sink ->
runWebSockets opts req' app src sink
| otherwise = Nothing
where
req' = getRequestHead req
backup = Wai.responseLBS status500 [("Content-Type", "text/plain")]
"The web application attempted to send a WebSockets response, but WebSockets are not supported by your WAI handler."
--------------------------------------------------------------------------------
getRequestHead :: Wai.Request -> WS.RequestHead
getRequestHead req = WS.RequestHead
(Wai.rawPathInfo req `BC.append` Wai.rawQueryString req)
(Wai.requestHeaders req)
(Wai.isSecure req)
--------------------------------------------------------------------------------
---- | Internal function to run the WebSocket io-streams using the conduit library
runWebSockets :: WS.ConnectionOptions
-> WS.RequestHead
-> (WS.PendingConnection -> IO a)
-> IO ByteString
-> (ByteString -> IO ())
-> IO a
runWebSockets opts req app src sink = do
is <- Streams.makeInputStream $ do
bs <- src
return $ if BC.null bs then Nothing else Just bs
os <- Streams.makeOutputStream (maybe (return ()) sink) >>= Streams.builderStream
let pc = WS.PendingConnection
{ WS.pendingOptions = opts
, WS.pendingRequest = req
, WS.pendingOnAccept = \_ -> return ()
, WS.pendingIn = is
, WS.pendingOut = os
}
app pc
|