mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-02-10 19:14:55 +00:00
* add private visibility * filter private communities in post_view.rs * also filter in comment_view * community follower state * remove unused method * sql fmt * add CommunityFollower.approved_by * implement api endpoints * api changes * only admins can create private community for now * add local api tests * fix api tests * follow remote private community * use authorized fetch for content in private community * federate community visibility * dont mark content in private community as public * expose ApprovalRequired in api * also check content fetchable for outbox/featured * address private community content to followers * implement reject activity * fix tests * add files * remove local api tests * dont use delay * is_new_instance * single query for is_new_instance * return subscribed type for pending follow * working * need to catch errors in waitUntil * clippy * fix query * lint for unused async * diesel.toml comment * add comment * avoid db reads * rename approved_by to approver_id * add helper * form init * list pending follows should return items for all communities * clippy * ci * fix down migration * fix api tests * references * rename * run git diff * ci * fix schema check * fix joins * ci * ci * skip_serializing_none * fix test --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
61 lines
1.6 KiB
Rust
61 lines
1.6 KiB
Rust
use super::actor_language::UNDETERMINED_ID;
|
|
use crate::{
|
|
diesel::ExpressionMethods,
|
|
newtypes::LanguageId,
|
|
schema::language,
|
|
source::language::Language,
|
|
utils::{get_conn, DbPool},
|
|
};
|
|
use diesel::{result::Error, QueryDsl};
|
|
use diesel_async::RunQueryDsl;
|
|
|
|
impl Language {
|
|
pub async fn read_all(pool: &mut DbPool<'_>) -> Result<Vec<Self>, Error> {
|
|
let conn = &mut get_conn(pool).await?;
|
|
language::table.load(conn).await
|
|
}
|
|
|
|
pub async fn read_from_id(pool: &mut DbPool<'_>, id_: LanguageId) -> Result<Self, Error> {
|
|
let conn = &mut get_conn(pool).await?;
|
|
language::table.find(id_).first(conn).await
|
|
}
|
|
|
|
/// Attempts to find the given language code and return its ID.
|
|
pub async fn read_id_from_code(pool: &mut DbPool<'_>, code_: &str) -> Result<LanguageId, Error> {
|
|
let conn = &mut get_conn(pool).await?;
|
|
let res = language::table
|
|
.filter(language::code.eq(code_))
|
|
.first::<Self>(conn)
|
|
.await
|
|
.map(|l| l.id);
|
|
|
|
// Return undetermined by default
|
|
Ok(res.unwrap_or(UNDETERMINED_ID))
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
#[expect(clippy::indexing_slicing)]
|
|
mod tests {
|
|
|
|
use crate::{source::language::Language, utils::build_db_pool_for_tests};
|
|
use diesel::result::Error;
|
|
use pretty_assertions::assert_eq;
|
|
use serial_test::serial;
|
|
|
|
#[tokio::test]
|
|
#[serial]
|
|
async fn test_languages() -> Result<(), Error> {
|
|
let pool = &build_db_pool_for_tests();
|
|
let pool = &mut pool.into();
|
|
|
|
let all = Language::read_all(pool).await?;
|
|
|
|
assert_eq!(184, all.len());
|
|
assert_eq!("ak", all[5].code);
|
|
assert_eq!("lv", all[99].code);
|
|
assert_eq!("yi", all[179].code);
|
|
|
|
Ok(())
|
|
}
|
|
}
|