2022-07-13 21:54:15 +00:00
|
|
|
from logging import Logger
|
|
|
|
import psycopg2
|
2022-07-13 19:19:54 +00:00
|
|
|
from psycopg2.extensions import connection
|
|
|
|
from psycopg2.extras import DictCursor, DictRow
|
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-11 00:25:44 +00:00
|
|
|
def __init__(self, dsn: 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
|
2022-07-11 00:25:44 +00:00
|
|
|
self.log.debug('Database.__init__(DSN=\'%s\')', dsn)
|
2022-07-13 19:19:54 +00:00
|
|
|
self.conn: connection = psycopg2.connect(dsn)
|
|
|
|
self.cur: DictCursor = self.conn.cursor(cursor_factory=DictCursor)
|
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-07-13 20:15:11 +00:00
|
|
|
self.cur.execute('INSERT INTO users (telegram_id) VALUES (%s) RETURNING id', [telegram_id])
|
2022-05-29 20:19:17 +00:00
|
|
|
self.conn.commit()
|
2022-07-13 20:15:11 +00:00
|
|
|
return self.cur.fetchone()[0]
|
2022-05-29 20:19:17 +00:00
|
|
|
|
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-07-11 00:25:44 +00:00
|
|
|
self.cur.execute('SELECT id FROM users WHERE telegram_id = %s', [telegram_id])
|
2022-05-29 20:19:17 +00:00
|
|
|
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-07-13 20:15:11 +00:00
|
|
|
self.cur.execute('INSERT INTO feeds (url) VALUES (%s) RETURNING id', [url])
|
2022-05-29 20:19:17 +00:00
|
|
|
self.conn.commit()
|
2022-07-13 20:15:11 +00:00
|
|
|
return self.cur.fetchone()[0]
|
2022-05-29 20:19:17 +00:00
|
|
|
|
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-07-11 00:25:44 +00:00
|
|
|
self.cur.execute('SELECT id FROM feeds WHERE url = %s', [url])
|
2022-05-30 20:54:26 +00:00
|
|
|
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-07-11 00:25:44 +00:00
|
|
|
self.cur.execute('INSERT INTO subscriptions (user_id, feed_id) VALUES (%s, %s)', [user_id, feed_id])
|
2022-05-29 20:19:17 +00:00
|
|
|
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-07-11 00:25:44 +00:00
|
|
|
self.cur.execute('DELETE FROM subscriptions WHERE feed_id = %s AND user_id = %s', [feed_id, user_id])
|
2022-05-29 20:19:17 +00:00
|
|
|
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-07-11 00:25:44 +00:00
|
|
|
self.cur.execute('SELECT 1 FROM subscriptions WHERE user_id = %s AND feed_id = %s', [user_id, feed_id])
|
2022-05-30 20:54:26 +00:00
|
|
|
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-07-11 00:25:44 +00:00
|
|
|
self.cur.execute('DELETE FROM feeds WHERE id = %s', [feed_id])
|
2022-05-29 20:19:17 +00:00
|
|
|
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-11 00:25:44 +00:00
|
|
|
self.cur.execute('SELECT COUNT(user_id) AS amount_subscribers FROM subscriptions WHERE feed_id = %s', [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-11 00:25:44 +00:00
|
|
|
self.cur.execute('SELECT telegram_id FROM users WHERE id IN (SELECT user_id FROM subscriptions WHERE feed_id = %s)',
|
2022-07-08 19:23:12 +00:00
|
|
|
[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-13 20:39:17 +00:00
|
|
|
def find_feeds(self) -> list[dict]:
|
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')
|
2022-07-13 20:50:03 +00:00
|
|
|
return self.__dictrow_to_dict_list(self.cur.fetchall())
|
2022-05-29 20:19:17 +00:00
|
|
|
|
2022-07-13 20:39:17 +00:00
|
|
|
def find_user_feeds(self, user_id: int) -> list[dict]:
|
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-07-11 00:25:44 +00:00
|
|
|
self.cur.execute('SELECT * FROM feeds WHERE id IN (SELECT feed_id FROM subscriptions WHERE user_id = %s)',
|
2022-07-13 21:54:15 +00:00
|
|
|
[user_id])
|
2022-07-13 20:50:03 +00:00
|
|
|
return self.__dictrow_to_dict_list(self.cur.fetchall())
|
2022-05-29 20:19:17 +00:00
|
|
|
|
2022-07-13 20:39:17 +00:00
|
|
|
def find_feed_items(self, feed_id: int) -> list[dict]:
|
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-07-11 00:25:44 +00:00
|
|
|
self.cur.execute('SELECT * FROM feeds_last_items WHERE feed_id = %s', [feed_id])
|
2022-07-13 20:50:03 +00:00
|
|
|
return self.__dictrow_to_dict_list(self.cur.fetchall())
|
2022-05-29 20:19:17 +00:00
|
|
|
|
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
|
|
|
|
2022-07-11 00:25:44 +00:00
|
|
|
self.cur.execute('DELETE FROM feeds_last_items WHERE feed_id = %s', [feed_id])
|
2022-05-30 20:54:26 +00:00
|
|
|
self.cur.executemany(
|
2022-07-11 00:25:44 +00:00
|
|
|
'INSERT INTO feeds_last_items (feed_id, url, title, description) VALUES (%s, %s, %s, %s)', 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()')
|
2022-05-30 20:54:26 +00:00
|
|
|
self.cur.execute(
|
2022-07-11 00:25:44 +00:00
|
|
|
'CREATE TABLE IF NOT EXISTS users (id SERIAL PRIMARY KEY, telegram_id INTEGER NOT NULL UNIQUE)'
|
2022-05-30 20:54:26 +00:00
|
|
|
)
|
2022-07-11 00:25:44 +00:00
|
|
|
self.cur.execute('CREATE TABLE IF NOT EXISTS feeds (id SERIAL PRIMARY KEY, url TEXT NOT NULL UNIQUE)')
|
2022-05-30 20:54:26 +00:00
|
|
|
self.cur.execute(
|
|
|
|
'CREATE TABLE IF NOT EXISTS subscriptions ('
|
2022-07-13 19:19:54 +00:00
|
|
|
' user_id INTEGER REFERENCES users,'
|
|
|
|
' feed_id INTEGER REFERENCES feeds,'
|
|
|
|
' UNIQUE (user_id, feed_id)'
|
2022-05-30 20:54:26 +00:00
|
|
|
')'
|
|
|
|
)
|
|
|
|
self.cur.execute(
|
|
|
|
'CREATE TABLE IF NOT EXISTS feeds_last_items ('
|
2022-07-13 19:19:54 +00:00
|
|
|
' feed_id INTEGER REFERENCES feeds ON DELETE CASCADE,'
|
2022-07-11 00:25:44 +00:00
|
|
|
' url TEXT NOT NULL,'
|
2022-05-30 20:54:26 +00:00
|
|
|
' title TEXT,'
|
2022-07-13 19:19:54 +00:00
|
|
|
' description TEXT'
|
2022-05-30 20:54:26 +00:00
|
|
|
')'
|
|
|
|
)
|
2022-07-13 20:39:17 +00:00
|
|
|
|
|
|
|
@staticmethod
|
2022-07-13 20:50:03 +00:00
|
|
|
def __dictrow_to_dict_list(rows: list[DictRow]) -> list[dict]:
|
2022-07-13 20:39:17 +00:00
|
|
|
"""Convert list of DictRows to list of dicts"""
|
2022-07-13 22:09:04 +00:00
|
|
|
return list(map(dict, rows))
|