Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syntax fixes to comply with black #3

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion api/middleware/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ async def authenticate(self, conn: HTTPConnection) -> tuple[AuthCredentials, Use
scopes: list[str] = []

# Check if the user is using a bearer token...
user: core.UserModel | core.ApplicationModel | None
user = await self.app.database.fetch_user(bearer=auth)

if user:
Expand Down
2 changes: 1 addition & 1 deletion core/database/SCHEMA.sql
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ CREATE TABLE IF NOT EXISTS logs (
route TEXT NOT NULL,
body TEXT,
response_code INTEGER NOT NULL
);
);
8 changes: 5 additions & 3 deletions core/database/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,10 @@ async def __aexit__(self, *args: Any) -> None:
async def setup(self) -> Self:
logger.info('Setting up Database.')

self._pool = await asyncpg.create_pool(dsn=config['DATABASE']['dsn']) # type: ignore
assert self._pool
pool = await asyncpg.create_pool(dsn=config['DATABASE']['dsn'])
assert pool

self._pool = pool

async with self._pool.acquire() as connection:
with open('core/database/SCHEMA.sql', 'r') as schema:
Expand Down Expand Up @@ -163,7 +165,7 @@ async def create_application(self, *, user_id: int, name: str, description: str)

query: str = """
WITH create_application AS (
INSERT INTO tokens(user_id, token_name, token_description, token) VALUES ($1, $2, $3, $4) RETURNING *
INSERT INTO tokens(user_id, token_name, token_description, token) VALUES ($1, $2, $3, $4) RETURNING *
)
SELECT * FROM create_application
JOIN users u ON u.uid = create_application.user_id
Expand Down
9 changes: 6 additions & 3 deletions core/database/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@
import asyncpg


__all__ = ('UserModel', 'ApplicationModel', 'LogModel')
__all__ = (
'UserModel',
'ApplicationModel',
'LogModel',
)


class UserModel:
Expand Down Expand Up @@ -69,7 +73,7 @@ def as_dict(self) -> dict[str, Any]:
'description': self.description,
'token': self.token,
'verified': self.verified,
'invalid': self.invalid
'invalid': self.invalid,
}
)

Expand All @@ -78,7 +82,6 @@ def as_dict(self) -> dict[str, Any]:

class LogModel:
def __init__(self, record: asyncpg.Record) -> None:

self.ip: str = record['ip']
self.uid: int | None = record['userid']
self.tid: int | None = record['appid']
Expand Down
6 changes: 5 additions & 1 deletion core/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@
from starlette.types import Receive, Scope, Send


__all__ = ('route', 'View', 'Application')
__all__ = (
'route',
'View',
'Application',
)

ResponseType: TypeAlias = Coroutine[Any, Any, Response]

Expand Down