mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
b84db36ebb
* basic doc for actions * custom_types, sync and async actions * switch to graphql-parser-hs on github * update docs * metadata import/export * webhook calls are now supported * relationships in sync actions * initialise.sql is now in sync with the migration file * fix metadata tests * allow specifying arguments of actions * fix blacklist check on check_build_worthiness job * track custom_types and actions related tables * handlers are now triggered on async actions * default to pgjson unless a field is involved in relationships, for generating definition list * use 'true' for action filter for non admin role * fix create_action_permission sql query * drop permissions when dropping an action * add a hdb_role view (and relationships) to fetch all roles in the system * rename 'webhook' key in action definition to 'handler' * allow templating actions wehook URLs with env vars * add 'update_action' /v1/query type * allow forwarding client headers by setting `forward_client_headers` in action definition * add 'headers' configuration in action definition * handle webhook error response based on status codes * support array relationships for custom types * implement single row mutation, see https://github.com/hasura/graphql-engine/issues/3731 * single row mutation: rename 'pk_columns' -> 'columns' and no-op refactor * use top level primary key inputs for delete_by_pk & account select permissions for single row mutations * use only REST semantics to resolve the webhook response * use 'pk_columns' instead of 'columns' for update_by_pk input * add python basic tests for single row mutations * add action context (name) in webhook payload * Async action response is accessible for non admin roles only if the request session vars equals to action's * clean nulls, empty arrays for actions, custom types in export metadata * async action mutation returns only the UUID of the action * unit tests for URL template parser * Basic sync actions python tests * fix output in async query & add async tests * add admin secret header in async actions python test * document async action architecture in Resolve/Action.hs file * support actions returning array of objects * tests for list type response actions * update docs with actions and custom types metadata API reference * update actions python tests as per #f8e1330 Co-authored-by: Tirumarai Selvan <tirumarai.selvan@gmail.com> Co-authored-by: Aravind Shankar <face11301@gmail.com> Co-authored-by: Rakesh Emmadi <12475069+rakeshkky@users.noreply.github.com>
160 lines
4.9 KiB
Haskell
160 lines
4.9 KiB
Haskell
module Hasura.GraphQL.Resolve
|
|
( mutFldToTx
|
|
, queryFldToPGAST
|
|
, traverseQueryRootFldAST
|
|
, UnresolvedVal(..)
|
|
|
|
, AnnPGVal(..)
|
|
, txtConverter
|
|
|
|
, QueryRootFldAST(..)
|
|
, QueryRootFldUnresolved
|
|
, QueryRootFldResolved
|
|
, toPGQuery
|
|
|
|
, RIntro.schemaR
|
|
, RIntro.typeR
|
|
) where
|
|
|
|
import Data.Has
|
|
|
|
import qualified Data.HashMap.Strict as Map
|
|
import qualified Database.PG.Query as Q
|
|
import qualified Language.GraphQL.Draft.Syntax as G
|
|
import qualified Network.HTTP.Client as HTTP
|
|
import qualified Network.HTTP.Types as HTTP
|
|
|
|
import Hasura.GraphQL.Resolve.Context
|
|
import Hasura.Prelude
|
|
import Hasura.RQL.Types
|
|
import Hasura.Server.Version (HasVersion)
|
|
import Hasura.SQL.Types
|
|
|
|
import qualified Hasura.GraphQL.Resolve.Action as RA
|
|
import qualified Hasura.GraphQL.Resolve.Insert as RI
|
|
import qualified Hasura.GraphQL.Resolve.Introspect as RIntro
|
|
import qualified Hasura.GraphQL.Resolve.Mutation as RM
|
|
import qualified Hasura.GraphQL.Resolve.Select as RS
|
|
import qualified Hasura.GraphQL.Validate as V
|
|
import qualified Hasura.RQL.DML.Select as DS
|
|
import qualified Hasura.SQL.DML as S
|
|
|
|
data QueryRootFldAST v
|
|
= QRFPk !(DS.AnnSimpleSelG v)
|
|
| QRFSimple !(DS.AnnSimpleSelG v)
|
|
| QRFAgg !(DS.AnnAggSelG v)
|
|
| QRFActionSelect !(DS.AnnSimpleSelG v)
|
|
deriving (Show, Eq)
|
|
|
|
type QueryRootFldUnresolved = QueryRootFldAST UnresolvedVal
|
|
type QueryRootFldResolved = QueryRootFldAST S.SQLExp
|
|
|
|
traverseQueryRootFldAST
|
|
:: (Applicative f)
|
|
=> (a -> f b)
|
|
-> QueryRootFldAST a
|
|
-> f (QueryRootFldAST b)
|
|
traverseQueryRootFldAST f = \case
|
|
QRFPk s -> QRFPk <$> DS.traverseAnnSimpleSel f s
|
|
QRFSimple s -> QRFSimple <$> DS.traverseAnnSimpleSel f s
|
|
QRFAgg s -> QRFAgg <$> DS.traverseAnnAggSel f s
|
|
QRFActionSelect s -> QRFActionSelect <$> DS.traverseAnnSimpleSel f s
|
|
|
|
toPGQuery :: QueryRootFldResolved -> Q.Query
|
|
toPGQuery = \case
|
|
QRFPk s -> DS.selectQuerySQL DS.JASSingleObject s
|
|
QRFSimple s -> DS.selectQuerySQL DS.JASMultipleRows s
|
|
QRFAgg s -> DS.selectAggQuerySQL s
|
|
QRFActionSelect s -> DS.selectQuerySQL DS.JASSingleObject s
|
|
|
|
validateHdrs
|
|
:: (Foldable t, QErrM m) => UserInfo -> t Text -> m ()
|
|
validateHdrs userInfo hdrs = do
|
|
let receivedVars = userVars userInfo
|
|
forM_ hdrs $ \hdr ->
|
|
unless (isJust $ getVarVal hdr receivedVars) $
|
|
throw400 NotFound $ hdr <<> " header is expected but not found"
|
|
|
|
queryFldToPGAST
|
|
:: ( MonadReusability m, MonadError QErr m, MonadReader r m, Has FieldMap r
|
|
, Has OrdByCtx r, Has SQLGenCtx r, Has UserInfo r
|
|
, Has QueryCtxMap r
|
|
)
|
|
=> V.Field
|
|
-> m QueryRootFldUnresolved
|
|
queryFldToPGAST fld = do
|
|
opCtx <- getOpCtx $ V._fName fld
|
|
userInfo <- asks getter
|
|
case opCtx of
|
|
QCSelect ctx -> do
|
|
validateHdrs userInfo (_socHeaders ctx)
|
|
QRFSimple <$> RS.convertSelect ctx fld
|
|
QCSelectPkey ctx -> do
|
|
validateHdrs userInfo (_spocHeaders ctx)
|
|
QRFPk <$> RS.convertSelectByPKey ctx fld
|
|
QCSelectAgg ctx -> do
|
|
validateHdrs userInfo (_socHeaders ctx)
|
|
QRFAgg <$> RS.convertAggSelect ctx fld
|
|
QCFuncQuery ctx -> do
|
|
validateHdrs userInfo (_fqocHeaders ctx)
|
|
QRFSimple <$> RS.convertFuncQuerySimple ctx fld
|
|
QCFuncAggQuery ctx -> do
|
|
validateHdrs userInfo (_fqocHeaders ctx)
|
|
QRFAgg <$> RS.convertFuncQueryAgg ctx fld
|
|
QCActionFetch ctx ->
|
|
QRFActionSelect <$> RA.resolveAsyncActionQuery userInfo ctx fld
|
|
|
|
mutFldToTx
|
|
:: ( HasVersion
|
|
, MonadReusability m
|
|
, MonadError QErr m
|
|
, MonadReader r m
|
|
, Has UserInfo r
|
|
, Has MutationCtxMap r
|
|
, Has FieldMap r
|
|
, Has OrdByCtx r
|
|
, Has SQLGenCtx r
|
|
, Has InsCtxMap r
|
|
, Has HTTP.Manager r
|
|
, Has [HTTP.Header] r
|
|
, MonadIO m
|
|
)
|
|
=> V.Field
|
|
-> m RespTx
|
|
mutFldToTx fld = do
|
|
userInfo <- asks getter
|
|
opCtx <- getOpCtx $ V._fName fld
|
|
case opCtx of
|
|
MCInsert ctx -> do
|
|
validateHdrs userInfo (_iocHeaders ctx)
|
|
RI.convertInsert (userRole userInfo) (_iocTable ctx) fld
|
|
MCInsertOne ctx -> do
|
|
validateHdrs userInfo (_iocHeaders ctx)
|
|
RI.convertInsertOne (userRole userInfo) (_iocTable ctx) fld
|
|
MCUpdate ctx -> do
|
|
validateHdrs userInfo (_uocHeaders ctx)
|
|
RM.convertUpdate ctx fld
|
|
MCUpdateByPk ctx -> do
|
|
validateHdrs userInfo (_uocHeaders ctx)
|
|
RM.convertUpdateByPk ctx fld
|
|
MCDelete ctx -> do
|
|
validateHdrs userInfo (_docHeaders ctx)
|
|
RM.convertDelete ctx fld
|
|
MCDeleteByPk ctx -> do
|
|
validateHdrs userInfo (_docHeaders ctx)
|
|
RM.convertDeleteByPk ctx fld
|
|
MCAction ctx ->
|
|
RA.resolveActionMutation fld ctx (userVars userInfo)
|
|
|
|
getOpCtx
|
|
:: ( MonadReusability m
|
|
, MonadError QErr m
|
|
, MonadReader r m
|
|
, Has (OpCtxMap a) r
|
|
)
|
|
=> G.Name -> m a
|
|
getOpCtx f = do
|
|
opCtxMap <- asks getter
|
|
onNothing (Map.lookup f opCtxMap) $ throw500 $
|
|
"lookup failed: opctx: " <> showName f
|