File size: 732 Bytes
8c9f41d
 
a02919a
 
 
 
8c9f41d
 
 
 
 
 
 
 
a8c4fcf
 
 
8c9f41d
 
 
 
 
 
 
 
 
 
 
 
a8c4fcf
8c9f41d
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use deadpool_diesel::postgres::Pool;

use crate::{
    models::{dtos::videos::VideoDto, states::AppState},
    repositories::videos::VideoRepository,
};

#[derive(Clone, Copy)]
pub struct VideoService<'a> {
    pool: &'a Pool,
}

impl<'a> From<&'a AppState> for VideoService<'a> {
    fn from(value: &'a AppState) -> Self {
        Self {
            pool: value.diesel_pool(),
        }
    }
}

impl<'a> VideoService<'a> {
    pub const fn pool(&self) -> &'a Pool {
        self.pool
    }
}

impl<'a> VideoService<'a> {
    pub async fn find_by_id(&self, id: i64) -> anyhow::Result<Option<VideoDto>> {
        let repository = VideoRepository::from(self);
        Ok(repository.find_by_id(id).await?.map(VideoDto::from))
    }
}