mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
## Description Thanks to #1664, the Metadata API types no longer require a `ToJSON` instance. This PR follows up with a cleanup of the types of the arguments to the metadata API: - whenever possible, it moves those argument types to where they're used (RQL.DDL.*) - it removes all unrequired instances (mostly `ToJSON`) This PR does not attempt to do it for _all_ such argument types. For some of the metadata operations, the type used to describe the argument to the API and used to represent the value in the metadata are one and the same (like for `CreateEndpoint`). Sometimes, the two types are intertwined in complex ways (`RemoteRelationship` and `RemoteRelationshipDef`). In the spirit of only doing uncontroversial cleaning work, this PR only moves types that are not used outside of RQL.DDL. Furthermore, this is a small step towards separating the different types all jumbled together in RQL.Types. ## Notes This PR also improves several `FromJSON` instances to make use of `withObject`, and to use a human readable string instead of a type name in error messages whenever possible. For instance: - before: `expected Object for Object, but encountered X` after: `expected Object for add computed field, but encountered X` - before: `Expecting an object for update query` after: `expected Object for update query, but encountered X` This PR also renames `CreateFunctionPermission` to `FunctionPermissionArgument`, to remove the quite surprising `type DropFunctionPermission = CreateFunctionPermission`. This PR also deletes some dead code, mostly in RQL.DML. This PR also moves a PG-specific source resolving function from DDL.Schema.Source to the only place where it is used: App.hs. https://github.com/hasura/graphql-engine-mono/pull/1844 GitOrigin-RevId: a594521194bb7fe6a111b02a9e099896f9fed59c
131 lines
4.0 KiB
Haskell
131 lines
4.0 KiB
Haskell
module Hasura.Backends.BigQuery.DDL
|
|
( buildComputedFieldInfo
|
|
, fetchAndValidateEnumValues
|
|
, createTableEventTrigger
|
|
, buildEventTriggerInfo
|
|
, buildFunctionInfo
|
|
, updateColumnInEventTrigger
|
|
, parseBoolExpOperations
|
|
, parseCollectableType
|
|
, module M
|
|
)
|
|
where
|
|
|
|
import Hasura.Prelude
|
|
|
|
import qualified Data.Environment as Env
|
|
|
|
import Data.Aeson
|
|
|
|
import qualified Hasura.Backends.BigQuery.Types as BigQuery
|
|
|
|
import Hasura.Backends.BigQuery.DDL.BoolExp
|
|
import Hasura.Backends.BigQuery.DDL.Source as M
|
|
import Hasura.Base.Error
|
|
import Hasura.RQL.IR.BoolExp
|
|
import Hasura.RQL.Types.Backend
|
|
import Hasura.RQL.Types.Column
|
|
import Hasura.RQL.Types.Common
|
|
import Hasura.RQL.Types.ComputedField
|
|
import Hasura.RQL.Types.EventTrigger
|
|
import Hasura.RQL.Types.Function
|
|
import Hasura.RQL.Types.SchemaCache
|
|
import Hasura.RQL.Types.Table
|
|
import Hasura.SQL.Backend
|
|
import Hasura.SQL.Types
|
|
import Hasura.Server.Types
|
|
import Hasura.Server.Utils
|
|
import Hasura.Session
|
|
|
|
|
|
buildComputedFieldInfo
|
|
:: (MonadError QErr m)
|
|
=> HashSet (TableName 'BigQuery)
|
|
-> TableName 'BigQuery
|
|
-> ComputedFieldName
|
|
-> ComputedFieldDefinition 'BigQuery
|
|
-> RawFunctionInfo 'BigQuery
|
|
-> Maybe Text
|
|
-> m (ComputedFieldInfo 'BigQuery)
|
|
buildComputedFieldInfo _ _ _ _ _ _ =
|
|
throw400 NotSupported "Computed fields aren't supported for BigQuery sources"
|
|
|
|
fetchAndValidateEnumValues
|
|
:: (Monad m)
|
|
=> SourceConfig 'BigQuery
|
|
-> TableName 'BigQuery
|
|
-> Maybe (PrimaryKey 'BigQuery (RawColumnInfo 'BigQuery))
|
|
-> [RawColumnInfo 'BigQuery]
|
|
-> m (Either QErr EnumValues)
|
|
fetchAndValidateEnumValues _ _ _ _ = runExceptT $
|
|
throw400 NotSupported "Enum tables are not supported for BigQuery sources"
|
|
|
|
createTableEventTrigger
|
|
:: (Monad m)
|
|
=> ServerConfigCtx
|
|
-> SourceConfig 'BigQuery
|
|
-> TableName 'BigQuery
|
|
-> [ColumnInfo 'BigQuery]
|
|
-> TriggerName
|
|
-> TriggerOpsDef
|
|
-> m (Either QErr ())
|
|
createTableEventTrigger _ _ _ _ _ _ = runExceptT $
|
|
throw400 NotSupported "Cannot create table event triggers in BigQuery sources"
|
|
|
|
buildEventTriggerInfo
|
|
:: MonadError QErr m
|
|
=> Env.Environment
|
|
-> SourceName
|
|
-> TableName 'BigQuery
|
|
-> EventTriggerConf
|
|
-> m (EventTriggerInfo, [SchemaDependency])
|
|
buildEventTriggerInfo _ _ _ _ =
|
|
throw400 NotSupported "Table event triggers are not supported for BigQuery sources"
|
|
|
|
buildFunctionInfo
|
|
:: (MonadError QErr m)
|
|
=> SourceName
|
|
-> FunctionName 'BigQuery
|
|
-> SystemDefined
|
|
-> FunctionConfig
|
|
-> [FunctionPermissionMetadata]
|
|
-> RawFunctionInfo 'BigQuery
|
|
-> m (FunctionInfo 'BigQuery, SchemaDependency)
|
|
buildFunctionInfo _ _ _ _ _ _ =
|
|
throw400 NotSupported "SQL Functions are not supported for BigQuery source"
|
|
|
|
updateColumnInEventTrigger
|
|
:: TableName 'BigQuery
|
|
-> Column 'BigQuery
|
|
-> Column 'BigQuery
|
|
-> TableName 'BigQuery
|
|
-> EventTriggerConf
|
|
-> EventTriggerConf
|
|
updateColumnInEventTrigger _ _ _ _ = id
|
|
|
|
parseCollectableType
|
|
:: (MonadError QErr m)
|
|
=> CollectableType (ColumnType 'BigQuery)
|
|
-> Value
|
|
-> m (PartialSQLExp 'BigQuery)
|
|
parseCollectableType collectableType = \case
|
|
String t
|
|
| isSessionVariable t -> pure $ mkTypedSessionVar collectableType $ mkSessionVariable t
|
|
| isReqUserId t -> pure $ mkTypedSessionVar collectableType userIdHeader
|
|
val -> case collectableType of
|
|
CollectableTypeScalar scalarType ->
|
|
PSESQLExp . BigQuery.ValueExpression <$> parseScalarValueColumnType scalarType val
|
|
CollectableTypeArray _ ->
|
|
throw400 NotSupported "Array types are not supported in BigQuery backend"
|
|
|
|
mkTypedSessionVar
|
|
:: CollectableType (ColumnType 'BigQuery)
|
|
-> SessionVariable -> PartialSQLExp 'BigQuery
|
|
mkTypedSessionVar columnType =
|
|
PSESessVar (msColumnTypeToScalarType <$> columnType)
|
|
|
|
msColumnTypeToScalarType :: ColumnType 'BigQuery -> ScalarType 'BigQuery
|
|
msColumnTypeToScalarType = \case
|
|
ColumnScalar scalarType -> scalarType
|
|
ColumnEnumReference _ -> BigQuery.StringScalarType
|