mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
f2a5d7cef3
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6822 Co-authored-by: paritosh-08 <85472423+paritosh-08@users.noreply.github.com> Co-authored-by: Naveen Naidu <30195193+Naveenaidu@users.noreply.github.com> Co-authored-by: Sooraj <8408875+soorajshankar@users.noreply.github.com> Co-authored-by: Varun Choudhary <68095256+Varun-Choudhary@users.noreply.github.com> Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com> GitOrigin-RevId: 61cfc00a97de88df1ede3f26829a0d78ec9c0bc5
66 lines
2.5 KiB
Haskell
66 lines
2.5 KiB
Haskell
-- | ConnectionTemplate
|
|
--
|
|
-- This module defines the needed types/functions for implementing the metadata
|
|
-- API `<backend>_test_connection_template`.
|
|
module Hasura.RQL.DDL.ConnectionTemplate
|
|
( runTestConnectionTemplate,
|
|
TestConnectionTemplate (..),
|
|
BackendResolvedConnectionTemplate (..),
|
|
ResolvedConnectionTemplateWrapper (..),
|
|
)
|
|
where
|
|
|
|
import Data.Aeson (FromJSON (parseJSON), ToJSON (toJSON))
|
|
import Data.Aeson qualified as J
|
|
import Hasura.Base.Error
|
|
import Hasura.EncJSON
|
|
import Hasura.Prelude
|
|
import Hasura.RQL.Types.Backend
|
|
import Hasura.RQL.Types.Common
|
|
import Hasura.RQL.Types.Metadata (MetadataM)
|
|
import Hasura.RQL.Types.SchemaCache (CacheRM, askSourceConfig)
|
|
import Hasura.SQL.AnyBackend qualified as AB
|
|
|
|
-- | The input type for the metadata API `<backend>_test_connection_template`
|
|
data TestConnectionTemplate b = TestConnectionTemplate
|
|
{ _tctSourceName :: SourceName,
|
|
_tctRequestContext :: ConnectionTemplateRequestContext b
|
|
}
|
|
|
|
instance (Backend b) => FromJSON (TestConnectionTemplate b) where
|
|
parseJSON v =
|
|
flip (J.withObject "TestConnectionTemplate") v $ \o ->
|
|
TestConnectionTemplate
|
|
<$> o J..:? "source_name" J..!= defaultSource
|
|
<*> o J..: "request_context"
|
|
|
|
-- | Resolver for the metadata API `<backend>_test_connection_template`
|
|
runTestConnectionTemplate ::
|
|
forall b m.
|
|
(MonadError QErr m, CacheRM m, Backend b, MetadataM m) =>
|
|
TestConnectionTemplate b ->
|
|
m EncJSON
|
|
runTestConnectionTemplate (TestConnectionTemplate sourceName requestContext) = do
|
|
sourceConfig <- askSourceConfig @b sourceName
|
|
liftEither $ resolveConnectionTemplate @b sourceConfig requestContext
|
|
|
|
-- A wrapper around the `ResolvedConnectionTemplate` for adding this to `query-log`
|
|
newtype ResolvedConnectionTemplateWrapper b = ResolvedConnectionTemplateWrapper
|
|
{ getResolvedConnectionTemplateWrapper :: ResolvedConnectionTemplate b
|
|
}
|
|
|
|
-- An AnyBackend wrapper around `ResolvedConnectionTemplateWrapper` for logging as query-log
|
|
newtype BackendResolvedConnectionTemplate = BackendResolvedConnectionTemplate
|
|
{ getBackendResolvedConnectionTemplate :: AB.AnyBackend ResolvedConnectionTemplateWrapper
|
|
}
|
|
|
|
instance ToJSON BackendResolvedConnectionTemplate where
|
|
toJSON resolvedConnectionTemplate =
|
|
AB.dispatchAnyBackend
|
|
@Backend
|
|
(getBackendResolvedConnectionTemplate resolvedConnectionTemplate)
|
|
$ \(resolvedConnectionTemplate' :: ResolvedConnectionTemplateWrapper b) ->
|
|
J.object
|
|
[ "result" J..= getResolvedConnectionTemplateWrapper resolvedConnectionTemplate'
|
|
]
|