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-10-31 07:32:51 +01:00
|
|
|
import Data.Foldable (fold)
|
|
|
|
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-01 14:24:21 +01:00
|
|
|
type Fragments = HashMap Core.Name (NonEmpty Core.Field)
|
2017-01-29 22:44:03 +01:00
|
|
|
|
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-01 14:24:21 +01:00
|
|
|
document subs doc =
|
|
|
|
case fragments of
|
|
|
|
Just fragments' -> operations subs fragments' operations'
|
|
|
|
Nothing -> Nothing
|
2017-01-29 22:44:03 +01:00
|
|
|
where
|
2019-11-01 14:24:21 +01:00
|
|
|
(fragments, operations') = foldr (defrag subs) (Just HashMap.empty, [])
|
2019-10-31 07:32:51 +01:00
|
|
|
$ NonEmpty.toList doc
|
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-10-31 07:32:51 +01:00
|
|
|
operations ::
|
|
|
|
Schema.Subs ->
|
|
|
|
Fragments ->
|
|
|
|
[Full.OperationDefinition] ->
|
|
|
|
Maybe Core.Document
|
|
|
|
operations subs fragments operations' = do
|
|
|
|
coreOperations <- traverse (operation subs fragments) operations'
|
|
|
|
NonEmpty.nonEmpty coreOperations
|
|
|
|
|
|
|
|
operation ::
|
|
|
|
Schema.Subs ->
|
|
|
|
Fragments ->
|
|
|
|
Full.OperationDefinition ->
|
|
|
|
Maybe Core.Operation
|
|
|
|
operation subs fragments (Full.OperationSelectionSet sels) =
|
|
|
|
operation subs fragments $ Full.OperationDefinition Full.Query mempty mempty mempty sels
|
2017-02-12 19:19:13 +01:00
|
|
|
-- TODO: Validate Variable definitions with substituter
|
2019-10-31 07:32:51 +01:00
|
|
|
operation subs fragments (Full.OperationDefinition Full.Query name _vars _dirs sels) =
|
2019-11-01 14:24:21 +01:00
|
|
|
Core.Query name <$> appendSelection subs fragments sels
|
2019-10-31 07:32:51 +01:00
|
|
|
operation subs fragments (Full.OperationDefinition Full.Mutation name _vars _dirs sels) =
|
2019-11-01 14:24:21 +01:00
|
|
|
Core.Mutation name <$> appendSelection subs fragments sels
|
2019-10-31 07:32:51 +01:00
|
|
|
|
|
|
|
selection ::
|
|
|
|
Schema.Subs ->
|
|
|
|
Fragments ->
|
|
|
|
Full.Selection ->
|
2019-11-01 14:24:21 +01:00
|
|
|
Maybe (Either (NonEmpty Core.Selection) Core.Selection)
|
2019-10-31 07:32:51 +01:00
|
|
|
selection subs fragments (Full.SelectionField fld)
|
2019-11-01 14:24:21 +01:00
|
|
|
= Right . Core.SelectionField <$> field subs fragments fld
|
2019-10-31 07:32:51 +01:00
|
|
|
selection _ fragments (Full.SelectionFragmentSpread (Full.FragmentSpread name _))
|
2019-11-01 14:24:21 +01:00
|
|
|
= Left . fmap Core.SelectionField <$> HashMap.lookup name fragments
|
2019-10-31 07:32:51 +01:00
|
|
|
selection subs fragments (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
|
|
|
|
<$> appendSelection subs fragments selectionSet
|
2019-10-11 23:28:55 +02:00
|
|
|
| (Full.InlineFragment Nothing _ selectionSet) <- fragment
|
2019-11-01 14:24:21 +01:00
|
|
|
= Left <$> appendSelection subs fragments 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.
|
|
|
|
defrag ::
|
|
|
|
Schema.Subs ->
|
|
|
|
Full.Definition ->
|
2019-11-01 14:24:21 +01:00
|
|
|
(Maybe Fragments, [Full.OperationDefinition]) ->
|
|
|
|
(Maybe Fragments, [Full.OperationDefinition])
|
2019-10-31 07:32:51 +01:00
|
|
|
defrag _ (Full.DefinitionOperation op) (fragments, operations') =
|
|
|
|
(fragments, op : operations')
|
2019-11-01 14:24:21 +01:00
|
|
|
defrag subs (Full.DefinitionFragment fragDef) (Just fragments, operations') =
|
2019-10-31 07:32:51 +01:00
|
|
|
(fragmentDefinition subs fragments fragDef, operations')
|
2019-11-01 14:24:21 +01:00
|
|
|
defrag _ _ (Nothing, operations') =
|
|
|
|
(Nothing, operations')
|
2019-10-31 07:32:51 +01:00
|
|
|
|
|
|
|
fragmentDefinition ::
|
|
|
|
Schema.Subs ->
|
|
|
|
Fragments ->
|
|
|
|
Full.FragmentDefinition ->
|
2019-11-01 14:24:21 +01:00
|
|
|
Maybe Fragments
|
|
|
|
fragmentDefinition subs fragments (Full.FragmentDefinition name _tc _dirs sels) = do
|
|
|
|
emitted <- emitValue
|
|
|
|
newValue <- traverse extractField emitted
|
|
|
|
Just $ HashMap.insert name newValue fragments
|
2019-10-31 07:32:51 +01:00
|
|
|
where
|
2019-11-01 14:24:21 +01:00
|
|
|
emitValue :: Maybe (NonEmpty Core.Selection)
|
2019-10-31 07:32:51 +01:00
|
|
|
emitValue = do
|
2019-11-01 14:24:21 +01:00
|
|
|
selections <- traverse (selection subs fragments) sels
|
|
|
|
pure $ selections >>= either id pure
|
|
|
|
extractField :: Core.Selection -> Maybe Core.Field
|
|
|
|
extractField (Core.SelectionField field') = Just field'
|
|
|
|
extractField _ = Nothing -- Fragments within fragments are not supported yet
|
2017-01-29 22:44:03 +01:00
|
|
|
|
2019-11-01 14:24:21 +01:00
|
|
|
field :: Schema.Subs -> Fragments -> Full.Field -> Maybe Core.Field
|
2019-10-31 07:32:51 +01:00
|
|
|
field subs fragments (Full.Field a n args _dirs sels) =
|
2019-11-01 14:24:21 +01:00
|
|
|
Core.Field a n (fold $ argument subs `traverse` args)
|
|
|
|
<$> appendSelectionOpt subs fragments sels
|
2017-02-12 19:19:13 +01:00
|
|
|
|
|
|
|
argument :: Schema.Subs -> Full.Argument -> Maybe Core.Argument
|
|
|
|
argument subs (Full.Argument n v) = Core.Argument n <$> value subs v
|
|
|
|
|
|
|
|
value :: Schema.Subs -> Full.Value -> Maybe Core.Value
|
|
|
|
value subs (Full.ValueVariable n) = subs n
|
|
|
|
value _ (Full.ValueInt i) = pure $ Core.ValueInt i
|
|
|
|
value _ (Full.ValueFloat f) = pure $ Core.ValueFloat f
|
|
|
|
value _ (Full.ValueString x) = pure $ Core.ValueString x
|
|
|
|
value _ (Full.ValueBoolean b) = pure $ Core.ValueBoolean b
|
|
|
|
value _ Full.ValueNull = pure Core.ValueNull
|
|
|
|
value _ (Full.ValueEnum e) = pure $ Core.ValueEnum e
|
|
|
|
value subs (Full.ValueList l) =
|
|
|
|
Core.ValueList <$> traverse (value subs) l
|
|
|
|
value subs (Full.ValueObject o) =
|
|
|
|
Core.ValueObject <$> traverse (objectField subs) o
|
|
|
|
|
|
|
|
objectField :: Schema.Subs -> Full.ObjectField -> Maybe Core.ObjectField
|
|
|
|
objectField subs (Full.ObjectField n v) = Core.ObjectField n <$> value subs v
|
2017-01-29 22:44:03 +01:00
|
|
|
|
2019-11-01 14:24:21 +01:00
|
|
|
appendSelectionOpt ::
|
|
|
|
Traversable t =>
|
|
|
|
Schema.Subs ->
|
|
|
|
Fragments ->
|
|
|
|
t Full.Selection ->
|
|
|
|
Maybe [Core.Selection]
|
|
|
|
appendSelectionOpt subs fragments = foldr go (Just [])
|
|
|
|
where
|
|
|
|
go :: Full.Selection -> Maybe [Core.Selection] -> Maybe [Core.Selection]
|
|
|
|
go _ Nothing = Nothing
|
|
|
|
go sel (Just acc) = append acc <$> selection subs fragments sel
|
|
|
|
append acc (Left list) = NonEmpty.toList list <> acc
|
|
|
|
append acc (Right one) = one : acc
|
|
|
|
|
2019-10-19 10:00:25 +02:00
|
|
|
appendSelection ::
|
|
|
|
Schema.Subs ->
|
2019-10-31 07:32:51 +01:00
|
|
|
Fragments ->
|
2019-10-19 10:00:25 +02:00
|
|
|
NonEmpty Full.Selection ->
|
2019-11-01 14:24:21 +01:00
|
|
|
Maybe (NonEmpty Core.Selection)
|
|
|
|
appendSelection subs fragments fullSelection = do
|
|
|
|
coreSelection <-appendSelectionOpt subs fragments fullSelection
|
|
|
|
NonEmpty.nonEmpty coreSelection
|