summaryrefslogtreecommitdiff
path: root/src/database/mod.rs
blob: ab3088413347da3018e64207e2fdd96d1d53cff2 (plain)
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
pub mod album;
pub mod artist;
pub mod search_results;
pub mod song;
pub mod user;

use serde::{Deserialize, Serialize};
use sqlx::mysql::{MySqlPool, MySqlPoolOptions};
use std::env;
use utoipa::ToSchema;

#[derive(Serialize, Deserialize, ToSchema)]
pub struct Delete {
    #[schema(example = "1", required = true)]
    pub id: Option<String>,
}

pub struct DatabaseWrapper {
    db_pool: MySqlPool,
}

impl DatabaseWrapper {
    pub async fn new() -> Result<DatabaseWrapper, sqlx::Error> {
        let pool: MySqlPool = MySqlPoolOptions::new()
            .max_connections(10)
            .connect(env!("DATABASE_URL"))
            .await
            .unwrap(); /* This will break in case of error. It's intended. */

        Ok(DatabaseWrapper { db_pool: pool })
    }
}