mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-22 17:19:07 -05:00
Merge pull request #13 from scsibug/master
Fork Sync: Update from parent repository
This commit is contained in:
commit
a2a67dec95
|
@ -30,7 +30,8 @@ To get the service running, we need to reload the systemd daemon and enable the
|
||||||
|
|
||||||
1. `sudo systemctl daemon-reload`
|
1. `sudo systemctl daemon-reload`
|
||||||
2. `sudo systemctl start nostr-rs-relay.service`
|
2. `sudo systemctl start nostr-rs-relay.service`
|
||||||
3. `sudo systemctl status nostr-rs-relay.service`
|
3. `sudo systemctl enable nostr-rs-relay.service`
|
||||||
|
4. `sudo systemctl status nostr-rs-relay.service`
|
||||||
|
|
||||||
|
|
||||||
### Tips
|
### Tips
|
||||||
|
|
|
@ -401,6 +401,9 @@ pub async fn db_writer(
|
||||||
start.elapsed()
|
start.elapsed()
|
||||||
);
|
);
|
||||||
event_write = true;
|
event_write = true;
|
||||||
|
|
||||||
|
// send OK message
|
||||||
|
notice_tx.try_send(Notice::saved(event.id)).ok();
|
||||||
} else {
|
} else {
|
||||||
match repo.write_event(&event).await {
|
match repo.write_event(&event).await {
|
||||||
Ok(updated) => {
|
Ok(updated) => {
|
||||||
|
|
|
@ -45,7 +45,7 @@ pub struct RelayInfo {
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub contact: Option<String>,
|
pub contact: Option<String>,
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub icon: Option<String>,
|
pub icon: Option<String>,
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub supported_nips: Option<Vec<i64>>,
|
pub supported_nips: Option<Vec<i64>>,
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
|
|
@ -60,7 +60,8 @@ async fn cleanup_expired(conn: PostgresPool, frequency: Duration) -> Result<()>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
Ok(())
|
Ok(())
|
||||||
|
@ -150,19 +151,19 @@ impl NostrRepo for PostgresRepo {
|
||||||
VALUES($1, $2, $3, $4, $5, $6, $7)
|
VALUES($1, $2, $3, $4, $5, $6, $7)
|
||||||
ON CONFLICT (id) DO NOTHING"#,
|
ON CONFLICT (id) DO NOTHING"#,
|
||||||
)
|
)
|
||||||
.bind(&id_blob)
|
.bind(&id_blob)
|
||||||
.bind(&pubkey_blob)
|
.bind(&pubkey_blob)
|
||||||
.bind(Utc.timestamp_opt(e.created_at as i64, 0).unwrap())
|
.bind(Utc.timestamp_opt(e.created_at as i64, 0).unwrap())
|
||||||
.bind(
|
.bind(
|
||||||
e.expiration()
|
e.expiration()
|
||||||
.and_then(|x| Utc.timestamp_opt(x as i64, 0).latest()),
|
.and_then(|x| Utc.timestamp_opt(x as i64, 0).latest()),
|
||||||
)
|
)
|
||||||
.bind(e.kind as i64)
|
.bind(e.kind as i64)
|
||||||
.bind(event_str.into_bytes())
|
.bind(event_str.into_bytes())
|
||||||
.bind(delegator_blob)
|
.bind(delegator_blob)
|
||||||
.execute(&mut tx)
|
.execute(&mut tx)
|
||||||
.await?
|
.await?
|
||||||
.rows_affected();
|
.rows_affected();
|
||||||
|
|
||||||
if ins_count == 0 {
|
if ins_count == 0 {
|
||||||
// if the event was a duplicate, no need to insert event or
|
// if the event was a duplicate, no need to insert event or
|
||||||
|
@ -282,10 +283,10 @@ ON CONFLICT (id) DO NOTHING"#,
|
||||||
LEFT JOIN tag t ON e.id = t.event_id \
|
LEFT JOIN tag t ON e.id = t.event_id \
|
||||||
WHERE e.pub_key = $1 AND t.\"name\" = 'e' AND e.kind = 5 AND t.value = $2 LIMIT 1",
|
WHERE e.pub_key = $1 AND t.\"name\" = 'e' AND e.kind = 5 AND t.value = $2 LIMIT 1",
|
||||||
)
|
)
|
||||||
.bind(&pubkey_blob)
|
.bind(&pubkey_blob)
|
||||||
.bind(&id_blob)
|
.bind(&id_blob)
|
||||||
.fetch_optional(&mut tx)
|
.fetch_optional(&mut tx)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
// check if a the query returned a result, meaning we should
|
// check if a the query returned a result, meaning we should
|
||||||
// hid the current event
|
// hid the current event
|
||||||
|
@ -576,10 +577,10 @@ ON CONFLICT (id) DO NOTHING"#,
|
||||||
sqlx::query(
|
sqlx::query(
|
||||||
"UPDATE account SET is_admitted = TRUE, balance = balance - $1 WHERE pubkey = $2",
|
"UPDATE account SET is_admitted = TRUE, balance = balance - $1 WHERE pubkey = $2",
|
||||||
)
|
)
|
||||||
.bind(admission_cost as i64)
|
.bind(admission_cost as i64)
|
||||||
.bind(pub_key)
|
.bind(pub_key)
|
||||||
.execute(&self.conn_write)
|
.execute(&self.conn_write)
|
||||||
.await?;
|
.await?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -637,14 +638,14 @@ ON CONFLICT (id) DO NOTHING"#,
|
||||||
sqlx::query(
|
sqlx::query(
|
||||||
"INSERT INTO invoice (pubkey, payment_hash, amount, status, description, created_at, invoice) VALUES ($1, $2, $3, $4, $5, now(), $6)",
|
"INSERT INTO invoice (pubkey, payment_hash, amount, status, description, created_at, invoice) VALUES ($1, $2, $3, $4, $5, now(), $6)",
|
||||||
)
|
)
|
||||||
.bind(pub_key)
|
.bind(pub_key)
|
||||||
.bind(invoice_info.payment_hash)
|
.bind(invoice_info.payment_hash)
|
||||||
.bind(invoice_info.amount as i64)
|
.bind(invoice_info.amount as i64)
|
||||||
.bind(invoice_info.status)
|
.bind(invoice_info.status)
|
||||||
.bind(invoice_info.memo)
|
.bind(invoice_info.memo)
|
||||||
.bind(invoice_info.bolt11)
|
.bind(invoice_info.bolt11)
|
||||||
.execute(&mut tx)
|
.execute(&mut tx)
|
||||||
.await.unwrap();
|
.await.unwrap();
|
||||||
|
|
||||||
debug!("Invoice added");
|
debug!("Invoice added");
|
||||||
|
|
||||||
|
@ -880,17 +881,32 @@ fn query_from_filter(f: &ReqFilter) -> Option<QueryBuilder<Postgres>> {
|
||||||
for (key, val) in map.iter() {
|
for (key, val) in map.iter() {
|
||||||
query.push("e.id IN (SELECT ee.id FROM \"event\" ee LEFT JOIN tag t on ee.id = t.event_id WHERE ee.hidden != 1::bit(1) and (t.\"name\" = ")
|
query.push("e.id IN (SELECT ee.id FROM \"event\" ee LEFT JOIN tag t on ee.id = t.event_id WHERE ee.hidden != 1::bit(1) and (t.\"name\" = ")
|
||||||
.push_bind(key.to_string())
|
.push_bind(key.to_string())
|
||||||
.push(" AND (value in (");
|
.push(" AND (");
|
||||||
|
|
||||||
// plain value match first
|
let has_plain_values = val.iter().any(|v| !is_lower_hex(v));
|
||||||
let mut tag_query = query.separated(", ");
|
let has_hex_values = val.iter().any(|v| v.len() % 2 == 0 && is_lower_hex(v));
|
||||||
for v in val.iter() {
|
if has_plain_values {
|
||||||
if (v.len() % 2 != 0) && !is_lower_hex(v) {
|
query.push("value in (");
|
||||||
|
// plain value match first
|
||||||
|
let mut tag_query = query.separated(", ");
|
||||||
|
for v in val.iter()
|
||||||
|
.filter(|v| !is_lower_hex(v)) {
|
||||||
tag_query.push_bind(v.as_bytes());
|
tag_query.push_bind(v.as_bytes());
|
||||||
} else {
|
}
|
||||||
|
}
|
||||||
|
if has_plain_values && has_hex_values {
|
||||||
|
query.push(") OR ");
|
||||||
|
}
|
||||||
|
if has_hex_values {
|
||||||
|
query.push("value_hex in (");
|
||||||
|
// plain value match first
|
||||||
|
let mut tag_query = query.separated(", ");
|
||||||
|
for v in val.iter()
|
||||||
|
.filter(|v| v.len() % 2 == 0 && is_lower_hex(v)) {
|
||||||
tag_query.push_bind(hex::decode(v).ok());
|
tag_query.push_bind(hex::decode(v).ok());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
query.push("))))");
|
query.push("))))");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -925,10 +941,7 @@ fn query_from_filter(f: &ReqFilter) -> Option<QueryBuilder<Postgres>> {
|
||||||
query.push("e.hidden != 1::bit(1)");
|
query.push("e.hidden != 1::bit(1)");
|
||||||
}
|
}
|
||||||
// never display expired events
|
// never display expired events
|
||||||
query
|
query.push(" AND (e.expires_at IS NULL OR e.expires_at > now())");
|
||||||
.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.
|
// Apply per-filter limit to this query.
|
||||||
// The use of a LIMIT implies a DESC order, to capture only the most recent events.
|
// The use of a LIMIT implies a DESC order, to capture only the most recent events.
|
||||||
|
@ -963,3 +976,67 @@ impl FromRow<'_, PgRow> for VerificationRecord {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use std::collections::{HashMap, HashSet};
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_query_gen_tag_value_hex() {
|
||||||
|
let filter = ReqFilter {
|
||||||
|
ids: None,
|
||||||
|
kinds: Some(vec![1000]),
|
||||||
|
since: None,
|
||||||
|
until: None,
|
||||||
|
authors: Some(vec!["84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864".to_owned()]),
|
||||||
|
limit: None,
|
||||||
|
tags: Some(HashMap::from([
|
||||||
|
('p', HashSet::from(["63fe6318dc58583cfe16810f86dd09e18bfd76aabc24a0081ce2856f330504ed".to_owned()]))
|
||||||
|
])),
|
||||||
|
force_no_match: false,
|
||||||
|
};
|
||||||
|
|
||||||
|
let q = query_from_filter(&filter).unwrap();
|
||||||
|
assert_eq!(q.sql(), "SELECT e.\"content\", e.created_at FROM \"event\" e WHERE (e.pub_key in ($1) OR e.delegated_by in ($2)) AND e.kind in ($3) AND e.id IN (SELECT ee.id FROM \"event\" ee LEFT JOIN tag t on ee.id = t.event_id WHERE ee.hidden != 1::bit(1) and (t.\"name\" = $4 AND (value_hex in ($5)))) AND e.hidden != 1::bit(1) AND (e.expires_at IS NULL OR e.expires_at > now()) ORDER BY e.created_at ASC LIMIT 1000")
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_query_gen_tag_value() {
|
||||||
|
let filter = ReqFilter {
|
||||||
|
ids: None,
|
||||||
|
kinds: Some(vec![1000]),
|
||||||
|
since: None,
|
||||||
|
until: None,
|
||||||
|
authors: Some(vec!["84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864".to_owned()]),
|
||||||
|
limit: None,
|
||||||
|
tags: Some(HashMap::from([
|
||||||
|
('d', HashSet::from(["test".to_owned()]))
|
||||||
|
])),
|
||||||
|
force_no_match: false,
|
||||||
|
};
|
||||||
|
|
||||||
|
let q = query_from_filter(&filter).unwrap();
|
||||||
|
assert_eq!(q.sql(), "SELECT e.\"content\", e.created_at FROM \"event\" e WHERE (e.pub_key in ($1) OR e.delegated_by in ($2)) AND e.kind in ($3) AND e.id IN (SELECT ee.id FROM \"event\" ee LEFT JOIN tag t on ee.id = t.event_id WHERE ee.hidden != 1::bit(1) and (t.\"name\" = $4 AND (value in ($5)))) AND e.hidden != 1::bit(1) AND (e.expires_at IS NULL OR e.expires_at > now()) ORDER BY e.created_at ASC LIMIT 1000")
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_query_gen_tag_value_and_value_hex() {
|
||||||
|
let filter = ReqFilter {
|
||||||
|
ids: None,
|
||||||
|
kinds: Some(vec![1000]),
|
||||||
|
since: None,
|
||||||
|
until: None,
|
||||||
|
authors: Some(vec!["84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864".to_owned()]),
|
||||||
|
limit: None,
|
||||||
|
tags: Some(HashMap::from([
|
||||||
|
('d', HashSet::from(["test".to_owned(), "63fe6318dc58583cfe16810f86dd09e18bfd76aabc24a0081ce2856f330504ed".to_owned()]))
|
||||||
|
])),
|
||||||
|
force_no_match: false,
|
||||||
|
};
|
||||||
|
|
||||||
|
let q = query_from_filter(&filter).unwrap();
|
||||||
|
assert_eq!(q.sql(), "SELECT e.\"content\", e.created_at FROM \"event\" e WHERE (e.pub_key in ($1) OR e.delegated_by in ($2)) AND e.kind in ($3) AND e.id IN (SELECT ee.id FROM \"event\" ee LEFT JOIN tag t on ee.id = t.event_id WHERE ee.hidden != 1::bit(1) and (t.\"name\" = $4 AND (value in ($5) OR value_hex in ($6)))) AND e.hidden != 1::bit(1) AND (e.expires_at IS NULL OR e.expires_at > now()) ORDER BY e.created_at ASC LIMIT 1000")
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user