-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeclare_security.py
36 lines (26 loc) · 1.18 KB
/
declare_security.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from security.system.authorization import Grant, Security
from database import models
import database
import safrs
import logging
"""
Illustrates declarative security - role-based authorization to database rows.
* See [documentation](https://apilogicserver.github.io/Docs/Security-Overview/)
* Security is invoked on server start (api_logic_server_run), per activation in `config.py`
"""
app_logger = logging.getLogger(__name__)
db = safrs.DB
session = db.session
class Roles():
""" Define Roles here, so can use code completion (Roles.tenant) """
tenant = "tenant"
renter = "renter"
manager = "manager"
Grant( on_entity = models.Category, # illustrate multi-tenant - u1 shows only row 1
to_role = Roles.tenant,
filter = lambda : models.Category.Client_id == Security.current_user().client_id) # User table attributes
Grant( on_entity = models.Category, # u2 has both roles - should return client_id 2 (2, 3, 4), and 5
to_role = Roles.manager,
filter = lambda : models.Category.Id == 5)
app_logger.debug("Declare Security complete - security/declare_security.py"
+ f' -- {len(database.authentication_models.metadata.tables)} tables loaded')