-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.py
43 lines (29 loc) · 1.33 KB
/
database.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
from sqlalchemy.ext.asyncio import create_async_engine, async_sessionmaker
from sqlalchemy.orm import DeclarativeBase, Mapped, mapped_column
from datetime import datetime, timedelta
from typing import Optional
engine = create_async_engine("sqlite+aiosqlite:///links.db")
new_session = async_sessionmaker(engine, expire_on_commit=False)
class Model(DeclarativeBase):
pass
class UserOrm(Model):
__tablename__ = "users"
id: Mapped[int] = mapped_column(primary_key=True)
username: Mapped[str] = mapped_column(unique=True)
password_hash: Mapped[str]
class LinkOrm(Model):
__tablename__ = "links"
id: Mapped[int] = mapped_column(primary_key=True)
original_url: Mapped[str]
short_code: Mapped[str]
created_at: Mapped[datetime] = mapped_column(default=datetime.utcnow)
expires_at: Mapped[datetime] = mapped_column(default=lambda: datetime.utcnow() + timedelta(days=30))
user_id: Mapped[Optional[int]] = mapped_column(nullable=True)
click_count: Mapped[int] = mapped_column(default=0)
last_used_at: Mapped[datetime] = mapped_column(default=datetime.utcnow)
async def create_tables():
async with engine.begin() as conn:
await conn.run_sync(Model.metadata.create_all)
async def delete_tables():
async with engine.begin() as conn:
await conn.run_sync(Model.metadata.drop_all)