-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
validation: declare available permissions
- Loading branch information
Showing
4 changed files
with
106 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
92 changes: 92 additions & 0 deletions
92
...le_validation/backend/gn_module_validation/migrations/df93a68242ee_declare_permissions.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
"""declare permissions | ||
Revision ID: df93a68242ee | ||
Revises: 85efc9bb5a47 | ||
Create Date: 2023-05-17 15:15:38.833529 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = "df93a68242ee" | ||
down_revision = None | ||
branch_labels = ("validation",) | ||
depends_on = ("f051b88a57fd",) | ||
|
||
|
||
def upgrade(): | ||
op.execute( | ||
""" | ||
INSERT INTO | ||
gn_permissions.t_permissions_available ( | ||
id_module, | ||
id_object, | ||
id_action, | ||
label, | ||
scope_filter | ||
) | ||
SELECT | ||
m.id_module, | ||
o.id_object, | ||
a.id_action, | ||
v.label, | ||
v.scope_filter | ||
FROM | ||
( | ||
VALUES | ||
('VALIDATION', 'ALL', 'C', True, 'Valider les observations') | ||
) AS v (module_code, object_code, action_code, scope_filter, label) | ||
JOIN | ||
gn_commons.t_modules m ON m.module_code = v.module_code | ||
JOIN | ||
gn_permissions.t_objects o ON o.code_object = v.object_code | ||
JOIN | ||
gn_permissions.bib_actions a ON a.code_action = v.action_code | ||
""" | ||
) | ||
op.execute( | ||
""" | ||
WITH bad_permissions AS ( | ||
SELECT | ||
p.id_permission | ||
FROM | ||
gn_permissions.t_permissions p | ||
JOIN gn_commons.t_modules m | ||
USING (id_module) | ||
WHERE | ||
m.module_code = 'VALIDATION' | ||
EXCEPT | ||
SELECT | ||
p.id_permission | ||
FROM | ||
gn_permissions.t_permissions p | ||
JOIN gn_permissions.t_permissions_available pa ON | ||
(p.id_module = pa.id_module | ||
AND p.id_object = pa.id_object | ||
AND p.id_action = pa.id_action) | ||
) | ||
DELETE | ||
FROM | ||
gn_permissions.t_permissions p | ||
USING bad_permissions bp | ||
WHERE | ||
bp.id_permission = p.id_permission; | ||
""" | ||
) | ||
|
||
|
||
def downgrade(): | ||
op.execute( | ||
""" | ||
DELETE FROM | ||
gn_permissions.t_permissions_available pa | ||
USING | ||
gn_commons.t_modules m | ||
WHERE | ||
pa.id_module = m.id_module | ||
AND | ||
module_code = 'VALIDATION' | ||
""" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters