2022-08-14 13:38:21 +02:00
|
|
|
mod data;
|
2022-10-08 13:04:55 +02:00
|
|
|
|
2024-05-09 15:59:08 -07:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
2024-06-28 22:51:39 +00:00
|
|
|
use conduit::{Result, Server};
|
2024-05-26 21:29:19 +00:00
|
|
|
use data::Data;
|
2024-06-28 22:51:39 +00:00
|
|
|
use database::Database;
|
2022-10-09 17:25:06 +02:00
|
|
|
use ruma::{OwnedRoomId, OwnedUserId, RoomId, UserId};
|
2021-04-12 12:40:16 +02:00
|
|
|
|
2024-05-09 15:59:08 -07:00
|
|
|
pub struct Service {
|
2024-06-28 22:51:39 +00:00
|
|
|
db: Data,
|
2022-08-14 13:38:21 +02:00
|
|
|
}
|
2021-04-13 15:00:45 +02:00
|
|
|
|
2022-10-05 12:45:54 +02:00
|
|
|
impl Service {
|
2024-06-28 22:51:39 +00:00
|
|
|
pub fn build(_server: &Arc<Server>, db: &Arc<Database>) -> Result<Self> {
|
2024-05-27 03:17:20 +00:00
|
|
|
Ok(Self {
|
|
|
|
db: Data::new(db),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-05-09 15:59:08 -07:00
|
|
|
pub fn reset_notification_counts(&self, user_id: &UserId, room_id: &RoomId) -> Result<()> {
|
2022-08-14 13:38:21 +02:00
|
|
|
self.db.reset_notification_counts(user_id, room_id)
|
2021-04-13 15:00:45 +02:00
|
|
|
}
|
2024-03-05 19:48:54 -05:00
|
|
|
|
2024-05-09 15:59:08 -07:00
|
|
|
pub fn notification_count(&self, user_id: &UserId, room_id: &RoomId) -> Result<u64> {
|
2022-08-14 13:38:21 +02:00
|
|
|
self.db.notification_count(user_id, room_id)
|
2020-05-25 23:24:13 +02:00
|
|
|
}
|
2024-03-05 19:48:54 -05:00
|
|
|
|
2024-05-09 15:59:08 -07:00
|
|
|
pub fn highlight_count(&self, user_id: &UserId, room_id: &RoomId) -> Result<u64> {
|
2022-08-14 13:38:21 +02:00
|
|
|
self.db.highlight_count(user_id, room_id)
|
2020-05-24 08:30:57 +02:00
|
|
|
}
|
2024-03-05 19:48:54 -05:00
|
|
|
|
2024-05-09 15:59:08 -07:00
|
|
|
pub fn last_notification_read(&self, user_id: &UserId, room_id: &RoomId) -> Result<u64> {
|
2022-10-30 20:36:14 +01:00
|
|
|
self.db.last_notification_read(user_id, room_id)
|
|
|
|
}
|
2024-03-05 19:48:54 -05:00
|
|
|
|
2024-05-09 15:59:08 -07:00
|
|
|
pub fn associate_token_shortstatehash(&self, room_id: &RoomId, token: u64, shortstatehash: u64) -> Result<()> {
|
2024-03-25 17:05:11 -04:00
|
|
|
self.db
|
|
|
|
.associate_token_shortstatehash(room_id, token, shortstatehash)
|
2022-06-19 22:56:14 +02:00
|
|
|
}
|
2024-03-05 19:48:54 -05:00
|
|
|
|
2024-05-09 15:59:08 -07:00
|
|
|
pub fn get_token_shortstatehash(&self, room_id: &RoomId, token: u64) -> Result<Option<u64>> {
|
2022-08-14 13:38:21 +02:00
|
|
|
self.db.get_token_shortstatehash(room_id, token)
|
2020-08-21 21:22:59 +02:00
|
|
|
}
|
2024-03-05 19:48:54 -05:00
|
|
|
|
2024-05-09 15:59:08 -07:00
|
|
|
pub fn get_shared_rooms(&self, users: Vec<OwnedUserId>) -> Result<impl Iterator<Item = Result<OwnedRoomId>> + '_> {
|
2022-08-14 13:38:21 +02:00
|
|
|
self.db.get_shared_rooms(users)
|
2020-08-18 12:15:27 +02:00
|
|
|
}
|
2022-08-14 13:38:21 +02:00
|
|
|
}
|