Compare commits

..

No commits in common. "d522b1cb42b4758f282806172d37215e51456115" and "d7643f0f25f9cf97b500cac3c94cb96477765bd6" have entirely different histories.

5 changed files with 16 additions and 15 deletions

View File

@ -1,6 +1,6 @@
-- just a permanent playground to explore optimization of the central recursive CTE query for RBAC
select * from hs_statistics_v;
select * from hs_statistics_view;
-- ========================================================

View File

@ -12,7 +12,7 @@ import java.util.List;
import java.util.UUID;
@Entity
@Table(schema = "rbac", name = "grants_ev")
@Table(name = "rbacgrants_ev")
@Getter
@Setter
@Builder

View File

@ -8,7 +8,7 @@ import jakarta.persistence.*;
import java.util.UUID;
@Entity
@Table(schema = "rbac", name = "grants_rv")
@Table(name = "rbacgrants_rv")
@IdClass(RbacGrantId.class)
@Getter
@Setter

View File

@ -52,8 +52,8 @@ grant all privileges on rbac.role_rv to ${HSADMINNG_POSTGRES_RESTRICTED_USERNAME
Creates a view to the grants table with additional columns
for easier human readability.
*/
drop view if exists rbac.grants_ev;
create or replace view rbac.grants_ev as
drop view if exists rbacgrants_ev;
create or replace view rbacgrants_ev as
-- @formatter:off
select x.grantUuid as uuid,
x.grantedByTriggerOf as grantedByTriggerOf,
@ -112,7 +112,8 @@ create or replace view rbac.grants_ev as
Creates a view to the grants table with row-level limitation
based on the direct grants of the current user.
*/
create or replace view rbac.grants_rv as
drop view if exists rbacgrants_rv;
create or replace view rbacgrants_rv as
-- @formatter:off
select o.objectTable || '#' || base.findIdNameByObjectUuid(o.objectTable, o.uuid) || ':' || r.roletype as grantedByRoleIdName,
g.objectTable || '#' || g.objectIdName || ':' || g.roletype as grantedRoleIdName, g.userName, g.assumed,
@ -141,28 +142,28 @@ grant all privileges on rbac.role_rv to ${HSADMINNG_POSTGRES_RESTRICTED_USERNAME
-- ----------------------------------------------------------------------------
/**
Instead of insert trigger function for rbac.grants_rv.
Instead of insert trigger function for RbacGrants_RV.
*/
create or replace function rbac.insert_grant_tf()
returns trigger
language plpgsql as $$
declare
newGrant rbac.grants_rv;
newGrant RbacGrants_RV;
begin
call rbac.grantRoleToSubject(rbac.assumedRoleUuid(), new.grantedRoleUuid, new.subjectUuid, new.assumed);
select grv.*
from rbac.grants_rv grv
from RbacGrants_RV grv
where grv.subjectUuid=new.subjectUuid and grv.grantedRoleUuid=new.grantedRoleUuid
into newGrant;
return newGrant;
end; $$;
/*
Creates an instead of insert trigger for the rbac.grants_rv view.
Creates an instead of insert trigger for the RbacGrants_rv view.
*/
create trigger insert_grant_tg
instead of insert
on rbac.grants_rv
on RbacGrants_rv
for each row
execute function rbac.insert_grant_tf();
--/
@ -173,7 +174,7 @@ execute function rbac.insert_grant_tf();
-- ----------------------------------------------------------------------------
/**
Instead of delete trigger function for rbac.grants_rv.
Instead of delete trigger function for RbacGrants_RV.
Checks if the current subject or assumed role have the permission to revoke the grant.
*/
@ -186,11 +187,11 @@ begin
end; $$;
/*
Creates an instead of delete trigger for the rbac.grants_rv view.
Creates an instead of delete trigger for the RbacGrants_rv view.
*/
create trigger delete_grant_tg
instead of delete
on rbac.grants_rv
on RbacGrants_rv
for each row
execute function rbac.delete_grant_tf();
--/

View File

@ -3,7 +3,7 @@
-- ============================================================================
--changeset hs-global-object-statistics:1 endDelimiter:--//
-- ----------------------------------------------------------------------------
CREATE VIEW hs_statistics_v AS
CREATE VIEW hs_statistics_view AS
select *
from (select count, "table" as "rbac-table", '' as "hs-table", '' as "type"
from rbac.statistics_v