gns3-server/gns3server/schemas/controller/users.py

106 lines
2.5 KiB
Python
Raw Normal View History

#
# 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/>.
2021-06-03 10:27:16 +03:00
from datetime import datetime
from typing import Optional
2023-08-04 11:20:06 +03:00
from pydantic import ConfigDict, EmailStr, BaseModel, Field, SecretStr
from uuid import UUID
from .base import DateTimeModelMixin
class UserBase(BaseModel):
"""
Common user properties.
"""
2023-08-04 11:20:06 +03:00
username: Optional[str] = Field(None, min_length=3, pattern="[a-zA-Z0-9_-]+$")
is_active: bool = True
2023-08-04 11:20:06 +03:00
email: Optional[EmailStr] = None
full_name: Optional[str] = None
class UserCreate(UserBase):
"""
2023-08-04 11:20:06 +03:00
Properties to create a user.
"""
2023-08-04 11:20:06 +03:00
username: str = Field(..., min_length=3, pattern="[a-zA-Z0-9_-]+$")
password: SecretStr = Field(..., min_length=6, max_length=100)
class UserUpdate(UserBase):
"""
2023-08-04 11:20:06 +03:00
Properties to update a user.
"""
password: Optional[SecretStr] = Field(None, min_length=6, max_length=100)
class LoggedInUserUpdate(BaseModel):
"""
Properties to update a logged in user.
"""
password: Optional[SecretStr] = Field(None, min_length=6, max_length=100)
2023-08-04 11:20:06 +03:00
email: Optional[EmailStr] = None
full_name: Optional[str] = None
class User(DateTimeModelMixin, UserBase):
user_id: UUID
2021-06-03 10:27:16 +03:00
last_login: Optional[datetime] = None
is_superadmin: bool = False
2023-08-04 11:20:06 +03:00
model_config = ConfigDict(from_attributes=True)
2021-05-15 08:40:02 +03:00
class UserGroupBase(BaseModel):
"""
Common user group properties.
"""
2023-08-04 11:20:06 +03:00
name: Optional[str] = Field(None, min_length=3, pattern="[a-zA-Z0-9_-]+$")
2021-05-15 08:40:02 +03:00
class UserGroupCreate(UserGroupBase):
"""
2023-08-04 11:20:06 +03:00
Properties to create a user group.
2021-05-15 08:40:02 +03:00
"""
2023-08-04 11:20:06 +03:00
name: Optional[str] = Field(..., min_length=3, pattern="[a-zA-Z0-9_-]+$")
2021-05-15 08:40:02 +03:00
class UserGroupUpdate(UserGroupBase):
"""
2023-08-04 11:20:06 +03:00
Properties to update a user group.
2021-05-15 08:40:02 +03:00
"""
pass
class UserGroup(DateTimeModelMixin, UserGroupBase):
user_group_id: UUID
is_builtin: bool
2023-08-04 11:20:06 +03:00
model_config = ConfigDict(from_attributes=True)
2021-05-15 08:40:02 +03:00
class Credentials(BaseModel):
username: str
password: str