mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-12 14:29:06 -05:00
fix: Postgres SQL generation for expiring events
This commit is contained in:
parent
5638f70d66
commit
9d55731073
|
@ -550,6 +550,7 @@ fn query_from_filter(f: &ReqFilter) -> Option<QueryBuilder<Postgres>> {
|
|||
|
||||
let mut query = QueryBuilder::new("SELECT e.\"content\", e.created_at FROM \"event\" e WHERE ");
|
||||
|
||||
// This tracks whether we need to push a prefix AND before adding another clause
|
||||
let mut push_and = false;
|
||||
// Query for "authors", allowing prefix matches
|
||||
if let Some(auth_vec) = &f.authors {
|
||||
|
@ -747,13 +748,9 @@ fn query_from_filter(f: &ReqFilter) -> Option<QueryBuilder<Postgres>> {
|
|||
} else {
|
||||
query.push("e.hidden != 1::bit(1)");
|
||||
}
|
||||
|
||||
// never display expired events
|
||||
if push_and {
|
||||
query.push(" AND ");
|
||||
}
|
||||
query
|
||||
.push("(e.expires_at IS NULL OR e.expires_at > ")
|
||||
.push(" AND (e.expires_at IS NULL OR e.expires_at > ")
|
||||
.push_bind(Utc.timestamp_opt(utils::unix_time() as i64, 0).unwrap()).push(")");
|
||||
|
||||
// Apply per-filter limit to this query.
|
||||
|
|
Loading…
Reference in New Issue
Block a user