summaryrefslogtreecommitdiff
path: root/fig-monitor-twitch/src/Fig/Monitor/Twitch/Auth/AppToken.hs
blob: fd33abe88ff62684561878798bb323bd0bc14600 (plain)
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
80
81
module Fig.Monitor.Twitch.Auth.AppToken
  ( Authed
  , RequestConfig(..)
  , authedRequest, authedRequestJSON
  , runAuthed
  ) where

import Fig.Prelude

import qualified Data.ByteString.Lazy as BS.Lazy

import Control.Monad.Reader (ReaderT, runReaderT)

import Data.Aeson ((.:))
import qualified Data.Aeson as Aeson
import qualified Data.Aeson.Types as Aeson

import Network.HTTP.Client as HTTP
import Network.HTTP.Client.TLS as HTTP
import Network.HTTP.Client.MultipartFormData as HTTP

import Fig.Monitor.Twitch.Utils

data RequestConfig = RequestConfig
  { config :: Config
  , manager :: HTTP.Manager
  , appToken :: Text
  }

newtype Authed a = Authed { unAuthed :: ReaderT RequestConfig IO a }
  deriving (Functor, Applicative, Monad, MonadReader RequestConfig, MonadIO, MonadThrow)

authedRequest :: Text -> Text -> BS.Lazy.ByteString -> Authed BS.Lazy.ByteString
authedRequest method url body = do
  rc <- ask
  initialRequest <- liftIO . HTTP.parseRequest $ unpack url
  let request = initialRequest
        { method = encodeUtf8 method
        , requestBody = RequestBodyLBS body
        , requestHeaders = 
            [ ("Authorization", encodeUtf8 $ "Bearer " <> rc.appToken)
            , ("Client-Id", encodeUtf8 rc.config.clientId)
            , ("Content-Type", "application/json")
            ]
        }
  response <- liftIO $ HTTP.httpLbs request rc.manager
  pure $ HTTP.responseBody response

authedRequestJSON :: (Aeson.ToJSON a, Aeson.FromJSON b) => Text -> Text -> Maybe a -> Authed b
authedRequestJSON method url val = do
  resp <- authedRequest method url $ maybe "" Aeson.encode val
  case Aeson.eitherDecode resp of
    Left err -> do
      throwM . FigMonitorTwitchException $ tshow err
    Right res -> pure res

getAppToken :: HTTP.Manager -> Config -> IO Text
getAppToken manager config = do
  initialRequest <- HTTP.parseRequest "https://id.twitch.tv/oauth2/token"
  let preRequest = initialRequest
        { method = "POST"
        , requestHeaders = [("Content-Type", "application/json")]
        }
  request <- HTTP.formDataBody
    [ partBS "client_id" $ encodeUtf8 config.clientId
    , partBS "client_secret" $ encodeUtf8 config.clientSecret
    , partBS "grant_type" "client_credentials"
    ]
    preRequest
  response <- liftIO $ HTTP.httpLbs request manager
  case Aeson.eitherDecode $ HTTP.responseBody response of
    Left err -> throwM . FigMonitorTwitchException $ tshow err
    Right v -> case Aeson.parseMaybe (.: "access_token") v of
      Nothing -> throwM $ FigMonitorTwitchException "failed to obtain access token"
      Just t -> pure t

runAuthed :: Config -> Authed a -> IO a
runAuthed config body = do
  manager <- HTTP.newManager HTTP.tlsManagerSettings
  appToken <- getAppToken manager config
  runReaderT body.unAuthed RequestConfig{..}