summaryrefslogtreecommitdiffstats
path: root/src/file.rs
blob: 15d457a758d8fd6a853aa03d732ed14131502f3c (plain) (blame)
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 uuid::Uuid;

#[derive(sqlx::FromRow)]
pub struct File {
    id: Uuid,
    pub alt_text: String,
    extension: String,
    artwork_id: Option<i32>,
}

impl File {
    pub fn new(file: std::fs::File, extension: String) -> Self {
        let id = Uuid::new_v4();
        Self {
            id,
            alt_text: String::new(),
            extension,
            artwork_id: None,
        }
    }

    pub fn id(&self) -> Uuid {
        self.id
    }

    pub fn extension(&self) -> &str {
        &self.extension
    }

    pub fn artwork_id(&self) -> Option<i32> {
        self.artwork_id
    }
}