mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
625e41cd77
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8068 GitOrigin-RevId: 435527a98e645ed69c9be484ff0bd21af8181d69
54 lines
1.6 KiB
Haskell
54 lines
1.6 KiB
Haskell
-- | Validate logical models against postgres-like flavors.
|
|
module Hasura.Backends.Postgres.Instances.LogicalModels
|
|
( validateLogicalModel,
|
|
)
|
|
where
|
|
|
|
import Data.Aeson (toJSON)
|
|
import Data.Environment qualified as Env
|
|
import Data.Text.Extended (toTxt)
|
|
import Database.PG.Query qualified as PG
|
|
import Hasura.Backends.Postgres.Connection qualified as PG
|
|
import Hasura.Backends.Postgres.Connection.Connect (withPostgresDB)
|
|
import Hasura.Base.Error
|
|
import Hasura.LogicalModel.Metadata
|
|
import Hasura.Prelude
|
|
import Hasura.SQL.Backend
|
|
|
|
-- | Prepare a logical model query against a postgres-like database to validate it.
|
|
validateLogicalModel ::
|
|
(MonadIO m, MonadError QErr m) =>
|
|
Env.Environment ->
|
|
PG.PostgresConnConfiguration ->
|
|
LogicalModelInfo ('Postgres pgKind) ->
|
|
m ()
|
|
validateLogicalModel env connConf model = do
|
|
let name = getLogicalModelName $ lmiRootFieldName model
|
|
let code :: Text
|
|
code = fold $ flip evalState (1 :: Int) do
|
|
for (getInterpolatedQuery $ lmiCode model) \case
|
|
IIText t -> pure t
|
|
IIVariable _v -> do
|
|
i <- get
|
|
modify (+ 1)
|
|
pure $ "$" <> tshow i
|
|
result <-
|
|
liftIO $
|
|
withPostgresDB env connConf $
|
|
PG.rawQE
|
|
( \e ->
|
|
(err400 ValidationFailed "Failed to validate query")
|
|
{ qeInternal = Just $ ExtraInternal $ toJSON e
|
|
}
|
|
)
|
|
(PG.fromText $ "PREPARE _logimo_vali_" <> toTxt name <> " AS " <> code)
|
|
[]
|
|
False
|
|
case result of
|
|
-- running the query failed
|
|
Left err ->
|
|
throwError err
|
|
-- running the query succeeded
|
|
Right () ->
|
|
pure ()
|