From: Jeff Davis Date: Thu, 30 Apr 2020 17:36:44 +0000 (-0700) Subject: LP#1873048: add scoped retrieve perms for booking resource types and resources X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f8fb03e50e04f6911729a4f5c716a0238a4cf1a3;p=Evergreen.git LP#1873048: add scoped retrieve perms for booking resource types and resources In the XUL client, when selecting a resource type, the list was limited by owning library. But in the web client, the list would show all resource types across all libraries. This commit addresses that regression by adding a new VIEW_BOOKING_RESOURCE_TYPE permission with context_field in the IDL. That way, users only see resource types owned by org units where they have the permission. While we're at it, a new VIEW_BOOKING_RESOURCE perm is also added for resources. Signed-off-by: Jeff Davis Signed-off-by: Jane Sandberg Signed-off-by: Chris Sharp --- diff --git a/Open-ILS/examples/fm_IDL.xml b/Open-ILS/examples/fm_IDL.xml index cc7f2717ca..856c2128ca 100644 --- a/Open-ILS/examples/fm_IDL.xml +++ b/Open-ILS/examples/fm_IDL.xml @@ -5010,7 +5010,7 @@ SELECT usr, - + @@ -5042,7 +5042,7 @@ SELECT usr, - + diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index 16d97c11a5..a9c1add110 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -1933,7 +1933,11 @@ INSERT INTO permission.perm_list ( id, code, description ) VALUES ( 618, 'CREATE_PRECAT', oils_i18n_gettext(618, 'Allows a user to create a pre-catalogued copy', 'ppl', 'description')), ( 619, 'EDIT_SELF_IN_CLIENT', oils_i18n_gettext(619, - 'Allow a user to edit their own account in the staff client', 'ppl', 'description')) + 'Allow a user to edit their own account in the staff client', 'ppl', 'description')), + ( 621, 'VIEW_BOOKING_RESOURCE_TYPE', oils_i18n_gettext(621, + 'View booking resource types', 'ppl', 'description')), + ( 622, 'VIEW_BOOKING_RESOURCE', oils_i18n_gettext(622, + 'View booking resources', 'ppl', 'description')) ; @@ -2367,6 +2371,8 @@ INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) 'UPDATE_PAYMENT_NOTE', 'UPDATE_PICKUP_LIB FROM_TRANSIT', 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF', + 'VIEW_BOOKING_RESOURCE', + 'VIEW_BOOKING_RESOURCE_TYPE', 'VIEW_GROUP_PENALTY_THRESHOLD', 'VIEW_STANDING_PENALTY', 'VOID_BILLING', @@ -2527,6 +2533,8 @@ INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable) 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF', 'UPDATE_PICKUP_LIB_FROM_TRANSIT', 'UPDATE_USER', + 'VIEW_BOOKING_RESOURCE', + 'VIEW_BOOKING_RESOURCE_TYPE', 'VIEW_REPORT_OUTPUT', 'VIEW_STANDING_PENALTY', 'VOID_BILLING', diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.permission.booking_resource.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.permission.booking_resource.sql new file mode 100644 index 0000000000..2bbdce6c6c --- /dev/null +++ b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.permission.booking_resource.sql @@ -0,0 +1,11 @@ +BEGIN; +SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version); + +INSERT INTO permission.perm_list ( id, code, description ) VALUES + ( 621, 'VIEW_BOOKING_RESOURCE_TYPE', oils_i18n_gettext(621, + 'View booking resource types', 'ppl', 'description')), + ( 622, 'VIEW_BOOKING_RESOURCE', oils_i18n_gettext(622, + 'View booking resources', 'ppl', 'description')) +; + +COMMIT;