2022-05-29 20:19:17 +00:00
|
|
|
import sqlite3
|
|
|
|
|
2022-07-10 12:07:26 +00:00
|
|
|
from logging import Logger
|
|
|
|
|
2022-05-30 20:54:26 +00:00
|
|
|
from exceptions import DisplayableException
|
2022-07-08 19:23:12 +00:00
|
|
|
from rss import FeedItem
|
2022-05-30 20:54:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Database:
|
|
|
|
"""Implement interaction with the database."""
|
2022-05-29 20:19:17 +00:00
|
|
|
|
2022-07-10 12:07:26 +00:00
|
|
|
def __init__(self, path: str, log: Logger) -> None:
|
2022-05-29 20:19:17 +00:00
|
|
|
"""Create a database file if not exists."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log: Logger = log
|
|
|
|
self.log.debug('Database.__init__(path=\'%s\')', path)
|
2022-05-30 20:54:26 +00:00
|
|
|
# TODO: think about removing check_same_thread=False
|
|
|
|
self.conn = sqlite3.connect(path, check_same_thread=False)
|
2022-07-08 19:23:12 +00:00
|
|
|
self.conn.row_factory = sqlite3.Row
|
2022-05-29 20:19:17 +00:00
|
|
|
self.cur = self.conn.cursor()
|
2022-05-30 20:54:26 +00:00
|
|
|
self.__init_schema()
|
2022-05-29 20:19:17 +00:00
|
|
|
|
2022-05-30 20:54:26 +00:00
|
|
|
def add_user(self, telegram_id: int) -> int:
|
2022-05-29 20:19:17 +00:00
|
|
|
"""Add a user's telegram id to the database and return its database id."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('add_user(telegram_id=\'%s\')', telegram_id)
|
2022-05-29 20:19:17 +00:00
|
|
|
self.cur.execute('INSERT INTO users (telegram_id) VALUES (?)', [telegram_id])
|
|
|
|
self.conn.commit()
|
|
|
|
return self.cur.lastrowid
|
|
|
|
|
2022-05-30 20:54:26 +00:00
|
|
|
def find_user(self, telegram_id: int) -> int | None:
|
2022-05-29 20:19:17 +00:00
|
|
|
"""Get a user's telegram id and return its database id."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('find_user(telegram_id=\'%s\')', telegram_id)
|
2022-05-29 20:19:17 +00:00
|
|
|
self.cur.execute('SELECT id FROM users WHERE telegram_id = ?', [telegram_id])
|
|
|
|
row = self.cur.fetchone()
|
|
|
|
if row is None:
|
|
|
|
return None
|
2022-07-08 19:23:12 +00:00
|
|
|
return row['id']
|
2022-05-29 20:19:17 +00:00
|
|
|
|
|
|
|
def add_feed(self, url: str) -> int:
|
|
|
|
"""Add a feed to the database and return its id."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('add_feed(url=\'%s\')', url)
|
2022-05-29 20:19:17 +00:00
|
|
|
self.cur.execute('INSERT INTO feeds (url) VALUES (?)', [url])
|
|
|
|
self.conn.commit()
|
|
|
|
return self.cur.lastrowid
|
|
|
|
|
2022-05-30 20:54:26 +00:00
|
|
|
def find_feed_by_url(self, url: str) -> int | None:
|
|
|
|
"""Find feed ID by url."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('find_feed_by_url(url=\'%s\')', url)
|
2022-05-30 20:54:26 +00:00
|
|
|
self.cur.execute('SELECT id FROM feeds WHERE url = ?', [url])
|
|
|
|
row = self.cur.fetchone()
|
|
|
|
if row is None:
|
|
|
|
return None
|
2022-07-08 19:23:12 +00:00
|
|
|
return row['id']
|
2022-05-30 20:54:26 +00:00
|
|
|
|
|
|
|
def subscribe_user_by_url(self, user_id: int, url: str) -> None:
|
|
|
|
"""Subscribe user to the feed creating it if does not exist yet."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('subscribe_user_by_url(user_id=\'%s\', url=\'%s\')', user_id, url)
|
2022-05-30 20:54:26 +00:00
|
|
|
feed_id = self.find_feed_by_url(url)
|
|
|
|
if feed_id is None:
|
|
|
|
feed_id = self.add_feed(url)
|
|
|
|
|
|
|
|
if self.is_user_subscribed(user_id, feed_id):
|
|
|
|
raise DisplayableException('Already subscribed')
|
|
|
|
|
|
|
|
self.subscribe_user(user_id, feed_id)
|
|
|
|
|
2022-05-29 20:19:17 +00:00
|
|
|
def subscribe_user(self, user_id: int, feed_id: int) -> None:
|
|
|
|
"""Subscribe a user to the feed."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('subscribe_user(user_id=\'%s\', feed_id=\'%s\')', user_id, feed_id)
|
2022-05-29 20:19:17 +00:00
|
|
|
self.cur.execute('INSERT INTO subscriptions (user_id, feed_id) VALUES (?, ?)', [user_id, feed_id])
|
|
|
|
self.conn.commit()
|
|
|
|
|
2022-05-30 20:54:26 +00:00
|
|
|
def unsubscribe_user_by_url(self, user_id: int, url: str) -> None:
|
2022-07-08 19:23:12 +00:00
|
|
|
"""Subscribe a user to the feed by url."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('unsubscribe_user_by_url(user_id=\'%s\', url=\'%s\')', user_id, url)
|
2022-05-30 20:54:26 +00:00
|
|
|
feed_id = self.find_feed_by_url(url)
|
|
|
|
if feed_id is None:
|
|
|
|
raise DisplayableException('Feed does not exist')
|
|
|
|
|
|
|
|
if not self.is_user_subscribed(user_id, feed_id):
|
|
|
|
raise DisplayableException('Not subscribed')
|
|
|
|
|
|
|
|
self.unsubscribe_user(user_id, feed_id)
|
|
|
|
|
|
|
|
if self.get_feed_subscribers_count(feed_id) == 0:
|
|
|
|
# Feed is not used anymore. Removing.
|
|
|
|
self.delete_feed(feed_id)
|
|
|
|
|
2022-05-29 20:19:17 +00:00
|
|
|
def unsubscribe_user(self, user_id: int, feed_id: int) -> None:
|
|
|
|
"""Unsubscribe a user from the feed."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('unsubscribe_user(user_id=\'%s\', feed_id=\'%s\')', user_id, feed_id)
|
2022-05-29 20:19:17 +00:00
|
|
|
self.cur.execute('DELETE FROM subscriptions WHERE feed_id = ? AND user_id = ?', [feed_id, user_id])
|
|
|
|
self.conn.commit()
|
|
|
|
|
2022-05-30 20:54:26 +00:00
|
|
|
def is_user_subscribed(self, user_id: int, feed_id: int) -> bool:
|
|
|
|
"""Check if user subscribed to specific feed."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('is_user_subscribed(user_id=\'%s\', feed_id=\'%s\')', user_id, feed_id)
|
2022-05-30 20:54:26 +00:00
|
|
|
self.cur.execute('SELECT 1 FROM subscriptions WHERE user_id = ? AND feed_id = ?', [user_id, feed_id])
|
|
|
|
row = self.cur.fetchone()
|
|
|
|
if row is None:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2022-05-29 20:19:17 +00:00
|
|
|
def delete_feed(self, feed_id: int) -> None:
|
|
|
|
"""Delete a feed."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('delete_feed(feed_id=\'%s\')', feed_id)
|
2022-05-29 20:19:17 +00:00
|
|
|
self.cur.execute('DELETE FROM feeds WHERE id = ?', [feed_id])
|
|
|
|
self.conn.commit()
|
|
|
|
|
2022-05-30 20:54:26 +00:00
|
|
|
def get_feed_subscribers_count(self, feed_id: int) -> int:
|
|
|
|
"""Count feed subscribers."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('get_feed_subscribers_count(feed_id=\'%s\')', feed_id)
|
2022-07-08 19:23:12 +00:00
|
|
|
self.cur.execute('SELECT COUNT(user_id) AS amount_subscribers FROM subscriptions WHERE feed_id = ?', [feed_id])
|
2022-05-30 20:54:26 +00:00
|
|
|
row = self.cur.fetchone()
|
2022-07-08 19:23:12 +00:00
|
|
|
return row['amount_subscribers']
|
|
|
|
|
|
|
|
def find_feed_subscribers(self, feed_id: int) -> list[int]:
|
|
|
|
"""Return feed subscribers"""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('find_feed_subscribers(feed_id=\'%s\')', feed_id)
|
2022-07-08 19:23:12 +00:00
|
|
|
self.cur.execute('SELECT telegram_id FROM users WHERE id IN (SELECT user_id FROM subscriptions WHERE feed_id = ?)',
|
|
|
|
[feed_id])
|
|
|
|
subscribers = self.cur.fetchall()
|
|
|
|
return list(map(lambda x: x['telegram_id'], subscribers))
|
2022-05-30 20:54:26 +00:00
|
|
|
|
2022-07-08 19:23:12 +00:00
|
|
|
def find_feeds(self) -> list[sqlite3.Row]:
|
2022-05-29 20:19:17 +00:00
|
|
|
"""Get a list of feeds."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('find_feeds()')
|
2022-05-29 20:19:17 +00:00
|
|
|
self.cur.execute('SELECT * FROM feeds')
|
|
|
|
return self.cur.fetchall()
|
|
|
|
|
2022-07-08 19:23:12 +00:00
|
|
|
def find_user_feeds(self, user_id: int) -> list[sqlite3.Row]:
|
2022-05-29 20:19:17 +00:00
|
|
|
"""Return a list of feeds the user is subscribed to."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('find_user_feeds(user_id=\'%s\')', user_id)
|
2022-05-30 20:54:26 +00:00
|
|
|
self.cur.execute('SELECT * FROM feeds WHERE id IN (SELECT feed_id FROM subscriptions WHERE user_id = ?)',
|
|
|
|
[user_id])
|
2022-05-29 20:19:17 +00:00
|
|
|
return self.cur.fetchall()
|
|
|
|
|
2022-07-08 19:23:12 +00:00
|
|
|
def find_feed_items(self, feed_id: int) -> list[sqlite3.Row]:
|
2022-05-29 20:19:17 +00:00
|
|
|
"""Get last feed items."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('find_feed_items(feed_id=\'%s\')', feed_id)
|
2022-05-29 20:19:17 +00:00
|
|
|
self.cur.execute('SELECT * FROM feeds_last_items WHERE feed_id = ?', [feed_id])
|
|
|
|
return self.cur.fetchall()
|
|
|
|
|
2022-07-08 19:23:12 +00:00
|
|
|
def find_feed_items_urls(self, feed_id: int) -> list[str]:
|
|
|
|
"""Return urls last feed items"""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('find_feed_items_urls(feed_id=\'%s\')', feed_id)
|
2022-07-08 19:23:12 +00:00
|
|
|
items = self.find_feed_items(feed_id)
|
|
|
|
if not items:
|
2022-07-10 12:07:26 +00:00
|
|
|
return []
|
2022-07-08 19:23:12 +00:00
|
|
|
return list(map(lambda x: x['url'], items))
|
|
|
|
|
|
|
|
def update_feed_items(self, feed_id: int, new_items: list[FeedItem]) -> None:
|
2022-05-29 20:19:17 +00:00
|
|
|
"""Replace last feed items with a list items that receive."""
|
2022-07-10 12:07:26 +00:00
|
|
|
self.log.debug('update_feed_items(feed_id=\'%s\', new_items=list(%d))', feed_id, len(new_items))
|
2022-07-08 19:23:12 +00:00
|
|
|
for i, _ in enumerate(new_items):
|
|
|
|
new_items[i] = [feed_id] + list(new_items[i].__dict__.values())[:-1]
|
2022-05-29 20:19:17 +00:00
|
|
|
|
|
|
|
self.cur.execute('DELETE FROM feeds_last_items WHERE feed_id = ?', [feed_id])
|
2022-05-30 20:54:26 +00:00
|
|
|
self.cur.executemany(
|
2022-07-08 19:23:12 +00:00
|
|
|
'INSERT INTO feeds_last_items (feed_id, url, title, description) VALUES (?, ?, ?, ?)', new_items)
|
2022-05-29 20:19:17 +00:00
|
|
|
self.conn.commit()
|
2022-05-30 20:54:26 +00:00
|
|
|
|
2022-07-10 12:07:26 +00:00
|
|
|
def __init_schema(self) -> None:
|
|
|
|
self.log.debug('__init_schema()')
|
|
|
|
# TODO: Change to migrations
|
2022-05-30 20:54:26 +00:00
|
|
|
self.cur.execute(
|
|
|
|
'CREATE TABLE IF NOT EXISTS users (id INTEGER, telegram_id INTEGER NOT NULL UNIQUE, PRIMARY KEY(id))'
|
|
|
|
)
|
|
|
|
self.cur.execute('CREATE TABLE IF NOT EXISTS feeds (id INTEGER, url TEXT NOT NULL UNIQUE, PRIMARY KEY(id))')
|
|
|
|
self.cur.execute(
|
|
|
|
'CREATE TABLE IF NOT EXISTS subscriptions ('
|
|
|
|
' user_id INTEGER,'
|
|
|
|
' feed_id INTEGER,'
|
|
|
|
' UNIQUE (user_id, feed_id),'
|
|
|
|
' FOREIGN KEY(user_id) REFERENCES users(id),'
|
|
|
|
' FOREIGN KEY(feed_id) REFERENCES feeds(id)'
|
|
|
|
')'
|
|
|
|
)
|
|
|
|
self.cur.execute(
|
|
|
|
'CREATE TABLE IF NOT EXISTS feeds_last_items ('
|
|
|
|
' feed_id INTEGER,'
|
|
|
|
' url TEXT NOT NULL UNIQUE,'
|
|
|
|
' title TEXT,'
|
|
|
|
' description TEXT,'
|
|
|
|
' FOREIGN KEY(feed_id) REFERENCES feeds(id)'
|
|
|
|
')'
|
|
|
|
)
|