2019-11-20 21:21:30 +03:00
|
|
|
|
{-# LANGUAGE UndecidableInstances #-}
|
2021-09-24 01:56:37 +03:00
|
|
|
|
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
2019-11-20 21:21:30 +03:00
|
|
|
|
|
2022-02-08 12:24:34 +03:00
|
|
|
|
-- | Postgres Connetion
|
|
|
|
|
--
|
|
|
|
|
-- This module handles the connection against a Postgres server. It provides
|
|
|
|
|
-- an assortment of features, such as:
|
|
|
|
|
--
|
|
|
|
|
-- * 'MonadTx', a class which abstracts the 'QErr' in 'Q.TxE' via 'MonadError'
|
|
|
|
|
-- * various run combinators for executing 'Q.TxE' into 'ExceptT' or 'MonadIO'
|
|
|
|
|
-- * dealing with trace contexts ('withTraceContext' and an orphan 'MonadTrace' instance for 'Q.TxET')
|
|
|
|
|
-- * connection pool settings ('PostgresPoolSettings', 'setPostgresPoolSettings', etc)
|
|
|
|
|
-- * other settings, including source connection info and read replicas, etc. ('PostgresConnConfiguration')
|
|
|
|
|
-- * setting or getting miscellaneous properties ('setHeadersTx', 'sessionInfoExp', 'doesTableExist')
|
2020-10-27 16:53:49 +03:00
|
|
|
|
module Hasura.Backends.Postgres.Connection
|
2021-09-24 01:56:37 +03:00
|
|
|
|
( MonadTx (..),
|
|
|
|
|
runTx,
|
|
|
|
|
runTxWithCtx,
|
|
|
|
|
runQueryTx,
|
|
|
|
|
withUserInfo,
|
|
|
|
|
withTraceContext,
|
|
|
|
|
setHeadersTx,
|
|
|
|
|
setTraceContextInTx,
|
|
|
|
|
sessionInfoJsonExp,
|
2021-11-17 20:58:34 +03:00
|
|
|
|
checkDbConnection,
|
2021-09-24 01:56:37 +03:00
|
|
|
|
doesSchemaExist,
|
|
|
|
|
doesTableExist,
|
|
|
|
|
enablePgcryptoExtension,
|
|
|
|
|
dropHdbCatalogSchema,
|
|
|
|
|
PostgresPoolSettings (..),
|
|
|
|
|
PostgresSourceConnInfo (..),
|
|
|
|
|
PostgresConnConfiguration (..),
|
|
|
|
|
PGClientCerts (..),
|
|
|
|
|
CertVar (..),
|
|
|
|
|
CertData (..),
|
|
|
|
|
SSLMode (..),
|
|
|
|
|
DefaultPostgresPoolSettings (..),
|
|
|
|
|
getDefaultPGPoolSettingIfNotExists,
|
|
|
|
|
defaultPostgresPoolSettings,
|
|
|
|
|
setPostgresPoolSettings,
|
|
|
|
|
pccConnectionInfo,
|
|
|
|
|
pccReadReplicas,
|
|
|
|
|
psciDatabaseUrl,
|
|
|
|
|
psciPoolSettings,
|
|
|
|
|
psciUsePreparedStatements,
|
|
|
|
|
psciIsolationLevel,
|
|
|
|
|
psciSslConfiguration,
|
|
|
|
|
module ET,
|
|
|
|
|
)
|
|
|
|
|
where
|
|
|
|
|
|
|
|
|
|
import Control.Lens (makeLenses)
|
|
|
|
|
import Control.Monad.Morph (hoist)
|
|
|
|
|
import Control.Monad.Trans.Control (MonadBaseControl (..))
|
|
|
|
|
import Control.Monad.Validate
|
|
|
|
|
import Data.Aeson
|
|
|
|
|
import Data.Aeson.Casing (aesonDrop)
|
|
|
|
|
import Data.Aeson.Extended
|
|
|
|
|
import Data.Aeson.TH
|
|
|
|
|
import Data.Bifoldable
|
|
|
|
|
import Data.Bifunctor
|
|
|
|
|
import Data.Bitraversable
|
|
|
|
|
import Data.Char (toLower)
|
2021-11-17 20:58:34 +03:00
|
|
|
|
import Data.Either (isRight)
|
2021-09-24 01:56:37 +03:00
|
|
|
|
import Data.Hashable.Time ()
|
|
|
|
|
import Data.Semigroup (Max (..))
|
|
|
|
|
import Data.Text (unpack)
|
|
|
|
|
import Data.Text qualified as T
|
|
|
|
|
import Data.Time
|
|
|
|
|
import Database.PG.Query qualified as Q
|
|
|
|
|
import Database.PG.Query.Connection qualified as Q
|
|
|
|
|
import Hasura.Backends.Postgres.Execute.Types as ET
|
|
|
|
|
import Hasura.Backends.Postgres.SQL.DML qualified as S
|
|
|
|
|
import Hasura.Backends.Postgres.SQL.Types
|
|
|
|
|
import Hasura.Base.Error
|
|
|
|
|
import Hasura.Base.Instances ()
|
|
|
|
|
import Hasura.Incremental (Cacheable (..))
|
|
|
|
|
import Hasura.Prelude
|
|
|
|
|
import Hasura.RQL.Types.Common (UrlConf (..))
|
|
|
|
|
import Hasura.SQL.Types
|
|
|
|
|
import Hasura.Server.Utils (parseConnLifeTime, readIsoLevel)
|
|
|
|
|
import Hasura.Session
|
|
|
|
|
import Hasura.Tracing qualified as Tracing
|
|
|
|
|
import Test.QuickCheck.Instances.Semigroup ()
|
|
|
|
|
import Test.QuickCheck.Instances.Time ()
|
2021-06-15 18:05:41 +03:00
|
|
|
|
|
2019-04-17 12:48:41 +03:00
|
|
|
|
class (MonadError QErr m) => MonadTx m where
|
|
|
|
|
liftTx :: Q.TxE QErr a -> m a
|
|
|
|
|
|
|
|
|
|
instance (MonadTx m) => MonadTx (StateT s m) where
|
|
|
|
|
liftTx = lift . liftTx
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2019-04-17 12:48:41 +03:00
|
|
|
|
instance (MonadTx m) => MonadTx (ReaderT s m) where
|
|
|
|
|
liftTx = lift . liftTx
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2019-11-20 21:21:30 +03:00
|
|
|
|
instance (Monoid w, MonadTx m) => MonadTx (WriterT w m) where
|
|
|
|
|
liftTx = lift . liftTx
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2019-07-22 15:47:13 +03:00
|
|
|
|
instance (MonadTx m) => MonadTx (ValidateT e m) where
|
|
|
|
|
liftTx = lift . liftTx
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2020-07-15 13:40:48 +03:00
|
|
|
|
instance (MonadTx m) => MonadTx (Tracing.TraceT m) where
|
|
|
|
|
liftTx = lift . liftTx
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-08-02 22:13:06 +03:00
|
|
|
|
instance (MonadIO m) => MonadTx (Q.TxET QErr m) where
|
|
|
|
|
liftTx = hoist liftIO
|
2019-04-17 12:48:41 +03:00
|
|
|
|
|
2021-09-15 23:45:49 +03:00
|
|
|
|
-- | Executes the given query in a transaction of the specified
|
|
|
|
|
-- mode, within the provided PGExecCtx.
|
2021-09-24 01:56:37 +03:00
|
|
|
|
runTx ::
|
|
|
|
|
( MonadIO m,
|
|
|
|
|
MonadBaseControl IO m
|
|
|
|
|
) =>
|
|
|
|
|
PGExecCtx ->
|
|
|
|
|
Q.TxAccess ->
|
|
|
|
|
Q.TxET QErr m a ->
|
|
|
|
|
ExceptT QErr m a
|
2021-09-15 23:45:49 +03:00
|
|
|
|
runTx pgExecCtx = \case
|
2021-09-24 01:56:37 +03:00
|
|
|
|
Q.ReadOnly -> _pecRunReadOnly pgExecCtx
|
2021-09-15 23:45:49 +03:00
|
|
|
|
Q.ReadWrite -> _pecRunReadWrite pgExecCtx
|
|
|
|
|
|
2021-09-24 01:56:37 +03:00
|
|
|
|
runTxWithCtx ::
|
|
|
|
|
( MonadIO m,
|
|
|
|
|
MonadBaseControl IO m,
|
|
|
|
|
MonadError QErr m,
|
|
|
|
|
Tracing.MonadTrace m,
|
|
|
|
|
UserInfoM m
|
|
|
|
|
) =>
|
|
|
|
|
PGExecCtx ->
|
|
|
|
|
Q.TxAccess ->
|
|
|
|
|
Q.TxET QErr m a ->
|
|
|
|
|
m a
|
2021-09-15 23:45:49 +03:00
|
|
|
|
runTxWithCtx pgExecCtx txAccess tx = do
|
|
|
|
|
traceCtx <- Tracing.currentContext
|
|
|
|
|
userInfo <- askUserInfo
|
2021-09-24 01:56:37 +03:00
|
|
|
|
liftEitherM $
|
|
|
|
|
runExceptT $
|
|
|
|
|
runTx pgExecCtx txAccess $
|
|
|
|
|
withTraceContext traceCtx $
|
|
|
|
|
withUserInfo userInfo tx
|
2020-06-16 20:44:59 +03:00
|
|
|
|
|
|
|
|
|
-- | This runs the given set of statements (Tx) without wrapping them in BEGIN
|
|
|
|
|
-- and COMMIT. This should only be used for running a single statement query!
|
2021-09-24 01:56:37 +03:00
|
|
|
|
runQueryTx ::
|
|
|
|
|
( MonadIO m,
|
|
|
|
|
MonadError QErr m
|
|
|
|
|
) =>
|
|
|
|
|
PGExecCtx ->
|
|
|
|
|
Q.TxET QErr IO a ->
|
|
|
|
|
m a
|
2021-09-15 23:45:49 +03:00
|
|
|
|
runQueryTx pgExecCtx tx =
|
|
|
|
|
liftEither =<< liftIO (runExceptT $ _pecRunReadNoTx pgExecCtx tx)
|
2021-09-01 20:56:46 +03:00
|
|
|
|
|
2020-10-30 14:00:39 +03:00
|
|
|
|
setHeadersTx :: (MonadIO m) => SessionVariables -> Q.TxET QErr m ()
|
2020-07-14 22:00:58 +03:00
|
|
|
|
setHeadersTx session = do
|
2019-04-17 12:48:41 +03:00
|
|
|
|
Q.unitQE defaultTxErrorHandler setSess () False
|
|
|
|
|
where
|
2021-09-24 01:56:37 +03:00
|
|
|
|
setSess =
|
|
|
|
|
Q.fromText $
|
|
|
|
|
"SET LOCAL \"hasura.user\" = " <> toSQLTxt (sessionInfoJsonExp session)
|
2019-11-20 09:47:06 +03:00
|
|
|
|
|
2020-04-24 12:10:53 +03:00
|
|
|
|
sessionInfoJsonExp :: SessionVariables -> S.SQLExp
|
2021-02-14 09:07:52 +03:00
|
|
|
|
sessionInfoJsonExp = S.SELit . encodeToStrictText
|
2019-04-17 12:48:41 +03:00
|
|
|
|
|
2021-09-15 23:45:49 +03:00
|
|
|
|
withUserInfo :: (MonadIO m) => UserInfo -> Q.TxET QErr m a -> Q.TxET QErr m a
|
|
|
|
|
withUserInfo uInfo tx = setHeadersTx (_uiSession uInfo) >> tx
|
2019-04-17 12:48:41 +03:00
|
|
|
|
|
2021-07-27 11:05:33 +03:00
|
|
|
|
setTraceContextInTx :: (MonadIO m) => Tracing.TraceContext -> Q.TxET QErr m ()
|
2021-08-17 13:21:56 +03:00
|
|
|
|
setTraceContextInTx traceCtx = Q.unitQE defaultTxErrorHandler sql () False
|
|
|
|
|
where
|
2021-09-24 01:56:37 +03:00
|
|
|
|
sql =
|
|
|
|
|
Q.fromText $
|
|
|
|
|
"SET LOCAL \"hasura.tracecontext\" = "
|
|
|
|
|
<> toSQLTxt (S.SELit . encodeToStrictText . Tracing.injectEventContext $ traceCtx)
|
2021-07-27 11:05:33 +03:00
|
|
|
|
|
2020-07-23 23:39:26 +03:00
|
|
|
|
-- | Inject the trace context as a transaction-local variable,
|
|
|
|
|
-- so that it can be picked up by any triggers (including event triggers).
|
2021-09-24 01:56:37 +03:00
|
|
|
|
withTraceContext ::
|
|
|
|
|
(MonadIO m) =>
|
|
|
|
|
Tracing.TraceContext ->
|
|
|
|
|
Q.TxET QErr m a ->
|
|
|
|
|
Q.TxET QErr m a
|
2021-09-15 23:45:49 +03:00
|
|
|
|
withTraceContext ctx tx = setTraceContextInTx ctx >> tx
|
2019-04-17 12:48:41 +03:00
|
|
|
|
|
2021-08-02 22:13:06 +03:00
|
|
|
|
deriving instance Tracing.MonadTrace m => Tracing.MonadTrace (Q.TxET e m)
|
2019-11-20 21:21:30 +03:00
|
|
|
|
|
2021-11-17 20:58:34 +03:00
|
|
|
|
checkDbConnection :: MonadIO m => Q.PGPool -> m Bool
|
|
|
|
|
checkDbConnection pool = do
|
|
|
|
|
e <- liftIO $ runExceptT $ Q.runTx' pool select1Query
|
|
|
|
|
pure $ isRight e
|
|
|
|
|
where
|
|
|
|
|
select1Query :: Q.TxE QErr Int
|
|
|
|
|
select1Query =
|
|
|
|
|
runIdentity . Q.getRow
|
|
|
|
|
<$> Q.withQE defaultTxErrorHandler [Q.sql| SELECT 1 |] () False
|
|
|
|
|
|
2020-10-30 14:00:39 +03:00
|
|
|
|
doesSchemaExist :: MonadTx m => SchemaName -> m Bool
|
|
|
|
|
doesSchemaExist schemaName =
|
2021-09-24 01:56:37 +03:00
|
|
|
|
liftTx $
|
|
|
|
|
(runIdentity . Q.getRow)
|
|
|
|
|
<$> Q.withQE
|
|
|
|
|
defaultTxErrorHandler
|
|
|
|
|
[Q.sql|
|
2020-10-30 14:00:39 +03:00
|
|
|
|
SELECT EXISTS
|
|
|
|
|
( SELECT 1 FROM information_schema.schemata
|
|
|
|
|
WHERE schema_name = $1
|
2021-09-24 01:56:37 +03:00
|
|
|
|
) |]
|
|
|
|
|
(Identity schemaName)
|
|
|
|
|
False
|
2020-10-30 14:00:39 +03:00
|
|
|
|
|
|
|
|
|
doesTableExist :: MonadTx m => SchemaName -> TableName -> m Bool
|
|
|
|
|
doesTableExist schemaName tableName =
|
2021-09-24 01:56:37 +03:00
|
|
|
|
liftTx $
|
|
|
|
|
(runIdentity . Q.getRow)
|
|
|
|
|
<$> Q.withQE
|
|
|
|
|
defaultTxErrorHandler
|
|
|
|
|
[Q.sql|
|
2020-10-30 14:00:39 +03:00
|
|
|
|
SELECT EXISTS
|
|
|
|
|
( SELECT 1 FROM pg_tables
|
|
|
|
|
WHERE schemaname = $1 AND tablename = $2
|
2021-09-24 01:56:37 +03:00
|
|
|
|
) |]
|
|
|
|
|
(schemaName, tableName)
|
|
|
|
|
False
|
2020-10-30 14:00:39 +03:00
|
|
|
|
|
|
|
|
|
isExtensionAvailable :: MonadTx m => Text -> m Bool
|
|
|
|
|
isExtensionAvailable extensionName =
|
2021-09-24 01:56:37 +03:00
|
|
|
|
liftTx $
|
|
|
|
|
(runIdentity . Q.getRow)
|
|
|
|
|
<$> Q.withQE
|
|
|
|
|
defaultTxErrorHandler
|
|
|
|
|
[Q.sql|
|
2020-10-30 14:00:39 +03:00
|
|
|
|
SELECT EXISTS
|
|
|
|
|
( SELECT 1 FROM pg_catalog.pg_available_extensions
|
|
|
|
|
WHERE name = $1
|
2021-09-24 01:56:37 +03:00
|
|
|
|
) |]
|
|
|
|
|
(Identity extensionName)
|
|
|
|
|
False
|
2020-12-28 15:56:00 +03:00
|
|
|
|
|
|
|
|
|
enablePgcryptoExtension :: forall m. MonadTx m => m ()
|
|
|
|
|
enablePgcryptoExtension = do
|
|
|
|
|
pgcryptoAvailable <- isExtensionAvailable "pgcrypto"
|
2021-09-24 01:56:37 +03:00
|
|
|
|
if pgcryptoAvailable
|
|
|
|
|
then createPgcryptoExtension
|
|
|
|
|
else
|
|
|
|
|
throw400 Unexpected $
|
|
|
|
|
"pgcrypto extension is required, but could not find the extension in the "
|
|
|
|
|
<> "PostgreSQL server. Please make sure this extension is available."
|
2020-12-28 15:56:00 +03:00
|
|
|
|
where
|
|
|
|
|
createPgcryptoExtension :: m ()
|
|
|
|
|
createPgcryptoExtension =
|
2021-09-24 01:56:37 +03:00
|
|
|
|
liftTx $
|
|
|
|
|
Q.unitQE
|
|
|
|
|
needsPGCryptoError
|
|
|
|
|
"CREATE EXTENSION IF NOT EXISTS pgcrypto SCHEMA public"
|
|
|
|
|
()
|
|
|
|
|
False
|
2020-12-28 15:56:00 +03:00
|
|
|
|
where
|
|
|
|
|
needsPGCryptoError e@(Q.PGTxErr _ _ _ err) =
|
|
|
|
|
case err of
|
|
|
|
|
Q.PGIUnexpected _ -> requiredError
|
|
|
|
|
Q.PGIStatement pgErr -> case Q.edStatusCode pgErr of
|
|
|
|
|
Just "42501" -> err500 PostgresError permissionsMessage
|
2021-09-24 01:56:37 +03:00
|
|
|
|
_ -> requiredError
|
2020-12-28 15:56:00 +03:00
|
|
|
|
where
|
|
|
|
|
requiredError =
|
2021-09-24 01:56:37 +03:00
|
|
|
|
(err500 PostgresError requiredMessage) {qeInternal = Just $ ExtraInternal $ toJSON e}
|
2020-12-28 15:56:00 +03:00
|
|
|
|
requiredMessage =
|
|
|
|
|
"pgcrypto extension is required, but it could not be created;"
|
2021-09-24 01:56:37 +03:00
|
|
|
|
<> " encountered unknown postgres error"
|
2020-12-28 15:56:00 +03:00
|
|
|
|
permissionsMessage =
|
|
|
|
|
"pgcrypto extension is required, but the current user doesn’t have permission to"
|
2021-09-24 01:56:37 +03:00
|
|
|
|
<> " create it. Please grant superuser permission, or setup the initial schema via"
|
|
|
|
|
<> " https://hasura.io/docs/latest/graphql/core/deployment/postgres-permissions.html"
|
2021-01-07 12:04:22 +03:00
|
|
|
|
|
|
|
|
|
dropHdbCatalogSchema :: (MonadTx m) => m ()
|
2021-09-24 01:56:37 +03:00
|
|
|
|
dropHdbCatalogSchema =
|
|
|
|
|
liftTx $
|
|
|
|
|
Q.catchE defaultTxErrorHandler $
|
|
|
|
|
-- This is where
|
|
|
|
|
-- 1. Metadata storage:- Metadata and its stateful information stored
|
|
|
|
|
-- 2. Postgres source:- Table event trigger related stuff & insert permission check function stored
|
|
|
|
|
Q.unitQ "DROP SCHEMA IF EXISTS hdb_catalog CASCADE" () False
|
|
|
|
|
|
|
|
|
|
data PostgresPoolSettings = PostgresPoolSettings
|
|
|
|
|
{ _ppsMaxConnections :: !(Maybe Int),
|
|
|
|
|
_ppsIdleTimeout :: !(Maybe Int),
|
|
|
|
|
_ppsRetries :: !(Maybe Int),
|
|
|
|
|
_ppsPoolTimeout :: !(Maybe NominalDiffTime),
|
|
|
|
|
_ppsConnectionLifetime :: !(Maybe NominalDiffTime)
|
|
|
|
|
}
|
|
|
|
|
deriving (Show, Eq, Generic)
|
|
|
|
|
|
2021-02-14 09:07:52 +03:00
|
|
|
|
instance Cacheable PostgresPoolSettings
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-02-14 09:07:52 +03:00
|
|
|
|
instance Hashable PostgresPoolSettings
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-02-14 09:07:52 +03:00
|
|
|
|
instance NFData PostgresPoolSettings
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
|
|
|
|
$(deriveToJSON hasuraJSON {omitNothingFields = True} ''PostgresPoolSettings)
|
2021-02-14 09:07:52 +03:00
|
|
|
|
|
|
|
|
|
instance FromJSON PostgresPoolSettings where
|
2021-04-28 19:49:23 +03:00
|
|
|
|
parseJSON = withObject "PostgresPoolSettings" $ \o ->
|
2021-02-14 09:07:52 +03:00
|
|
|
|
PostgresPoolSettings
|
2021-03-16 18:27:51 +03:00
|
|
|
|
<$> o .:? "max_connections"
|
|
|
|
|
<*> o .:? "idle_timeout"
|
|
|
|
|
<*> o .:? "retries"
|
2021-04-28 19:49:23 +03:00
|
|
|
|
<*> o .:? "pool_timeout"
|
|
|
|
|
<*> ((o .:? "connection_lifetime") <&> parseConnLifeTime)
|
2021-02-14 09:07:52 +03:00
|
|
|
|
|
2021-09-24 01:56:37 +03:00
|
|
|
|
data DefaultPostgresPoolSettings = DefaultPostgresPoolSettings
|
|
|
|
|
{ _dppsMaxConnections :: !Int,
|
|
|
|
|
_dppsIdleTimeout :: !Int,
|
|
|
|
|
_dppsRetries :: !Int,
|
|
|
|
|
_dppsConnectionLifetime :: !(Maybe NominalDiffTime)
|
|
|
|
|
}
|
|
|
|
|
deriving (Show, Eq)
|
2021-03-16 18:27:51 +03:00
|
|
|
|
|
|
|
|
|
defaultPostgresPoolSettings :: DefaultPostgresPoolSettings
|
2021-04-28 19:49:23 +03:00
|
|
|
|
defaultPostgresPoolSettings = DefaultPostgresPoolSettings 50 180 1 (Just 600)
|
2021-03-16 18:27:51 +03:00
|
|
|
|
|
|
|
|
|
-- Use this when you want to set only few of the PG Pool settings.
|
|
|
|
|
-- The values which are not set will use the default values.
|
|
|
|
|
setPostgresPoolSettings :: PostgresPoolSettings
|
|
|
|
|
setPostgresPoolSettings =
|
2021-02-14 09:07:52 +03:00
|
|
|
|
PostgresPoolSettings
|
2021-09-24 01:56:37 +03:00
|
|
|
|
{ _ppsMaxConnections = (Just $ _dppsMaxConnections defaultPostgresPoolSettings),
|
|
|
|
|
_ppsIdleTimeout = (Just $ _dppsIdleTimeout defaultPostgresPoolSettings),
|
|
|
|
|
_ppsRetries = (Just $ _dppsRetries defaultPostgresPoolSettings),
|
|
|
|
|
_ppsPoolTimeout = Nothing, -- @Nothing@ is the default value of the pool timeout
|
|
|
|
|
_ppsConnectionLifetime = _dppsConnectionLifetime defaultPostgresPoolSettings
|
|
|
|
|
}
|
2021-02-14 09:07:52 +03:00
|
|
|
|
|
2021-03-16 18:27:51 +03:00
|
|
|
|
-- PG Pool Settings are not given by the user, set defaults
|
|
|
|
|
getDefaultPGPoolSettingIfNotExists :: Maybe PostgresPoolSettings -> DefaultPostgresPoolSettings -> (Int, Int, Int)
|
|
|
|
|
getDefaultPGPoolSettingIfNotExists connSettings defaultPgPoolSettings =
|
|
|
|
|
case connSettings of
|
|
|
|
|
-- Atleast one of the postgres pool settings is set, then set default values to other settings
|
2021-04-28 19:49:23 +03:00
|
|
|
|
Just connSettings' ->
|
|
|
|
|
(maxConnections connSettings', idleTimeout connSettings', retries connSettings')
|
2021-09-24 01:56:37 +03:00
|
|
|
|
-- No PG Pool settings provided by user, set default values for all
|
2021-03-16 18:27:51 +03:00
|
|
|
|
Nothing -> (defMaxConnections, defIdleTimeout, defRetries)
|
|
|
|
|
where
|
|
|
|
|
defMaxConnections = _dppsMaxConnections defaultPgPoolSettings
|
|
|
|
|
defIdleTimeout = _dppsIdleTimeout defaultPgPoolSettings
|
|
|
|
|
defRetries = _dppsRetries defaultPgPoolSettings
|
|
|
|
|
|
|
|
|
|
maxConnections = fromMaybe defMaxConnections . _ppsMaxConnections
|
|
|
|
|
idleTimeout = fromMaybe defIdleTimeout . _ppsIdleTimeout
|
|
|
|
|
retries = fromMaybe defRetries . _ppsRetries
|
|
|
|
|
|
2021-09-24 01:56:37 +03:00
|
|
|
|
data SSLMode
|
|
|
|
|
= Disable
|
2021-05-21 04:49:50 +03:00
|
|
|
|
| Allow
|
|
|
|
|
| Prefer
|
|
|
|
|
| Require
|
|
|
|
|
| VerifyCA
|
|
|
|
|
| VerifyFull
|
|
|
|
|
deriving (Eq, Ord, Generic, Enum, Bounded)
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-05-21 04:49:50 +03:00
|
|
|
|
instance Cacheable SSLMode
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-05-21 04:49:50 +03:00
|
|
|
|
instance Hashable SSLMode
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-05-21 04:49:50 +03:00
|
|
|
|
instance NFData SSLMode
|
|
|
|
|
|
|
|
|
|
instance Show SSLMode where
|
|
|
|
|
show = \case
|
2021-09-24 01:56:37 +03:00
|
|
|
|
Disable -> "disable"
|
|
|
|
|
Allow -> "allow"
|
|
|
|
|
Prefer -> "prefer"
|
|
|
|
|
Require -> "require"
|
|
|
|
|
VerifyCA -> "verify-ca"
|
|
|
|
|
VerifyFull -> "verify-full"
|
2021-05-21 04:49:50 +03:00
|
|
|
|
|
|
|
|
|
deriving via (Max SSLMode) instance Semigroup SSLMode
|
|
|
|
|
|
|
|
|
|
instance FromJSON SSLMode where
|
2021-09-24 01:56:37 +03:00
|
|
|
|
parseJSON = withText "SSLMode" $ \case
|
|
|
|
|
"disable" -> pure Disable
|
|
|
|
|
"allow" -> pure Allow
|
|
|
|
|
"prefer" -> pure Prefer
|
|
|
|
|
"require" -> pure Require
|
|
|
|
|
"verify-ca" -> pure VerifyCA
|
|
|
|
|
"verify-full" -> pure VerifyFull
|
|
|
|
|
err -> fail $ "Invalid SSL Mode " <> unpack err
|
2021-05-21 04:49:50 +03:00
|
|
|
|
|
|
|
|
|
data CertVar
|
2021-09-24 01:56:37 +03:00
|
|
|
|
= CertVar String
|
2021-05-21 04:49:50 +03:00
|
|
|
|
| CertLiteral String
|
|
|
|
|
deriving (Show, Eq, Generic)
|
|
|
|
|
|
|
|
|
|
instance Cacheable CertVar
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-05-21 04:49:50 +03:00
|
|
|
|
instance Hashable CertVar
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-05-21 04:49:50 +03:00
|
|
|
|
instance NFData CertVar
|
|
|
|
|
|
|
|
|
|
instance ToJSON CertVar where
|
2021-09-24 01:56:37 +03:00
|
|
|
|
toJSON (CertVar var) = (object ["from_env" .= var])
|
2021-05-21 04:49:50 +03:00
|
|
|
|
toJSON (CertLiteral var) = String (T.pack var)
|
|
|
|
|
|
|
|
|
|
instance FromJSON CertVar where
|
|
|
|
|
parseJSON (String s) = pure (CertLiteral (T.unpack s))
|
2021-09-24 01:56:37 +03:00
|
|
|
|
parseJSON x = withObject "CertVar" (\o -> CertVar <$> o .: "from_env") x
|
2021-05-21 04:49:50 +03:00
|
|
|
|
|
2021-09-24 01:56:37 +03:00
|
|
|
|
newtype CertData = CertData {unCert :: Text}
|
2021-05-21 04:49:50 +03:00
|
|
|
|
deriving (Show, Eq, Generic)
|
|
|
|
|
|
|
|
|
|
instance ToJSON CertData where
|
|
|
|
|
toJSON = String . unCert
|
|
|
|
|
|
|
|
|
|
data PGClientCerts p a = PGClientCerts
|
2021-09-24 01:56:37 +03:00
|
|
|
|
{ pgcSslCert :: a,
|
|
|
|
|
pgcSslKey :: a,
|
|
|
|
|
pgcSslRootCert :: a,
|
|
|
|
|
pgcSslMode :: SSLMode,
|
|
|
|
|
pgcSslPassword :: Maybe p
|
|
|
|
|
}
|
|
|
|
|
deriving (Show, Eq, Generic, Functor, Foldable, Traversable)
|
|
|
|
|
|
2021-05-21 04:49:50 +03:00
|
|
|
|
$(deriveFromJSON (aesonDrop 3 (fmap toLower)) ''PGClientCerts)
|
|
|
|
|
$(deriveToJSON (aesonDrop 3 (fmap toLower)) ''PGClientCerts)
|
|
|
|
|
|
|
|
|
|
instance Bifunctor PGClientCerts where
|
2021-09-24 01:56:37 +03:00
|
|
|
|
bimap f g pgCerts = g <$> pgCerts {pgcSslPassword = f <$> (pgcSslPassword pgCerts)}
|
2021-05-21 04:49:50 +03:00
|
|
|
|
|
|
|
|
|
instance Bifoldable PGClientCerts where
|
2021-09-24 01:56:37 +03:00
|
|
|
|
bifoldMap f g PGClientCerts {..} =
|
2021-05-21 04:49:50 +03:00
|
|
|
|
fold $ fmap g [pgcSslCert, pgcSslKey, pgcSslRootCert] <> maybe [] (pure . f) pgcSslPassword
|
|
|
|
|
|
|
|
|
|
instance Bitraversable PGClientCerts where
|
2021-09-24 01:56:37 +03:00
|
|
|
|
bitraverse f g PGClientCerts {..} =
|
2021-05-21 04:49:50 +03:00
|
|
|
|
PGClientCerts <$> g pgcSslCert <*> g pgcSslKey <*> g pgcSslRootCert <*> pure pgcSslMode <*> traverse f pgcSslPassword
|
|
|
|
|
|
|
|
|
|
instance (Cacheable p, Cacheable a) => Cacheable (PGClientCerts p a)
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-05-21 04:49:50 +03:00
|
|
|
|
instance (Hashable p, Hashable a) => Hashable (PGClientCerts p a)
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-05-21 04:49:50 +03:00
|
|
|
|
instance (NFData p, NFData a) => NFData (PGClientCerts p a)
|
|
|
|
|
|
|
|
|
|
instance ToJSON SSLMode where
|
|
|
|
|
toJSON = String . tshow
|
|
|
|
|
|
2021-04-28 19:49:23 +03:00
|
|
|
|
deriving instance Generic Q.TxIsolation
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-04-28 19:49:23 +03:00
|
|
|
|
instance Cacheable Q.TxIsolation
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
|
|
|
|
instance NFData Q.TxIsolation
|
|
|
|
|
|
|
|
|
|
instance Hashable Q.TxIsolation
|
2021-04-28 19:49:23 +03:00
|
|
|
|
|
|
|
|
|
instance FromJSON Q.TxIsolation where
|
|
|
|
|
parseJSON = withText "Q.TxIsolation" $ \t ->
|
|
|
|
|
onLeft (readIsoLevel $ T.unpack t) fail
|
|
|
|
|
|
|
|
|
|
instance ToJSON Q.TxIsolation where
|
2021-09-24 01:56:37 +03:00
|
|
|
|
toJSON Q.ReadCommitted = "read-committed"
|
2021-04-28 19:49:23 +03:00
|
|
|
|
toJSON Q.RepeatableRead = "repeatable-read"
|
2021-09-24 01:56:37 +03:00
|
|
|
|
toJSON Q.Serializable = "serializable"
|
|
|
|
|
|
|
|
|
|
data PostgresSourceConnInfo = PostgresSourceConnInfo
|
|
|
|
|
{ _psciDatabaseUrl :: !UrlConf,
|
|
|
|
|
_psciPoolSettings :: !(Maybe PostgresPoolSettings),
|
|
|
|
|
_psciUsePreparedStatements :: !Bool,
|
|
|
|
|
_psciIsolationLevel :: !Q.TxIsolation,
|
|
|
|
|
_psciSslConfiguration :: !(Maybe (PGClientCerts CertVar CertVar))
|
|
|
|
|
}
|
|
|
|
|
deriving (Show, Eq, Generic)
|
|
|
|
|
|
2021-02-14 09:07:52 +03:00
|
|
|
|
instance Cacheable PostgresSourceConnInfo
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-02-14 09:07:52 +03:00
|
|
|
|
instance Hashable PostgresSourceConnInfo
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-02-14 09:07:52 +03:00
|
|
|
|
instance NFData PostgresSourceConnInfo
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
|
|
|
|
$(deriveToJSON hasuraJSON {omitNothingFields = True} ''PostgresSourceConnInfo)
|
2021-04-13 03:15:37 +03:00
|
|
|
|
$(makeLenses ''PostgresSourceConnInfo)
|
|
|
|
|
|
2021-02-14 09:07:52 +03:00
|
|
|
|
instance FromJSON PostgresSourceConnInfo where
|
2021-04-28 19:49:23 +03:00
|
|
|
|
parseJSON = withObject "PostgresSourceConnInfo" $ \o ->
|
2021-02-14 09:07:52 +03:00
|
|
|
|
PostgresSourceConnInfo
|
|
|
|
|
<$> o .: "database_url"
|
2021-03-16 18:27:51 +03:00
|
|
|
|
<*> o .:? "pool_settings"
|
2021-09-23 15:37:56 +03:00
|
|
|
|
<*> o .:? "use_prepared_statements" .!= False -- By default, preparing statements is OFF for postgres source
|
2021-04-28 19:49:23 +03:00
|
|
|
|
<*> o .:? "isolation_level" .!= Q.ReadCommitted
|
2021-05-21 04:49:50 +03:00
|
|
|
|
<*> o .:? "ssl_configuration"
|
2021-02-14 09:07:52 +03:00
|
|
|
|
|
2021-09-24 01:56:37 +03:00
|
|
|
|
data PostgresConnConfiguration = PostgresConnConfiguration
|
|
|
|
|
{ _pccConnectionInfo :: !PostgresSourceConnInfo,
|
|
|
|
|
_pccReadReplicas :: !(Maybe (NonEmpty PostgresSourceConnInfo))
|
|
|
|
|
}
|
|
|
|
|
deriving (Show, Eq, Generic)
|
|
|
|
|
|
2021-02-14 09:07:52 +03:00
|
|
|
|
instance Cacheable PostgresConnConfiguration
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-02-14 09:07:52 +03:00
|
|
|
|
instance Hashable PostgresConnConfiguration
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
2021-02-14 09:07:52 +03:00
|
|
|
|
instance NFData PostgresConnConfiguration
|
2021-09-24 01:56:37 +03:00
|
|
|
|
|
|
|
|
|
$(deriveJSON hasuraJSON {omitNothingFields = True} ''PostgresConnConfiguration)
|
2021-04-13 03:15:37 +03:00
|
|
|
|
$(makeLenses ''PostgresConnConfiguration)
|