Nutomic
e4a49b6eab
* Tag posts and comments with language (fixes #440) * Untangle PostView tests * Implement test for PostView language query * Store languages directly in database * finish moving languages into db, it compiles * update post_view * serde skip Language.id field * add local_user_language table, other changes suggested in review * add code for local_user_discussion_language_view * Remove unnecessary clones in db view converteres * Fixing up some table and join issues. * Clearing the current languages. * Fix formatting. * update user languages in single transaction * proper test for user language queries * Some fixes for all / missing user languages. (#2404) * Some fixes for all / missing user languages. * Adding back in transaction. * fix test Co-authored-by: Dessalines <tyhou13@gmx.com> Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
32 lines
993 B
Rust
32 lines
993 B
Rust
use crate::structs::LocalUserDiscussionLanguageView;
|
|
use diesel::{result::Error, ExpressionMethods, PgConnection, QueryDsl, RunQueryDsl};
|
|
use lemmy_db_schema::{
|
|
newtypes::LocalUserId,
|
|
schema::{language, local_user, local_user_language},
|
|
source::{
|
|
language::Language,
|
|
local_user::{LocalUser, LocalUserSettings},
|
|
},
|
|
traits::ToSafeSettings,
|
|
};
|
|
|
|
type LocalUserDiscussionLanguageViewTuple = (LocalUserSettings, Language);
|
|
|
|
impl LocalUserDiscussionLanguageView {
|
|
pub fn read_languages(
|
|
conn: &PgConnection,
|
|
local_user_id: LocalUserId,
|
|
) -> Result<Vec<Language>, Error> {
|
|
let res = local_user_language::table
|
|
.inner_join(local_user::table)
|
|
.inner_join(language::table)
|
|
.select((
|
|
LocalUser::safe_settings_columns_tuple(),
|
|
language::all_columns,
|
|
))
|
|
.filter(local_user::id.eq(local_user_id))
|
|
.load::<LocalUserDiscussionLanguageViewTuple>(conn)?;
|
|
|
|
Ok(res.into_iter().map(|a| a.1).collect::<Vec<Language>>())
|
|
}
|
|
}
|