2019-11-03 10:42:10 +01:00
|
|
|
{-# LANGUAGE TupleSections #-}
|
|
|
|
|
2019-09-25 05:35:36 +02:00
|
|
|
-- | After the document is parsed, before getting executed the AST is
|
|
|
|
-- transformed into a similar, simpler AST. This module is responsible for
|
|
|
|
-- this transformation.
|
2019-07-14 05:58:05 +02:00
|
|
|
module Language.GraphQL.AST.Transform
|
|
|
|
( document
|
|
|
|
) where
|
2017-01-29 22:44:03 +01:00
|
|
|
|
2019-11-06 06:34:36 +01:00
|
|
|
import Control.Monad (foldM)
|
|
|
|
import Control.Monad.Trans.Class (lift)
|
|
|
|
import Control.Monad.Trans.Reader (ReaderT, asks, runReaderT)
|
2019-10-31 07:32:51 +01:00
|
|
|
import Data.HashMap.Strict (HashMap)
|
|
|
|
import qualified Data.HashMap.Strict as HashMap
|
2019-10-19 10:00:25 +02:00
|
|
|
import Data.List.NonEmpty (NonEmpty)
|
2017-01-29 22:44:03 +01:00
|
|
|
import qualified Data.List.NonEmpty as NonEmpty
|
2019-07-07 06:31:53 +02:00
|
|
|
import qualified Language.GraphQL.AST as Full
|
|
|
|
import qualified Language.GraphQL.AST.Core as Core
|
|
|
|
import qualified Language.GraphQL.Schema as Schema
|
2017-01-29 22:44:03 +01:00
|
|
|
|
2019-10-31 07:32:51 +01:00
|
|
|
-- | Associates a fragment name with a list of 'Core.Field's.
|
2019-11-09 23:24:31 +01:00
|
|
|
type Fragments = HashMap Core.Name (NonEmpty Core.Selection)
|
2017-01-29 22:44:03 +01:00
|
|
|
|
2019-11-06 06:34:36 +01:00
|
|
|
data Replacement = Replacement
|
|
|
|
{ substitute :: Schema.Subs
|
|
|
|
, fragments :: Fragments
|
|
|
|
}
|
|
|
|
|
|
|
|
type TransformT a = ReaderT Replacement Maybe a
|
|
|
|
|
2019-08-29 07:40:50 +02:00
|
|
|
-- | Rewrites the original syntax tree into an intermediate representation used
|
|
|
|
-- for query execution.
|
2017-02-04 01:48:26 +01:00
|
|
|
document :: Schema.Subs -> Full.Document -> Maybe Core.Document
|
2019-11-09 23:24:31 +01:00
|
|
|
document subs doc = do
|
|
|
|
fragmentMap <- foldr go (Just HashMap.empty) fragments'
|
|
|
|
runReaderT (operations operations') $ Replacement subs fragmentMap
|
2017-01-29 22:44:03 +01:00
|
|
|
where
|
2019-11-09 23:24:31 +01:00
|
|
|
(fragments', operations') = foldr defragment ([], []) doc
|
|
|
|
go fragDef (Just fragmentsMap) =
|
|
|
|
runReaderT (fragmentDefinition fragDef) (Replacement subs fragmentsMap)
|
|
|
|
go _ Nothing = Nothing
|
2017-01-29 22:44:03 +01:00
|
|
|
|
2017-02-04 01:48:26 +01:00
|
|
|
-- * Operation
|
|
|
|
|
2017-02-25 20:46:51 +01:00
|
|
|
-- TODO: Replace Maybe by MonadThrow CustomError
|
2019-11-06 06:34:36 +01:00
|
|
|
operations :: [Full.OperationDefinition] -> TransformT Core.Document
|
|
|
|
operations operations' = do
|
|
|
|
coreOperations <- traverse operation operations'
|
|
|
|
lift $ NonEmpty.nonEmpty coreOperations
|
|
|
|
|
|
|
|
operation :: Full.OperationDefinition -> TransformT Core.Operation
|
|
|
|
operation (Full.OperationSelectionSet sels) =
|
|
|
|
operation $ Full.OperationDefinition Full.Query mempty mempty mempty sels
|
2017-02-12 19:19:13 +01:00
|
|
|
-- TODO: Validate Variable definitions with substituter
|
2019-11-06 06:34:36 +01:00
|
|
|
operation (Full.OperationDefinition Full.Query name _vars _dirs sels) =
|
|
|
|
Core.Query name <$> appendSelection sels
|
|
|
|
operation (Full.OperationDefinition Full.Mutation name _vars _dirs sels) =
|
|
|
|
Core.Mutation name <$> appendSelection sels
|
2019-10-31 07:32:51 +01:00
|
|
|
|
|
|
|
selection ::
|
|
|
|
Full.Selection ->
|
2019-11-06 06:34:36 +01:00
|
|
|
TransformT (Either (NonEmpty Core.Selection) Core.Selection)
|
|
|
|
selection (Full.SelectionField fld) = Right . Core.SelectionField <$> field fld
|
|
|
|
selection (Full.SelectionFragmentSpread (Full.FragmentSpread name _)) = do
|
|
|
|
fragments' <- asks fragments
|
2019-11-09 23:24:31 +01:00
|
|
|
lift $ Left <$> HashMap.lookup name fragments'
|
2019-11-06 06:34:36 +01:00
|
|
|
selection (Full.SelectionInlineFragment fragment)
|
2019-10-07 21:03:07 +02:00
|
|
|
| (Full.InlineFragment (Just typeCondition) _ selectionSet) <- fragment
|
2019-10-11 23:28:55 +02:00
|
|
|
= Right
|
2019-11-01 14:24:21 +01:00
|
|
|
. Core.SelectionFragment
|
|
|
|
. Core.Fragment typeCondition
|
2019-11-06 06:34:36 +01:00
|
|
|
<$> appendSelection selectionSet
|
2019-10-11 23:28:55 +02:00
|
|
|
| (Full.InlineFragment Nothing _ selectionSet) <- fragment
|
2019-11-06 06:34:36 +01:00
|
|
|
= Left <$> appendSelection selectionSet
|
2017-02-04 01:48:26 +01:00
|
|
|
|
2017-01-29 22:44:03 +01:00
|
|
|
-- * Fragment replacement
|
|
|
|
|
2019-10-31 07:32:51 +01:00
|
|
|
-- | Extract fragments into a single 'HashMap' and operation definitions.
|
2019-11-09 23:24:31 +01:00
|
|
|
defragment ::
|
2019-10-31 07:32:51 +01:00
|
|
|
Full.Definition ->
|
2019-11-09 23:24:31 +01:00
|
|
|
([Full.FragmentDefinition], [Full.OperationDefinition]) ->
|
|
|
|
([Full.FragmentDefinition], [Full.OperationDefinition])
|
|
|
|
defragment (Full.DefinitionOperation op) (fragments', operations') =
|
2019-11-06 06:34:36 +01:00
|
|
|
(fragments', op : operations')
|
2019-11-09 23:24:31 +01:00
|
|
|
defragment (Full.DefinitionFragment fragDef) (fragments', operations') =
|
|
|
|
(fragDef : fragments', operations')
|
2019-10-31 07:32:51 +01:00
|
|
|
|
2019-11-06 06:34:36 +01:00
|
|
|
fragmentDefinition :: Full.FragmentDefinition -> TransformT Fragments
|
|
|
|
fragmentDefinition (Full.FragmentDefinition name _tc _dirs sels) = do
|
2019-11-09 23:24:31 +01:00
|
|
|
newValue <- emitValue
|
2019-11-06 06:34:36 +01:00
|
|
|
fragments' <- asks fragments
|
|
|
|
lift . Just $ HashMap.insert name newValue fragments'
|
2019-10-31 07:32:51 +01:00
|
|
|
where
|
|
|
|
emitValue = do
|
2019-11-06 06:34:36 +01:00
|
|
|
selections <- traverse selection sels
|
2019-11-01 14:24:21 +01:00
|
|
|
pure $ selections >>= either id pure
|
2017-01-29 22:44:03 +01:00
|
|
|
|
2019-11-06 06:34:36 +01:00
|
|
|
field :: Full.Field -> TransformT Core.Field
|
|
|
|
field (Full.Field a n args _dirs sels) = do
|
|
|
|
arguments <- traverse argument args
|
|
|
|
selection' <- appendSelectionOpt sels
|
|
|
|
return $ Core.Field a n arguments selection'
|
|
|
|
|
|
|
|
argument :: Full.Argument -> TransformT Core.Argument
|
|
|
|
argument (Full.Argument n v) = Core.Argument n <$> value v
|
|
|
|
|
|
|
|
value :: Full.Value -> TransformT Core.Value
|
|
|
|
value (Full.Variable n) = do
|
|
|
|
substitute' <- asks substitute
|
|
|
|
lift $ substitute' n
|
|
|
|
value (Full.Int i) = pure $ Core.Int i
|
|
|
|
value (Full.Float f) = pure $ Core.Float f
|
|
|
|
value (Full.String x) = pure $ Core.String x
|
|
|
|
value (Full.Boolean b) = pure $ Core.Boolean b
|
|
|
|
value Full.Null = pure Core.Null
|
|
|
|
value (Full.Enum e) = pure $ Core.Enum e
|
|
|
|
value (Full.List l) =
|
|
|
|
Core.List <$> traverse value l
|
|
|
|
value (Full.Object o) =
|
|
|
|
Core.Object . HashMap.fromList <$> traverse objectField o
|
|
|
|
|
|
|
|
objectField :: Full.ObjectField -> TransformT (Core.Name, Core.Value)
|
|
|
|
objectField (Full.ObjectField n v) = (n,) <$> value v
|
2017-01-29 22:44:03 +01:00
|
|
|
|
2019-11-01 14:24:21 +01:00
|
|
|
appendSelectionOpt ::
|
|
|
|
Traversable t =>
|
|
|
|
t Full.Selection ->
|
2019-11-06 06:34:36 +01:00
|
|
|
TransformT [Core.Selection]
|
|
|
|
appendSelectionOpt = foldM go []
|
2019-11-01 14:24:21 +01:00
|
|
|
where
|
2019-11-06 06:34:36 +01:00
|
|
|
go acc sel = append acc <$> selection sel
|
2019-11-01 14:24:21 +01:00
|
|
|
append acc (Left list) = NonEmpty.toList list <> acc
|
|
|
|
append acc (Right one) = one : acc
|
|
|
|
|
2019-10-19 10:00:25 +02:00
|
|
|
appendSelection ::
|
|
|
|
NonEmpty Full.Selection ->
|
2019-11-06 06:34:36 +01:00
|
|
|
TransformT (NonEmpty Core.Selection)
|
|
|
|
appendSelection fullSelection = do
|
|
|
|
coreSelection <-appendSelectionOpt fullSelection
|
|
|
|
lift $ NonEmpty.nonEmpty coreSelection
|