|
| 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()) |
0 commit comments