2018-06-27 16:11:32 +03:00
|
|
|
module Hasura.RQL.DDL.Permission
|
|
|
|
( CreatePerm
|
2018-12-13 10:26:15 +03:00
|
|
|
, runCreatePerm
|
2018-06-27 16:11:32 +03:00
|
|
|
, purgePerm
|
|
|
|
, PermDef(..)
|
|
|
|
|
|
|
|
, InsPerm(..)
|
|
|
|
, InsPermDef
|
|
|
|
, CreateInsPerm
|
|
|
|
, buildInsPermInfo
|
|
|
|
|
|
|
|
, SelPerm(..)
|
|
|
|
, SelPermDef
|
|
|
|
, CreateSelPerm
|
|
|
|
, buildSelPermInfo
|
|
|
|
|
|
|
|
, UpdPerm(..)
|
|
|
|
, UpdPermDef
|
|
|
|
, CreateUpdPerm
|
|
|
|
, buildUpdPermInfo
|
|
|
|
|
|
|
|
, DelPerm(..)
|
|
|
|
, DelPermDef
|
|
|
|
, CreateDelPerm
|
|
|
|
, buildDelPermInfo
|
|
|
|
|
|
|
|
, IsPerm(..)
|
|
|
|
, addPermP2
|
2018-12-13 10:26:15 +03:00
|
|
|
|
|
|
|
, DropPerm
|
|
|
|
, runDropPerm
|
|
|
|
|
|
|
|
, SetPermComment(..)
|
|
|
|
, runSetPermComment
|
2019-08-17 00:35:22 +03:00
|
|
|
|
|
|
|
, fetchPermDef
|
2018-06-27 16:11:32 +03:00
|
|
|
) where
|
|
|
|
|
2020-08-27 19:36:39 +03:00
|
|
|
import Hasura.Prelude
|
|
|
|
|
2020-10-21 19:35:06 +03:00
|
|
|
import Data.Text.Extended
|
2019-03-18 19:22:21 +03:00
|
|
|
import Hasura.EncJSON
|
2019-12-15 16:28:23 +03:00
|
|
|
import Hasura.Incremental (Cacheable)
|
2018-06-27 16:11:32 +03:00
|
|
|
import Hasura.RQL.DDL.Permission.Internal
|
2019-10-18 11:29:47 +03:00
|
|
|
import Hasura.RQL.DML.Internal hiding (askPermInfo)
|
2018-12-15 19:10:29 +03:00
|
|
|
import Hasura.RQL.Types
|
2018-06-27 16:11:32 +03:00
|
|
|
import Hasura.SQL.Types
|
2020-10-21 19:35:06 +03:00
|
|
|
import Hasura.Session
|
2018-06-27 16:11:32 +03:00
|
|
|
|
2018-08-06 15:15:08 +03:00
|
|
|
import qualified Database.PG.Query as Q
|
2018-06-27 16:11:32 +03:00
|
|
|
|
2018-10-26 17:58:20 +03:00
|
|
|
import Data.Aeson
|
2018-06-27 16:11:32 +03:00
|
|
|
import Data.Aeson.Casing
|
|
|
|
import Data.Aeson.TH
|
2018-08-06 15:15:08 +03:00
|
|
|
import Language.Haskell.TH.Syntax (Lift)
|
2018-06-27 16:11:32 +03:00
|
|
|
|
2018-10-26 17:58:20 +03:00
|
|
|
import qualified Data.HashMap.Strict as HM
|
2018-08-06 15:15:08 +03:00
|
|
|
import qualified Data.HashSet as HS
|
|
|
|
import qualified Data.Text as T
|
2018-06-27 16:11:32 +03:00
|
|
|
|
2020-04-24 12:10:53 +03:00
|
|
|
{- Note [Backend only permissions]
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
As of writing this note, Hasura permission system is meant to be used by the
|
|
|
|
frontend. After introducing "Actions", the webhook handlers now can make GraphQL
|
|
|
|
mutations to the server with some backend logic. These mutations shouldn't be
|
|
|
|
exposed to frontend for any user since they'll bypass the business logic.
|
|
|
|
|
|
|
|
For example:-
|
|
|
|
|
|
|
|
We've a table named "user" and it has a "email" column. We need to validate the
|
|
|
|
email address. So we define an action "create_user" and it expects the same inputs
|
|
|
|
as "insert_user" mutation (generated by Hasura). Now, a role has permission for both
|
|
|
|
actions and insert operation on the table. If the insert permission is not marked
|
|
|
|
as "backend_only: true" then it visible to the frontend client along with "creat_user".
|
|
|
|
|
|
|
|
Backend only permissions adds an additional privilege to Hasura generated operations.
|
|
|
|
Those are accessable only if the request is made with `x-hasura-admin-secret`
|
|
|
|
(if authorization is configured), `x-hasura-use-backend-only-permissions`
|
|
|
|
(value must be set to "true"), `x-hasura-role` to identify the role and other
|
|
|
|
required session variables.
|
|
|
|
|
|
|
|
backend_only `x-hasura-admin-secret` `x-hasura-use-backend-only-permissions` Result
|
|
|
|
------------ --------------------- ------------------------------------- ------
|
|
|
|
FALSE ANY ANY Mutation is always visible
|
|
|
|
TRUE FALSE ANY Mutation is always hidden
|
|
|
|
TRUE TRUE (OR NOT-SET) FALSE Mutation is hidden
|
|
|
|
TRUE TRUE (OR NOT-SET) TRUE Mutation is shown
|
|
|
|
-}
|
|
|
|
|
2018-06-27 16:11:32 +03:00
|
|
|
-- Insert permission
|
|
|
|
data InsPerm
|
|
|
|
= InsPerm
|
2020-08-27 19:36:39 +03:00
|
|
|
{ ipCheck :: !BoolExp
|
|
|
|
, ipSet :: !(Maybe (ColumnValues Value))
|
|
|
|
, ipColumns :: !(Maybe PermColSpec)
|
2020-04-24 12:10:53 +03:00
|
|
|
, ipBackendOnly :: !(Maybe Bool) -- see Note [Backend only permissions]
|
2019-12-14 09:47:38 +03:00
|
|
|
} deriving (Show, Eq, Lift, Generic)
|
2019-12-15 16:28:23 +03:00
|
|
|
instance Cacheable InsPerm
|
2018-06-27 16:11:32 +03:00
|
|
|
$(deriveJSON (aesonDrop 2 snakeCase){omitNothingFields=True} ''InsPerm)
|
|
|
|
|
|
|
|
type InsPermDef = PermDef InsPerm
|
|
|
|
type CreateInsPerm = CreatePerm InsPerm
|
|
|
|
|
2019-02-11 15:45:30 +03:00
|
|
|
procSetObj
|
|
|
|
:: (QErrM m)
|
2019-12-15 19:07:08 +03:00
|
|
|
=> QualifiedTable
|
2020-10-22 23:42:27 +03:00
|
|
|
-> FieldInfoMap (FieldInfo 'Postgres)
|
2019-12-15 19:07:08 +03:00
|
|
|
-> Maybe (ColumnValues Value)
|
2020-10-22 23:42:27 +03:00
|
|
|
-> m (PreSetColsPartial 'Postgres, [Text], [SchemaDependency])
|
2019-12-15 19:07:08 +03:00
|
|
|
procSetObj tn fieldInfoMap mObj = do
|
2019-08-17 00:35:22 +03:00
|
|
|
(setColTups, deps) <- withPathK "set" $
|
|
|
|
fmap unzip $ forM (HM.toList setObj) $ \(pgCol, val) -> do
|
2019-02-11 15:45:30 +03:00
|
|
|
ty <- askPGType fieldInfoMap pgCol $
|
|
|
|
"column " <> pgCol <<> " not found in table " <>> tn
|
2019-08-11 18:34:38 +03:00
|
|
|
sqlExp <- valueParser (PGTypeScalar ty) val
|
2019-08-17 00:35:22 +03:00
|
|
|
let dep = mkColDep (getDepReason sqlExp) tn pgCol
|
|
|
|
return ((pgCol, sqlExp), dep)
|
|
|
|
return (HM.fromList setColTups, depHeaders, deps)
|
2019-02-11 15:45:30 +03:00
|
|
|
where
|
|
|
|
setObj = fromMaybe mempty mObj
|
|
|
|
depHeaders = getDepHeadersFromVal $ Object $
|
|
|
|
HM.fromList $ map (first getPGColTxt) $ HM.toList setObj
|
|
|
|
|
2019-08-17 00:35:22 +03:00
|
|
|
getDepReason = bool DRSessionVariable DROnType . isStaticValue
|
|
|
|
|
2018-06-27 16:11:32 +03:00
|
|
|
buildInsPermInfo
|
2019-11-20 21:21:30 +03:00
|
|
|
:: (QErrM m, TableCoreInfoRM m)
|
2019-12-15 19:07:08 +03:00
|
|
|
=> QualifiedTable
|
2020-10-22 23:42:27 +03:00
|
|
|
-> FieldInfoMap (FieldInfo 'Postgres)
|
2018-06-27 16:11:32 +03:00
|
|
|
-> PermDef InsPerm
|
2020-10-22 23:42:27 +03:00
|
|
|
-> m (WithDeps (InsPermInfo 'Postgres))
|
2020-04-24 12:10:53 +03:00
|
|
|
buildInsPermInfo tn fieldInfoMap (PermDef _rn (InsPerm checkCond set mCols mBackendOnly) _) =
|
2019-04-17 12:48:41 +03:00
|
|
|
withPathK "permission" $ do
|
2020-02-13 10:38:49 +03:00
|
|
|
(be, beDeps) <- withPathK "check" $ procBoolExp tn fieldInfoMap checkCond
|
2019-12-15 19:07:08 +03:00
|
|
|
(setColsSQL, setHdrs, setColDeps) <- procSetObj tn fieldInfoMap set
|
|
|
|
void $ withPathK "columns" $ indexedForM insCols $ \col ->
|
|
|
|
askPGType fieldInfoMap col ""
|
2020-02-13 10:38:49 +03:00
|
|
|
let fltrHeaders = getDependentHeaders checkCond
|
2019-12-15 19:07:08 +03:00
|
|
|
reqHdrs = fltrHeaders `union` setHdrs
|
|
|
|
insColDeps = map (mkColDep DRUntyped tn) insCols
|
|
|
|
deps = mkParentDep tn : beDeps ++ setColDeps ++ insColDeps
|
|
|
|
insColsWithoutPresets = insCols \\ HM.keys setColsSQL
|
2020-04-24 12:10:53 +03:00
|
|
|
return (InsPermInfo (HS.fromList insColsWithoutPresets) be setColsSQL backendOnly reqHdrs, deps)
|
2018-06-27 16:11:32 +03:00
|
|
|
where
|
2020-04-24 12:10:53 +03:00
|
|
|
backendOnly = fromMaybe False mBackendOnly
|
2019-09-19 07:47:36 +03:00
|
|
|
allCols = map pgiColumn $ getCols fieldInfoMap
|
2019-04-15 10:04:30 +03:00
|
|
|
insCols = fromMaybe allCols $ convColSpec fieldInfoMap <$> mCols
|
2018-06-27 16:11:32 +03:00
|
|
|
|
2020-10-22 23:42:27 +03:00
|
|
|
-- TODO this is a dirty hack, hardcoding permissions to postgres. When
|
|
|
|
-- implementing support for other backends, the type family 'PermInfo' probably
|
|
|
|
-- needs to be refactored.
|
|
|
|
type instance PermInfo InsPerm = InsPermInfo 'Postgres
|
2018-06-27 16:11:32 +03:00
|
|
|
|
|
|
|
instance IsPerm InsPerm where
|
|
|
|
|
|
|
|
permAccessor = PAInsert
|
|
|
|
|
|
|
|
buildPermInfo = buildInsPermInfo
|
|
|
|
|
|
|
|
-- Select constraint
|
|
|
|
data SelPerm
|
|
|
|
= SelPerm
|
2019-10-18 11:29:47 +03:00
|
|
|
{ spColumns :: !PermColSpec -- ^ Allowed columns
|
|
|
|
, spFilter :: !BoolExp -- ^ Filter expression
|
|
|
|
, spLimit :: !(Maybe Int) -- ^ Limit value
|
|
|
|
, spAllowAggregations :: !Bool -- ^ Allow aggregation
|
|
|
|
, spComputedFields :: ![ComputedFieldName] -- ^ Allowed computed fields
|
2019-12-14 09:47:38 +03:00
|
|
|
} deriving (Show, Eq, Lift, Generic)
|
2019-12-15 16:28:23 +03:00
|
|
|
instance Cacheable SelPerm
|
2019-10-18 11:29:47 +03:00
|
|
|
$(deriveToJSON (aesonDrop 2 snakeCase){omitNothingFields=True} ''SelPerm)
|
2018-06-27 16:11:32 +03:00
|
|
|
|
2019-10-18 11:29:47 +03:00
|
|
|
instance FromJSON SelPerm where
|
|
|
|
parseJSON = withObject "SelPerm" $ \o ->
|
|
|
|
SelPerm
|
|
|
|
<$> o .: "columns"
|
|
|
|
<*> o .: "filter"
|
|
|
|
<*> o .:? "limit"
|
|
|
|
<*> o .:? "allow_aggregations" .!= False
|
|
|
|
<*> o .:? "computed_fields" .!= []
|
2018-06-27 16:11:32 +03:00
|
|
|
|
|
|
|
buildSelPermInfo
|
2019-11-20 21:21:30 +03:00
|
|
|
:: (QErrM m, TableCoreInfoRM m)
|
2019-12-15 19:07:08 +03:00
|
|
|
=> QualifiedTable
|
2020-10-22 23:42:27 +03:00
|
|
|
-> FieldInfoMap (FieldInfo 'Postgres)
|
2018-06-27 16:11:32 +03:00
|
|
|
-> SelPerm
|
2020-10-22 23:42:27 +03:00
|
|
|
-> m (WithDeps (SelPermInfo 'Postgres))
|
2019-12-15 19:07:08 +03:00
|
|
|
buildSelPermInfo tn fieldInfoMap sp = withPathK "permission" $ do
|
2018-06-27 16:11:32 +03:00
|
|
|
let pgCols = convColSpec fieldInfoMap $ spColumns sp
|
|
|
|
|
|
|
|
(be, beDeps) <- withPathK "filter" $
|
2018-11-16 15:40:23 +03:00
|
|
|
procBoolExp tn fieldInfoMap $ spFilter sp
|
2018-06-27 16:11:32 +03:00
|
|
|
|
|
|
|
-- check if the columns exist
|
|
|
|
void $ withPathK "columns" $ indexedForM pgCols $ \pgCol ->
|
|
|
|
askPGType fieldInfoMap pgCol autoInferredErr
|
|
|
|
|
2019-10-18 11:29:47 +03:00
|
|
|
-- validate computed fields
|
2019-11-07 17:39:48 +03:00
|
|
|
scalarComputedFields <-
|
|
|
|
withPathK "computed_fields" $ indexedForM computedFields $ \fieldName -> do
|
|
|
|
computedFieldInfo <- askComputedFieldInfo fieldInfoMap fieldName
|
|
|
|
case _cfiReturnType computedFieldInfo of
|
|
|
|
CFRScalar _ -> pure fieldName
|
|
|
|
CFRSetofTable returnTable -> throw400 NotSupported $
|
|
|
|
"select permissions on computed field " <> fieldName
|
|
|
|
<<> " are auto-derived from the permissions on its returning table "
|
|
|
|
<> returnTable <<> " and cannot be specified manually"
|
2019-10-18 11:29:47 +03:00
|
|
|
|
2019-08-17 00:35:22 +03:00
|
|
|
let deps = mkParentDep tn : beDeps ++ map (mkColDep DRUntyped tn) pgCols
|
2019-11-07 17:39:48 +03:00
|
|
|
++ map (mkComputedFieldDep DRUntyped tn) scalarComputedFields
|
2018-06-27 16:11:32 +03:00
|
|
|
depHeaders = getDependentHeaders $ spFilter sp
|
2018-08-06 15:15:08 +03:00
|
|
|
mLimit = spLimit sp
|
|
|
|
|
|
|
|
withPathK "limit" $ mapM_ onlyPositiveInt mLimit
|
2018-06-27 16:11:32 +03:00
|
|
|
|
2019-10-18 11:29:47 +03:00
|
|
|
return ( SelPermInfo (HS.fromList pgCols) (HS.fromList computedFields)
|
2020-06-25 06:33:37 +03:00
|
|
|
be mLimit allowAgg depHeaders
|
2019-10-18 11:29:47 +03:00
|
|
|
, deps
|
|
|
|
)
|
2018-06-27 16:11:32 +03:00
|
|
|
where
|
2019-10-18 11:29:47 +03:00
|
|
|
allowAgg = spAllowAggregations sp
|
|
|
|
computedFields = spComputedFields sp
|
2018-06-27 16:11:32 +03:00
|
|
|
autoInferredErr = "permissions for relationships are automatically inferred"
|
|
|
|
|
|
|
|
type SelPermDef = PermDef SelPerm
|
|
|
|
type CreateSelPerm = CreatePerm SelPerm
|
|
|
|
|
2020-10-22 23:42:27 +03:00
|
|
|
-- TODO see TODO for PermInfo above.
|
|
|
|
type instance PermInfo SelPerm = SelPermInfo 'Postgres
|
2018-06-27 16:11:32 +03:00
|
|
|
|
|
|
|
instance IsPerm SelPerm where
|
|
|
|
|
|
|
|
permAccessor = PASelect
|
|
|
|
|
2019-12-15 19:07:08 +03:00
|
|
|
buildPermInfo tn fieldInfoMap (PermDef _ a _) =
|
|
|
|
buildSelPermInfo tn fieldInfoMap a
|
2018-06-27 16:11:32 +03:00
|
|
|
|
|
|
|
-- Update constraint
|
|
|
|
data UpdPerm
|
|
|
|
= UpdPerm
|
|
|
|
{ ucColumns :: !PermColSpec -- Allowed columns
|
2019-12-11 02:20:55 +03:00
|
|
|
, ucSet :: !(Maybe (ColumnValues Value)) -- Preset columns
|
2020-02-13 10:38:49 +03:00
|
|
|
, ucFilter :: !BoolExp -- Filter expression (applied before update)
|
2020-04-24 12:10:53 +03:00
|
|
|
, ucCheck :: !(Maybe BoolExp)
|
2020-02-13 10:38:49 +03:00
|
|
|
-- ^ Check expression, which must be true after update.
|
|
|
|
-- This is optional because we don't want to break the v1 API
|
|
|
|
-- but Nothing should be equivalent to the expression which always
|
|
|
|
-- returns true.
|
2019-12-14 09:47:38 +03:00
|
|
|
} deriving (Show, Eq, Lift, Generic)
|
2019-12-15 16:28:23 +03:00
|
|
|
instance Cacheable UpdPerm
|
2018-06-27 16:11:32 +03:00
|
|
|
$(deriveJSON (aesonDrop 2 snakeCase){omitNothingFields=True} ''UpdPerm)
|
|
|
|
|
|
|
|
type UpdPermDef = PermDef UpdPerm
|
|
|
|
type CreateUpdPerm = CreatePerm UpdPerm
|
|
|
|
|
2019-12-14 09:47:38 +03:00
|
|
|
|
2018-06-27 16:11:32 +03:00
|
|
|
buildUpdPermInfo
|
2019-11-20 21:21:30 +03:00
|
|
|
:: (QErrM m, TableCoreInfoRM m)
|
2019-12-15 19:07:08 +03:00
|
|
|
=> QualifiedTable
|
2020-10-22 23:42:27 +03:00
|
|
|
-> FieldInfoMap (FieldInfo 'Postgres)
|
2018-06-27 16:11:32 +03:00
|
|
|
-> UpdPerm
|
2020-10-22 23:42:27 +03:00
|
|
|
-> m (WithDeps (UpdPermInfo 'Postgres))
|
2020-02-13 10:38:49 +03:00
|
|
|
buildUpdPermInfo tn fieldInfoMap (UpdPerm colSpec set fltr check) = do
|
2018-06-27 16:11:32 +03:00
|
|
|
(be, beDeps) <- withPathK "filter" $
|
2018-11-16 15:40:23 +03:00
|
|
|
procBoolExp tn fieldInfoMap fltr
|
2020-04-24 12:10:53 +03:00
|
|
|
|
2020-02-13 10:38:49 +03:00
|
|
|
checkExpr <- traverse (withPathK "check" . procBoolExp tn fieldInfoMap) check
|
2018-06-27 16:11:32 +03:00
|
|
|
|
2019-12-15 19:07:08 +03:00
|
|
|
(setColsSQL, setHeaders, setColDeps) <- procSetObj tn fieldInfoMap set
|
2019-02-11 15:45:30 +03:00
|
|
|
|
2018-06-27 16:11:32 +03:00
|
|
|
-- check if the columns exist
|
2019-06-21 14:04:21 +03:00
|
|
|
void $ withPathK "columns" $ indexedForM updCols $ \updCol ->
|
2018-06-27 16:11:32 +03:00
|
|
|
askPGType fieldInfoMap updCol relInUpdErr
|
|
|
|
|
2019-08-17 00:35:22 +03:00
|
|
|
let updColDeps = map (mkColDep DRUntyped tn) updCols
|
2020-02-13 10:38:49 +03:00
|
|
|
deps = mkParentDep tn : beDeps ++ maybe [] snd checkExpr ++ updColDeps ++ setColDeps
|
2018-06-27 16:11:32 +03:00
|
|
|
depHeaders = getDependentHeaders fltr
|
2019-02-11 15:45:30 +03:00
|
|
|
reqHeaders = depHeaders `union` setHeaders
|
|
|
|
updColsWithoutPreSets = updCols \\ HM.keys setColsSQL
|
2018-06-27 16:11:32 +03:00
|
|
|
|
2020-02-13 10:38:49 +03:00
|
|
|
return (UpdPermInfo (HS.fromList updColsWithoutPreSets) tn be (fst <$> checkExpr) setColsSQL reqHeaders, deps)
|
2018-06-27 16:11:32 +03:00
|
|
|
|
|
|
|
where
|
|
|
|
updCols = convColSpec fieldInfoMap colSpec
|
|
|
|
relInUpdErr = "relationships can't be used in update"
|
|
|
|
|
2020-10-22 23:42:27 +03:00
|
|
|
-- TODO see TODO for PermInfo above
|
|
|
|
type instance PermInfo UpdPerm = UpdPermInfo 'Postgres
|
2018-06-27 16:11:32 +03:00
|
|
|
|
|
|
|
instance IsPerm UpdPerm where
|
|
|
|
|
|
|
|
permAccessor = PAUpdate
|
|
|
|
|
2019-12-15 19:07:08 +03:00
|
|
|
buildPermInfo tn fieldInfoMap (PermDef _ a _) =
|
|
|
|
buildUpdPermInfo tn fieldInfoMap a
|
2018-06-27 16:11:32 +03:00
|
|
|
|
|
|
|
-- Delete permission
|
|
|
|
data DelPerm
|
|
|
|
= DelPerm { dcFilter :: !BoolExp }
|
2019-12-14 09:47:38 +03:00
|
|
|
deriving (Show, Eq, Lift, Generic)
|
2019-12-15 16:28:23 +03:00
|
|
|
instance Cacheable DelPerm
|
2018-06-27 16:11:32 +03:00
|
|
|
$(deriveJSON (aesonDrop 2 snakeCase){omitNothingFields=True} ''DelPerm)
|
|
|
|
|
|
|
|
type DelPermDef = PermDef DelPerm
|
|
|
|
type CreateDelPerm = CreatePerm DelPerm
|
|
|
|
|
|
|
|
buildDelPermInfo
|
2019-11-20 21:21:30 +03:00
|
|
|
:: (QErrM m, TableCoreInfoRM m)
|
2019-12-15 19:07:08 +03:00
|
|
|
=> QualifiedTable
|
2020-10-22 23:42:27 +03:00
|
|
|
-> FieldInfoMap (FieldInfo 'Postgres)
|
2018-06-27 16:11:32 +03:00
|
|
|
-> DelPerm
|
2020-10-22 23:42:27 +03:00
|
|
|
-> m (WithDeps (DelPermInfo 'Postgres))
|
2019-12-15 19:07:08 +03:00
|
|
|
buildDelPermInfo tn fieldInfoMap (DelPerm fltr) = do
|
2018-06-27 16:11:32 +03:00
|
|
|
(be, beDeps) <- withPathK "filter" $
|
2018-11-16 15:40:23 +03:00
|
|
|
procBoolExp tn fieldInfoMap fltr
|
2018-06-27 16:11:32 +03:00
|
|
|
let deps = mkParentDep tn : beDeps
|
|
|
|
depHeaders = getDependentHeaders fltr
|
2018-11-16 15:40:23 +03:00
|
|
|
return (DelPermInfo tn be depHeaders, deps)
|
2018-06-27 16:11:32 +03:00
|
|
|
|
2020-10-22 23:42:27 +03:00
|
|
|
-- TODO see TODO for PermInfo above
|
|
|
|
type instance PermInfo DelPerm = DelPermInfo 'Postgres
|
2018-06-27 16:11:32 +03:00
|
|
|
|
|
|
|
instance IsPerm DelPerm where
|
|
|
|
|
|
|
|
permAccessor = PADelete
|
|
|
|
|
2019-12-15 19:07:08 +03:00
|
|
|
buildPermInfo tn fieldInfoMap (PermDef _ a _) =
|
|
|
|
buildDelPermInfo tn fieldInfoMap a
|
2018-06-27 16:11:32 +03:00
|
|
|
|
|
|
|
data SetPermComment
|
|
|
|
= SetPermComment
|
|
|
|
{ apTable :: !QualifiedTable
|
|
|
|
, apRole :: !RoleName
|
|
|
|
, apPermission :: !PermType
|
|
|
|
, apComment :: !(Maybe T.Text)
|
|
|
|
} deriving (Show, Eq, Lift)
|
|
|
|
|
|
|
|
$(deriveJSON (aesonDrop 2 snakeCase) ''SetPermComment)
|
|
|
|
|
2018-12-13 10:26:15 +03:00
|
|
|
setPermCommentP1 :: (UserInfoM m, QErrM m, CacheRM m) => SetPermComment -> m ()
|
2018-06-27 16:11:32 +03:00
|
|
|
setPermCommentP1 (SetPermComment qt rn pt _) = do
|
|
|
|
tabInfo <- askTabInfo qt
|
|
|
|
action tabInfo
|
|
|
|
where
|
|
|
|
action tabInfo = case pt of
|
|
|
|
PTInsert -> assertPermDefined rn PAInsert tabInfo
|
|
|
|
PTSelect -> assertPermDefined rn PASelect tabInfo
|
|
|
|
PTUpdate -> assertPermDefined rn PAUpdate tabInfo
|
|
|
|
PTDelete -> assertPermDefined rn PADelete tabInfo
|
|
|
|
|
2019-03-18 19:22:21 +03:00
|
|
|
setPermCommentP2 :: (QErrM m, MonadTx m) => SetPermComment -> m EncJSON
|
2018-06-27 16:11:32 +03:00
|
|
|
setPermCommentP2 apc = do
|
|
|
|
liftTx $ setPermCommentTx apc
|
|
|
|
return successMsg
|
|
|
|
|
2018-12-13 10:26:15 +03:00
|
|
|
runSetPermComment
|
|
|
|
:: (QErrM m, CacheRM m, MonadTx m, UserInfoM m)
|
2019-03-18 19:22:21 +03:00
|
|
|
=> SetPermComment -> m EncJSON
|
2018-12-13 10:26:15 +03:00
|
|
|
runSetPermComment defn = do
|
|
|
|
setPermCommentP1 defn
|
|
|
|
setPermCommentP2 defn
|
2018-06-27 16:11:32 +03:00
|
|
|
|
|
|
|
setPermCommentTx
|
|
|
|
:: SetPermComment
|
|
|
|
-> Q.TxE QErr ()
|
2019-01-25 06:31:54 +03:00
|
|
|
setPermCommentTx (SetPermComment (QualifiedObject sn tn) rn pt comment) =
|
2018-06-27 16:11:32 +03:00
|
|
|
Q.unitQE defaultTxErrorHandler [Q.sql|
|
|
|
|
UPDATE hdb_catalog.hdb_permission
|
|
|
|
SET comment = $1
|
|
|
|
WHERE table_schema = $2
|
|
|
|
AND table_name = $3
|
|
|
|
AND role_name = $4
|
|
|
|
AND perm_type = $5
|
|
|
|
|] (comment, sn, tn, rn, permTypeToCode pt) True
|
|
|
|
|
2020-01-16 07:53:28 +03:00
|
|
|
purgePerm :: MonadTx m => QualifiedTable -> RoleName -> PermType -> m ()
|
2020-04-24 12:10:53 +03:00
|
|
|
purgePerm qt rn pt =
|
2020-01-16 07:53:28 +03:00
|
|
|
case pt of
|
|
|
|
PTInsert -> dropPermP2 @InsPerm dp
|
|
|
|
PTSelect -> dropPermP2 @SelPerm dp
|
|
|
|
PTUpdate -> dropPermP2 @UpdPerm dp
|
|
|
|
PTDelete -> dropPermP2 @DelPerm dp
|
2018-06-27 16:11:32 +03:00
|
|
|
where
|
|
|
|
dp :: DropPerm a
|
|
|
|
dp = DropPerm qt rn
|
2019-08-17 00:35:22 +03:00
|
|
|
|
|
|
|
fetchPermDef
|
|
|
|
:: QualifiedTable
|
|
|
|
-> RoleName
|
|
|
|
-> PermType
|
|
|
|
-> Q.TxE QErr (Value, Maybe T.Text)
|
|
|
|
fetchPermDef (QualifiedObject sn tn) rn pt =
|
|
|
|
(first Q.getAltJ . Q.getRow) <$> Q.withQE defaultTxErrorHandler
|
|
|
|
[Q.sql|
|
|
|
|
SELECT perm_def::json, comment
|
|
|
|
FROM hdb_catalog.hdb_permission
|
|
|
|
WHERE table_schema = $1
|
|
|
|
AND table_name = $2
|
|
|
|
AND role_name = $3
|
|
|
|
AND perm_type = $4
|
|
|
|
|] (sn, tn, rn, permTypeToCode pt) True
|