mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-20 15:28:22 +00:00
114 lines
2.3 KiB
Python
114 lines
2.3 KiB
Python
#
|
|
# Copyright (C) 2020 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/>.
|
|
|
|
from typing import Optional, List
|
|
from pydantic import ConfigDict, BaseModel, Field
|
|
from uuid import UUID
|
|
from enum import Enum
|
|
|
|
from .base import DateTimeModelMixin
|
|
|
|
|
|
class PrivilegeBase(BaseModel):
|
|
"""
|
|
Common privilege properties.
|
|
"""
|
|
|
|
name: str
|
|
description: Optional[str] = None
|
|
|
|
|
|
class Privilege(DateTimeModelMixin, PrivilegeBase):
|
|
|
|
privilege_id: UUID
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
|
|
class ACEType(str, Enum):
|
|
|
|
user = "user"
|
|
group = "group"
|
|
|
|
|
|
class ACEBase(BaseModel):
|
|
"""
|
|
Common ACE properties.
|
|
"""
|
|
|
|
ace_type: ACEType = Field(..., description="Type of the ACE")
|
|
path: str
|
|
propagate: Optional[bool] = True
|
|
allowed: Optional[bool] = True
|
|
user_id: Optional[UUID] = None
|
|
group_id: Optional[UUID] = None
|
|
role_id: UUID
|
|
model_config = ConfigDict(use_enum_values=True)
|
|
|
|
|
|
class ACECreate(ACEBase):
|
|
"""
|
|
Properties to create an ACE.
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class ACEUpdate(ACEBase):
|
|
"""
|
|
Properties to update an ACE.
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class ACE(DateTimeModelMixin, ACEBase):
|
|
|
|
ace_id: UUID
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
|
|
class RoleBase(BaseModel):
|
|
"""
|
|
Common role properties.
|
|
"""
|
|
|
|
name: Optional[str] = None
|
|
description: Optional[str] = None
|
|
|
|
|
|
class RoleCreate(RoleBase):
|
|
"""
|
|
Properties to create a role.
|
|
"""
|
|
|
|
name: str
|
|
|
|
|
|
class RoleUpdate(RoleBase):
|
|
"""
|
|
Properties to update a role.
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class Role(DateTimeModelMixin, RoleBase):
|
|
|
|
role_id: UUID
|
|
is_builtin: bool
|
|
privileges: List[Privilege]
|
|
model_config = ConfigDict(from_attributes=True)
|