Skip to content

Commit e59a936

Browse files
committed
Add core database class and schema.
1 parent 7824032 commit e59a936

File tree

3 files changed

+70
-0
lines changed

3 files changed

+70
-0
lines changed

core/database/__init__.py

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
"""The MIT License (MIT)
2+
3+
Copyright (c) 2021 PythonistaGuild
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a
6+
copy of this software and associated documentation files (the "Software"),
7+
to deal in the Software without restriction, including without limitation
8+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
9+
and/or sell copies of the Software, and to permit persons to whom the
10+
Software is furnished to do so, subject to the following conditions:
11+
The above copyright notice and this permission notice shall be included in
12+
all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20+
DEALINGS IN THE SOFTWARE.
21+
"""
22+
from .database import Database

core/database/database.py

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
"""The MIT License (MIT)
2+
3+
Copyright (c) 2020 PythonistaGuild
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a
6+
copy of this software and associated documentation files (the "Software"),
7+
to deal in the Software without restriction, including without limitation
8+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
9+
and/or sell copies of the Software, and to permit persons to whom the
10+
Software is furnished to do so, subject to the following conditions:
11+
The above copyright notice and this permission notice shall be included in
12+
all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20+
DEALINGS IN THE SOFTWARE.
21+
"""
22+
import asyncpg
23+
24+
from core.core import CONFIG
25+
26+
27+
class Database:
28+
29+
_pool: asyncpg.pool.Pool
30+
31+
@classmethod
32+
async def __ainit__(cls) -> None:
33+
settings = CONFIG['DATABASE']
34+
dsn = f'postgres://{settings["user"]}:{settings["password"]}@{settings["host"]}:{settings["port"]}/' \
35+
'{database}'
36+
37+
try:
38+
cls._pool = await asyncpg.create_pool(dsn.format(database=settings['database']))
39+
except asyncpg.InvalidCatalogNameError:
40+
temp = await asyncpg.connect(dsn.format(database='template1'))
41+
await temp.execute(f"""CREATE DATABASE {settings['database']} OWNER {settings['user']}""")
42+
43+
await temp.close()
44+
cls._pool = await asyncpg.create_pool(dsn.format(database=settings['database']))
45+
46+
with open('core/database/schema.sql') as schema:
47+
async with cls._pool.acquire() as connection:
48+
await connection.execute(schema.read())

core/database/schema.sql

Whitespace-only changes.

0 commit comments

Comments
 (0)