mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
46 lines
1.3 KiB
Haskell
46 lines
1.3 KiB
Haskell
|
{-# LANGUAGE QuasiQuotes #-}
|
||
|
|
||
|
module Hasura.ClientCredentials
|
||
|
( EEClientCredentials (..),
|
||
|
EEClientId (..),
|
||
|
getEEClientCredentialsTx,
|
||
|
setEEClientCredentialsTx,
|
||
|
)
|
||
|
where
|
||
|
|
||
|
import Database.PG.Query qualified as PG
|
||
|
import Hasura.Backends.Postgres.Execute.Types
|
||
|
import Hasura.Base.Error
|
||
|
import Hasura.Prelude
|
||
|
import Hasura.RQL.Types.EECredentials (EEClientCredentials (..), EEClientId (..))
|
||
|
|
||
|
getEEClientCredentialsTx :: PG.TxE QErr (Maybe EEClientCredentials)
|
||
|
getEEClientCredentialsTx =
|
||
|
makeClientCredentials . PG.getRow
|
||
|
<$> PG.withQE
|
||
|
defaultTxErrorHandler
|
||
|
[PG.sql|
|
||
|
SELECT ee_client_id::text, ee_client_secret
|
||
|
FROM hdb_catalog.hdb_version
|
||
|
|]
|
||
|
()
|
||
|
False
|
||
|
where
|
||
|
makeClientCredentials :: (Maybe Text, Maybe Text) -> Maybe EEClientCredentials
|
||
|
makeClientCredentials (clientIdMaybe, clientSecretMaybe) = do
|
||
|
eccClientId <- EEClientId <$> clientIdMaybe
|
||
|
eccClientSecret <- clientSecretMaybe
|
||
|
pure EEClientCredentials {..}
|
||
|
|
||
|
setEEClientCredentialsTx :: EEClientCredentials -> PG.TxE QErr ()
|
||
|
setEEClientCredentialsTx EEClientCredentials {..} =
|
||
|
PG.unitQE
|
||
|
defaultTxErrorHandler
|
||
|
[PG.sql|
|
||
|
UPDATE hdb_catalog.hdb_version
|
||
|
SET ee_client_id = $1,
|
||
|
ee_client_secret = $2
|
||
|
|]
|
||
|
(_getEEClientId eccClientId, eccClientSecret)
|
||
|
True
|