graphql-engine/server/src-lib/Hasura/RQL/DDL/Relationship/Rename.hs
Rakesh Emmadi 6d92e4f9db save permissions, relationships and collections in catalog with 'is_system_defined' explicitly (#3165)
* save permissions, relationships and collections in catalog with 'is_system_defined'
* Use common stanzas in the .cabal file
* Refactor migration code into lib instead of exe
* Add new server test suite that exercises migrations
* Make graphql-engine clean succeed even if the schema does not exist
2019-10-21 11:01:05 -05:00

58 lines
1.6 KiB
Haskell

module Hasura.RQL.DDL.Relationship.Rename
(runRenameRel)
where
import Hasura.EncJSON
import Hasura.Prelude
import Hasura.RQL.DDL.Relationship (validateRelP1)
import Hasura.RQL.DDL.Relationship.Types
import Hasura.RQL.DDL.Schema (buildSchemaCache,
renameRelInCatalog,
withNewInconsistentObjsCheck)
import Hasura.RQL.Types
import Hasura.SQL.Types
import qualified Data.HashMap.Strict as HM
renameRelP2
:: ( QErrM m
, MonadTx m
, CacheRWM m
, MonadIO m
, HasHttpManager m
, HasSQLGenCtx m
)
=> QualifiedTable -> RelName -> RelInfo -> m ()
renameRelP2 qt newRN relInfo = withNewInconsistentObjsCheck $ do
tabInfo <- askTabInfo qt
-- check for conflicts in fieldInfoMap
case HM.lookup (fromRel newRN) $ _tiFieldInfoMap tabInfo of
Nothing -> return ()
Just _ ->
throw400 AlreadyExists $ "cannot rename relationship " <> oldRN
<<> " to " <> newRN <<> " in table " <> qt <<>
" as a column/relationship with the name already exists"
-- update catalog
renameRelInCatalog qt oldRN newRN
-- update schema cache
buildSchemaCache
where
oldRN = riName relInfo
runRenameRel
:: ( QErrM m
, CacheRWM m
, MonadTx m
, UserInfoM m
, MonadIO m
, HasHttpManager m
, HasSQLGenCtx m
)
=> RenameRel -> m EncJSON
runRenameRel defn = do
ri <- validateRelP1 qt rn
renameRelP2 qt newRN ri
return successMsg
where
RenameRel qt rn newRN = defn