mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-10 06:54:12 +00:00
Merge pull request #1921 from LemmyNet/fix_login
Fix login ilike bug. Fixes #1920
This commit is contained in:
commit
88e81dce6b
3 changed files with 10 additions and 7 deletions
|
@ -5,7 +5,7 @@ use crate::{
|
|||
source::person::{Person, PersonForm},
|
||||
traits::Crud,
|
||||
};
|
||||
use diesel::{dsl::*, result::Error, ExpressionMethods, PgConnection, QueryDsl, RunQueryDsl, *};
|
||||
use diesel::{dsl::*, result::Error, ExpressionMethods, PgConnection, QueryDsl, RunQueryDsl};
|
||||
use url::Url;
|
||||
|
||||
mod safe_type {
|
||||
|
@ -194,7 +194,7 @@ impl Person {
|
|||
person
|
||||
.filter(deleted.eq(false))
|
||||
.filter(local.eq(true))
|
||||
.filter(name.ilike(from_name))
|
||||
.filter(name.eq(from_name))
|
||||
.first::<Person>(conn)
|
||||
}
|
||||
|
||||
|
|
|
@ -70,7 +70,7 @@ pub fn from_opt_str_to_opt_enum<T: std::str::FromStr>(opt: &Option<String>) -> O
|
|||
}
|
||||
|
||||
pub fn fuzzy_search(q: &str) -> String {
|
||||
let replaced = q.replace(" ", "%");
|
||||
let replaced = q.replace("%", "\\%").replace("_", "\\_").replace(" ", "%");
|
||||
format!("%{}%", replaced)
|
||||
}
|
||||
|
||||
|
@ -154,8 +154,11 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_fuzzy_search() {
|
||||
let test = "This is a fuzzy search";
|
||||
assert_eq!(fuzzy_search(test), "%This%is%a%fuzzy%search%".to_string());
|
||||
let test = "This %is% _a_ fuzzy search";
|
||||
assert_eq!(
|
||||
fuzzy_search(test),
|
||||
"%This%\\%is\\%%\\_a\\_%fuzzy%search%".to_string()
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
|
@ -82,8 +82,8 @@ impl LocalUserView {
|
|||
.inner_join(person_aggregates::table.on(person::id.eq(person_aggregates::person_id)))
|
||||
.filter(
|
||||
person::name
|
||||
.ilike(name_or_email)
|
||||
.or(local_user::email.ilike(name_or_email)),
|
||||
.eq(name_or_email)
|
||||
.or(local_user::email.eq(name_or_email)),
|
||||
)
|
||||
.select((
|
||||
local_user::all_columns,
|
||||
|
|
Loading…
Reference in a new issue