-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschemas.py
62 lines (46 loc) · 1.41 KB
/
schemas.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
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
from pydantic import BaseModel, Field, HttpUrl
from datetime import datetime
from typing import Optional
class UserRegister(BaseModel):
username: str = Field(..., min_length=3, max_length=50)
password: str = Field(..., min_length=6)
class UserLogin(BaseModel):
username: str
password: str
class UserResponse(BaseModel):
id: int
username: str
class Config:
from_attributes = True
class SLinkAdd(BaseModel):
original_url: str
custom_alias: Optional[str] = Field(
None,
min_length=4,
max_length=20,
pattern="^[a-zA-Z0-9_-]+$",
description="Пользовательский алиас для короткой ссылки. Должен быть уникальным."
)
expires_at: Optional[datetime] = Field(
None,
description="Дата и время истечения срока действия ссылки (формат: YYYY-MM-DDTHH:MM)."
)
class SLinkResponse(BaseModel):
id: int
original_url: HttpUrl
short_code: str
created_at: datetime
expires_at: datetime
user_id: Optional[int]
click_count: int
short_url: Optional[str]
class Config:
from_attributes = True
class SLinkStatsResponse(BaseModel):
original_url: HttpUrl
created_at: datetime
click_count: int
last_used_at: datetime
class Token(BaseModel):
access_token: str
token_type: str