Force enable undetermined language (#2851)

* Force enable undetermined language

* update

* fix tests
This commit is contained in:
Nutomic 2023-05-18 16:34:21 +02:00 committed by GitHub
parent e856eda74d
commit 8410a9696e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 44 additions and 22 deletions

View file

@ -72,7 +72,7 @@ impl LocalUserLanguage {
for_local_user_id: LocalUserId, for_local_user_id: LocalUserId,
) -> Result<(), Error> { ) -> Result<(), Error> {
let conn = &mut get_conn(pool).await?; let conn = &mut get_conn(pool).await?;
let lang_ids = convert_update_languages(conn, language_ids).await?; let mut lang_ids = convert_update_languages(conn, language_ids).await?;
// No need to update if languages are unchanged // No need to update if languages are unchanged
let current = LocalUserLanguage::read(pool, for_local_user_id).await?; let current = LocalUserLanguage::read(pool, for_local_user_id).await?;
@ -80,6 +80,16 @@ impl LocalUserLanguage {
return Ok(()); return Ok(());
} }
// TODO: Force enable undetermined language for all users. This is necessary because many posts
// don't have a language tag (e.g. those from other federated platforms), so Lemmy users
// won't see them if undetermined language is disabled.
// This hack can be removed once a majority of posts have language tags, or when it is
// clearer for new users that they need to enable undetermined language.
// See https://github.com/LemmyNet/lemmy-ui/issues/999
if !lang_ids.contains(&UNDETERMINED_ID) {
lang_ids.push(UNDETERMINED_ID);
}
conn conn
.build_transaction() .build_transaction()
.run(|conn| { .run(|conn| {
@ -523,7 +533,7 @@ mod tests {
let pool = &build_db_pool_for_tests().await; let pool = &build_db_pool_for_tests().await;
let (site, instance) = create_test_site(pool).await; let (site, instance) = create_test_site(pool).await;
let test_langs = test_langs1(pool).await; let mut test_langs = test_langs1(pool).await;
SiteLanguage::update(pool, test_langs.clone(), &site) SiteLanguage::update(pool, test_langs.clone(), &site)
.await .await
.unwrap(); .unwrap();
@ -542,7 +552,10 @@ mod tests {
let local_user = LocalUser::create(pool, &local_user_form).await.unwrap(); let local_user = LocalUser::create(pool, &local_user_form).await.unwrap();
let local_user_langs1 = LocalUserLanguage::read(pool, local_user.id).await.unwrap(); let local_user_langs1 = LocalUserLanguage::read(pool, local_user.id).await.unwrap();
// new user should be initialized with site languages // new user should be initialized with site languages and undetermined
//test_langs.push(UNDETERMINED_ID);
//test_langs.sort();
test_langs.insert(0, UNDETERMINED_ID);
assert_eq!(test_langs, local_user_langs1); assert_eq!(test_langs, local_user_langs1);
// update user languages // update user languages
@ -551,7 +564,7 @@ mod tests {
.await .await
.unwrap(); .unwrap();
let local_user_langs2 = LocalUserLanguage::read(pool, local_user.id).await.unwrap(); let local_user_langs2 = LocalUserLanguage::read(pool, local_user.id).await.unwrap();
assert_eq!(2, local_user_langs2.len()); assert_eq!(3, local_user_langs2.len());
Person::delete(pool, person.id).await.unwrap(); Person::delete(pool, person.id).await.unwrap();
LocalUser::delete(pool, local_user.id).await.unwrap(); LocalUser::delete(pool, local_user.id).await.unwrap();
@ -626,8 +639,7 @@ mod tests {
async fn test_default_post_language() { async fn test_default_post_language() {
let pool = &build_db_pool_for_tests().await; let pool = &build_db_pool_for_tests().await;
let (site, instance) = create_test_site(pool).await; let (site, instance) = create_test_site(pool).await;
let mut test_langs = test_langs1(pool).await; let test_langs = test_langs1(pool).await;
test_langs.push(UNDETERMINED_ID);
let test_langs2 = test_langs2(pool).await; let test_langs2 = test_langs2(pool).await;
let community_form = CommunityInsertForm::builder() let community_form = CommunityInsertForm::builder()
@ -656,7 +668,7 @@ mod tests {
.await .await
.unwrap(); .unwrap();
// no overlap in user/community languages, so no default language for post // no overlap in user/community languages, so defaults to undetermined
let def1 = default_post_language(pool, community.id, local_user.id) let def1 = default_post_language(pool, community.id, local_user.id)
.await .await
.unwrap(); .unwrap();

View file

@ -468,6 +468,7 @@ mod tests {
.build(); .build();
let inserted_post = Post::create(pool, &new_post).await.unwrap(); let inserted_post = Post::create(pool, &new_post).await.unwrap();
let english_id = Language::read_id_from_code(pool, Some("en")).await.unwrap();
// Create a comment tree with this hierarchy // Create a comment tree with this hierarchy
// 0 // 0
@ -481,6 +482,7 @@ mod tests {
.content("Comment 0".into()) .content("Comment 0".into())
.creator_id(inserted_person.id) .creator_id(inserted_person.id)
.post_id(inserted_post.id) .post_id(inserted_post.id)
.language_id(english_id)
.build(); .build();
let inserted_comment_0 = Comment::create(pool, &comment_form_0, None).await.unwrap(); let inserted_comment_0 = Comment::create(pool, &comment_form_0, None).await.unwrap();
@ -489,21 +491,19 @@ mod tests {
.content("Comment 1, A test blocked comment".into()) .content("Comment 1, A test blocked comment".into())
.creator_id(inserted_person_2.id) .creator_id(inserted_person_2.id)
.post_id(inserted_post.id) .post_id(inserted_post.id)
.language_id(english_id)
.build(); .build();
let inserted_comment_1 = Comment::create(pool, &comment_form_1, Some(&inserted_comment_0.path)) let inserted_comment_1 = Comment::create(pool, &comment_form_1, Some(&inserted_comment_0.path))
.await .await
.unwrap(); .unwrap();
let finnish_id = Language::read_id_from_code(pool, Some("fi")) let finnish_id = Language::read_id_from_code(pool, Some("fi")).await.unwrap();
.await
.unwrap()
.unwrap();
let comment_form_2 = CommentInsertForm::builder() let comment_form_2 = CommentInsertForm::builder()
.content("Comment 2".into()) .content("Comment 2".into())
.creator_id(inserted_person.id) .creator_id(inserted_person.id)
.post_id(inserted_post.id) .post_id(inserted_post.id)
.language_id(Some(finnish_id)) .language_id(finnish_id)
.build(); .build();
let inserted_comment_2 = Comment::create(pool, &comment_form_2, Some(&inserted_comment_0.path)) let inserted_comment_2 = Comment::create(pool, &comment_form_2, Some(&inserted_comment_0.path))
@ -514,6 +514,7 @@ mod tests {
.content("Comment 3".into()) .content("Comment 3".into())
.creator_id(inserted_person.id) .creator_id(inserted_person.id)
.post_id(inserted_post.id) .post_id(inserted_post.id)
.language_id(english_id)
.build(); .build();
let _inserted_comment_3 = let _inserted_comment_3 =
@ -736,7 +737,7 @@ mod tests {
.unwrap(); .unwrap();
assert_eq!(5, all_languages.len()); assert_eq!(5, all_languages.len());
// change user lang to finnish, should only show single finnish comment // change user lang to finnish, should only show one post in finnish and one undetermined
let finnish_id = Language::read_id_from_code(pool, Some("fi")) let finnish_id = Language::read_id_from_code(pool, Some("fi"))
.await .await
.unwrap() .unwrap()
@ -744,19 +745,22 @@ mod tests {
LocalUserLanguage::update(pool, vec![finnish_id], data.inserted_local_user.id) LocalUserLanguage::update(pool, vec![finnish_id], data.inserted_local_user.id)
.await .await
.unwrap(); .unwrap();
let finnish_comment = CommentQuery::builder() let finnish_comments = CommentQuery::builder()
.pool(pool) .pool(pool)
.local_user(Some(&data.inserted_local_user)) .local_user(Some(&data.inserted_local_user))
.build() .build()
.list() .list()
.await .await
.unwrap(); .unwrap();
assert_eq!(1, finnish_comment.len()); assert_eq!(2, finnish_comments.len());
let finnish_comment = finnish_comments
.iter()
.find(|c| c.comment.language_id == finnish_id);
assert!(finnish_comment.is_some());
assert_eq!( assert_eq!(
data.inserted_comment_2.content, data.inserted_comment_2.content,
finnish_comment[0].comment.content finnish_comment.unwrap().comment.content
); );
assert_eq!(finnish_id, finnish_comment[0].comment.language_id);
// now show all comments with undetermined language (which is the default value) // now show all comments with undetermined language (which is the default value)
LocalUserLanguage::update(pool, vec![UNDETERMINED_ID], data.inserted_local_user.id) LocalUserLanguage::update(pool, vec![UNDETERMINED_ID], data.inserted_local_user.id)
@ -769,7 +773,7 @@ mod tests {
.list() .list()
.await .await
.unwrap(); .unwrap();
assert_eq!(3, undetermined_comment.len()); assert_eq!(1, undetermined_comment.len());
cleanup(data, pool).await; cleanup(data, pool).await;
} }
@ -820,7 +824,7 @@ mod tests {
local: true, local: true,
distinguished: false, distinguished: false,
path: data.inserted_comment_0.clone().path, path: data.inserted_comment_0.clone().path,
language_id: LanguageId(0), language_id: LanguageId(37),
}, },
creator: Person { creator: Person {
id: data.inserted_person.id, id: data.inserted_person.id,

View file

@ -799,9 +799,11 @@ mod tests {
.await .await
.unwrap(); .unwrap();
// only one french language post should be returned // only one post in french and one undetermined should be returned
assert_eq!(1, post_listing_french.len()); assert_eq!(2, post_listing_french.len());
assert_eq!(french_id, post_listing_french[0].post.language_id); assert!(post_listing_french
.iter()
.any(|p| p.post.language_id == french_id));
LocalUserLanguage::update( LocalUserLanguage::update(
pool, pool,

View file

@ -0,0 +1,4 @@
-- force enable undetermined language for all users
insert into local_user_language (local_user_id, language_id)
select id, 0 from local_user
on conflict (local_user_id, language_id) do nothing;