2022-11-09 10:05:00 +00:00
|
|
|
use crate::{
|
|
|
|
diesel::ExpressionMethods,
|
|
|
|
newtypes::LanguageId,
|
2024-04-16 12:48:15 +00:00
|
|
|
schema::language,
|
2022-11-09 10:05:00 +00:00
|
|
|
source::language::Language,
|
|
|
|
utils::{get_conn, DbPool},
|
|
|
|
};
|
|
|
|
use diesel::{result::Error, QueryDsl};
|
2023-07-11 13:09:59 +00:00
|
|
|
use diesel_async::RunQueryDsl;
|
2022-08-18 19:11:19 +00:00
|
|
|
|
|
|
|
impl Language {
|
2024-04-16 12:48:15 +00:00
|
|
|
pub async fn read_all(pool: &mut DbPool<'_>) -> Result<Vec<Self>, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
2024-04-16 12:48:15 +00:00
|
|
|
language::table.load(conn).await
|
2022-08-18 19:11:19 +00:00
|
|
|
}
|
|
|
|
|
2024-04-16 12:48:15 +00:00
|
|
|
pub async fn read_from_id(pool: &mut DbPool<'_>, id_: LanguageId) -> Result<Self, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
2024-04-16 12:48:15 +00:00
|
|
|
language::table.find(id_).first(conn).await
|
2022-08-18 19:11:19 +00:00
|
|
|
}
|
|
|
|
|
2023-02-05 05:38:08 +00:00
|
|
|
/// Attempts to find the given language code and return its ID. If not found, returns none.
|
|
|
|
pub async fn read_id_from_code(
|
2023-07-11 13:09:59 +00:00
|
|
|
pool: &mut DbPool<'_>,
|
2022-08-18 19:11:19 +00:00
|
|
|
code_: Option<&str>,
|
|
|
|
) -> Result<Option<LanguageId>, Error> {
|
|
|
|
if let Some(code_) = code_ {
|
2023-02-05 05:38:08 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
Ok(
|
2024-04-16 12:48:15 +00:00
|
|
|
language::table
|
|
|
|
.filter(language::code.eq(code_))
|
2023-02-05 05:38:08 +00:00
|
|
|
.first::<Self>(conn)
|
|
|
|
.await
|
|
|
|
.map(|l| l.id)
|
|
|
|
.ok(),
|
|
|
|
)
|
2022-08-18 19:11:19 +00:00
|
|
|
} else {
|
|
|
|
Ok(None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
2024-03-26 09:17:42 +00:00
|
|
|
#[allow(clippy::unwrap_used)]
|
|
|
|
#[allow(clippy::indexing_slicing)]
|
2022-08-18 19:11:19 +00:00
|
|
|
mod tests {
|
2023-07-17 15:04:14 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
use crate::{source::language::Language, utils::build_db_pool_for_tests};
|
2024-01-04 09:47:18 +00:00
|
|
|
use pretty_assertions::assert_eq;
|
2022-08-18 19:11:19 +00:00
|
|
|
use serial_test::serial;
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
#[tokio::test]
|
2022-08-18 19:11:19 +00:00
|
|
|
#[serial]
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn test_languages() {
|
|
|
|
let pool = &build_db_pool_for_tests().await;
|
2023-07-11 13:09:59 +00:00
|
|
|
let pool = &mut pool.into();
|
2022-08-18 19:11:19 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let all = Language::read_all(pool).await.unwrap();
|
2022-08-18 19:11:19 +00:00
|
|
|
|
|
|
|
assert_eq!(184, all.len());
|
|
|
|
assert_eq!("ak", all[5].code);
|
|
|
|
assert_eq!("lv", all[99].code);
|
|
|
|
assert_eq!("yi", all[179].code);
|
|
|
|
}
|
|
|
|
}
|