-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschemas.py
More file actions
71 lines (50 loc) · 1.63 KB
/
schemas.py
File metadata and controls
71 lines (50 loc) · 1.63 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import email
from pydantic import BaseModel, ConfigDict, Field, EmailStr
from datetime import datetime
class UserBase(BaseModel):
username: str = Field(min_length=1, max_length=50)
email: EmailStr = Field(max_length=120)
class UserCreate(UserBase):
password: str = Field(min_length=8)
class UserUpdate(BaseModel):
username: str | None = Field(default=None, min_length=1, max_length=50)
email: EmailStr | None = Field(default=None, max_length=120)
class Token(BaseModel):
access_token: str
token_type: str
class UserPublic(BaseModel):
model_config = ConfigDict(from_attributes=True)
id: int
username: str
image_file: str | None
image_path: str
class UserPrivate(UserPublic):
email: EmailStr
class PostBase(BaseModel):
title: str = Field(min_length=1, max_length=100)
content: str = Field(min_length=1)
class PostCreate(PostBase):
pass
class PostUpdate(BaseModel):
title: str | None = Field(default=None, min_length=1, max_length=100)
content: str | None = Field(default=None, min_length=1)
class PostResponse(PostBase):
model_config = ConfigDict(from_attributes=True)
id: int
user_id: int
date_posted: datetime
author: UserPublic
class PaginatedPostsResponse(BaseModel):
posts: list[PostResponse]
total: int
skip: int
limit: int
has_more: bool
class ForgotPasswordRequest(BaseModel):
email: EmailStr = Field(max_length=120)
class ResetPasswordRequest(BaseModel):
token: str
new_password: str = Field(min_length=8)
class ChangePasswordRequest(BaseModel):
current_password: str
new_password: str = Field(min_length=8)