2021-05-25 09:04:59 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Copyright (C) 2021 GNS3 Technologies Inc.
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2023-08-27 08:20:42 +00:00
|
|
|
from sqlalchemy import Column, String, Boolean, event
|
2021-05-25 09:04:59 +00:00
|
|
|
from sqlalchemy.orm import relationship
|
|
|
|
|
2023-08-27 08:20:42 +00:00
|
|
|
from .base import BaseTable, generate_uuid, GUID
|
|
|
|
from .privileges import privilege_role_map
|
2021-05-25 09:04:59 +00:00
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class Role(BaseTable):
|
|
|
|
|
|
|
|
__tablename__ = "roles"
|
|
|
|
|
|
|
|
role_id = Column(GUID, primary_key=True, default=generate_uuid)
|
2021-09-03 05:51:41 +00:00
|
|
|
name = Column(String, unique=True, index=True)
|
2021-05-25 09:04:59 +00:00
|
|
|
description = Column(String)
|
2021-06-03 06:54:38 +00:00
|
|
|
is_builtin = Column(Boolean, default=False)
|
2023-08-27 08:20:42 +00:00
|
|
|
privileges = relationship("Privilege", secondary=privilege_role_map, back_populates="roles")
|
|
|
|
acl_entries = relationship("ACE")
|
2021-05-25 09:04:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
@event.listens_for(Role.__table__, 'after_create')
|
|
|
|
def create_default_roles(target, connection, **kw):
|
|
|
|
|
|
|
|
default_roles = [
|
2021-06-03 06:54:38 +00:00
|
|
|
{"name": "Administrator", "description": "Administrator role", "is_builtin": True},
|
|
|
|
{"name": "User", "description": "User role", "is_builtin": True},
|
2023-08-27 08:20:42 +00:00
|
|
|
{"name": "Auditor", "description": "Role with read only access", "is_builtin": True},
|
|
|
|
{"name": "No Access", "description": "Role with no privileges (used to forbid access)", "is_builtin": True}
|
2021-05-25 09:04:59 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
stmt = target.insert().values(default_roles)
|
|
|
|
connection.execute(stmt)
|
|
|
|
connection.commit()
|
2021-05-27 07:58:44 +00:00
|
|
|
log.debug("The default roles have been created in the database")
|