1
0
Fork 0

Search: don't filter by age for people who hide their age

main
Noah Petherbridge 2023-10-08 10:57:08 -07:00
parent eb571e1933
commit c9c89100f9
1 changed files with 18 additions and 2 deletions

View File

@ -320,13 +320,29 @@ func SearchUsers(user *User, search *UserSearch, pager *Pagination) ([]*User, er
if search.AgeMin > 0 {
date := time.Now().AddDate(-search.AgeMin, 0, 0)
wheres = append(wheres, "birthdate <= ?")
wheres = append(wheres, `
birthdate <= ? AND NOT EXISTS (
SELECT 1
FROM profile_fields
WHERE user_id = users.id
AND name = 'hide_age'
AND value = 'true'
)
`)
placeholders = append(placeholders, date)
}
if search.AgeMax > 0 {
date := time.Now().AddDate(-search.AgeMax-1, 0, 0)
wheres = append(wheres, "birthdate >= ?")
wheres = append(wheres, `
birthdate >= ? AND NOT EXISTS (
SELECT 1
FROM profile_fields
WHERE user_id = users.id
AND name = 'hide_age'
AND value = 'true'
)
`)
placeholders = append(placeholders, date)
}