1
0
mirror of https://github.com/ilri/dspace-statistics-api.git synced 2025-02-16 15:04:27 +01:00

39 lines
1007 B
Python
Raw Normal View History

# SPDX-License-Identifier: GPL-3.0-only
import falcon
import psycopg2
import psycopg2.extras
2019-11-27 12:31:04 +02:00
from .config import (
DATABASE_HOST,
DATABASE_NAME,
DATABASE_PASS,
DATABASE_PORT,
DATABASE_USER,
)
2019-11-27 12:30:06 +02:00
class DatabaseManager:
"""Manage database connection."""
def __init__(self):
self._connection_uri = f"dbname={DATABASE_NAME} user={DATABASE_USER} password={DATABASE_PASS} host={DATABASE_HOST} port={DATABASE_PORT}"
def __enter__(self):
try:
2019-11-27 12:30:06 +02:00
self._connection = psycopg2.connect(
self._connection_uri, cursor_factory=psycopg2.extras.DictCursor
)
except psycopg2.OperationalError:
2019-11-27 12:30:06 +02:00
title = "500 Internal Server Error"
description = "Could not connect to database"
raise falcon.HTTPInternalServerError(title, description)
return self._connection
def __exit__(self, exc_type, exc_value, exc_traceback):
self._connection.close()
2019-11-27 12:30:06 +02:00
# vim: set sw=4 ts=4 expandtab: