Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-pylib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-pylib
Commits
1e657ebb
Commit
1e657ebb
authored
2 years ago
by
florian
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Add curator role permissions script
parent
ca867a3d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!71
Release 0.9
,
!64
F permission docs
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+2
-1
2 additions, 1 deletion
.gitignore
src/doc/gallery/curator_permissions.py
+96
-0
96 additions, 0 deletions
src/doc/gallery/curator_permissions.py
with
98 additions
and
1 deletion
.gitignore
+
2
−
1
View file @
1e657ebb
...
...
@@ -15,4 +15,5 @@ build/
src
/
caosdb
/
version
.
py
# documentation
_
apidoc
\ No newline at end of file
_
apidoc
*~
This diff is collapsed.
Click to expand it.
src/doc/gallery/curator_permissions.py
0 → 100644
+
96
−
0
View file @
1e657ebb
#!/usr/bin/env python3
# encoding: utf-8
#
# This file is a part of the CaosDB Project.
#
# Copyright (C) 2022 Indiscale GmbH <info@indiscale.com>
# Copyright (C) 2022 Florian Spreckelsen <f.spreckelsen@indiscale.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
import
os
import
sys
import
caosdb
as
db
from
caosadvancedtools.models.parser
import
parse_model_from_json_schema
from
caosdb
import
administration
as
admin
CURATOR
=
"
curator
"
def
main
():
"""
Set curator role permissions: Is allowed to edit all Records; is allowed
to create new RTs and Properties and change them, but is not allowed to
change anything defined in the core data model, i.e., in the schemas.
"""
dataspace_definitions
=
parse_model_from_json_schema
(
"
zmt-metadata-schema/schemas/dataspace.schema.json
"
)
dataset_definitions
=
parse_model_from_json_schema
(
"
zmt-metadata-schema/schemas/dataset.schema.json
"
)
# Set general permissions. The curator users should be allowed to perform
# any transaction.
perms
=
admin
.
_get_permissions
(
CURATOR
)
general_grant_perms
=
[
"
TRANSACTION:*
"
]
for
p
in
general_grant_perms
:
g
=
admin
.
PermissionRule
(
action
=
"
Grant
"
,
permission
=
p
,
priority
=
True
)
d
=
admin
.
PermissionRule
(
action
=
"
Deny
"
,
permission
=
p
,
priority
=
True
)
if
g
in
perms
:
perms
.
remove
(
g
)
if
d
in
perms
:
perms
.
remove
(
d
)
perms
.
add
(
g
)
admin
.
_set_permissions
(
CURATOR
,
permission_rules
=
perms
)
# Deny all permissions that could change the data model ...
core_model_deny_permissions
=
[
"
DELETE
"
,
"
UPDATE:*
"
,
"
EDIT:ACL
"
]
# ... but allow read-access and of course using the entities as parents,
# properties, ...
core_model_grant_permissions
=
[
"
RETRIEVE:*
"
,
"
USE:*
"
,
]
updates
=
db
.
Container
()
for
model
in
[
dataspace_definitions
,
dataset_definitions
]:
for
ent
in
model
.
values
():
if
ent
.
name
in
[
u
.
name
for
u
in
updates
]:
continue
ent
.
retrieve
(
flags
=
{
"
ACL
"
:
None
})
for
d
in
core_model_deny_permissions
:
ent
.
deny
(
role
=
CURATOR
,
priority
=
True
,
permission
=
d
)
ent
.
update_acl
()
ent
.
retrieve
(
flags
=
{
"
ACL
"
:
None
})
for
g
in
core_model_grant_permissions
:
ent
.
grant
(
role
=
CURATOR
,
priority
=
True
,
permission
=
g
)
updates
.
append
(
ent
)
ent
.
update_acl
()
if
__name__
==
"
__main__
"
:
sys
.
exit
(
main
())
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment