matrix-alertbot/storage.py

48 lines
1.3 KiB
Python
Raw Normal View History

2019-09-25 14:26:29 +02:00
import sqlite3
import os.path
2019-09-25 14:31:56 +02:00
import logging
2019-09-25 14:26:29 +02:00
latest_db_version = 0
2019-09-25 14:31:56 +02:00
logger = logging.getLogger(__name__)
2019-09-25 14:26:29 +02:00
2019-09-25 14:26:29 +02:00
class Storage(object):
def __init__(self, db_path):
"""Setup the database
Runs an initial setup or migrations depending on whether a database file has already
been created
Args:
db_path (str): The name of the database file
"""
self.db_path = db_path
# Check if a database has already been connected
if os.path.isfile(self.db_path):
self._run_migrations()
else:
self._initial_setup()
def _initial_setup(self):
"""Initial setup of the database"""
2019-09-25 14:31:56 +02:00
logger.info("Performing initial database setup...")
2019-09-25 14:26:29 +02:00
# Initialize a connection to the database
conn = sqlite3.connect(self.db_path)
self.cursor = conn.cursor()
# Sync token table
self.cursor.execute("CREATE TABLE sync_token ("
"token TEXT PRIMARY KEY"
")")
2019-09-25 14:31:56 +02:00
logger.info("Database setup complete")
2019-09-25 14:26:29 +02:00
def _run_migrations(self):
"""Execute database migrations"""
# Initialize a connection to the database
conn = sqlite3.connect(self.db_path)
self.cursor = conn.cursor()