2021-12-11 22:43:41 -05:00
|
|
|
//! Subscription and filter parsing
|
|
|
|
use crate::error::Result;
|
2021-12-05 18:15:50 -05:00
|
|
|
use crate::event::Event;
|
2022-01-22 22:29:15 -05:00
|
|
|
use serde::de::Unexpected;
|
2021-12-05 18:15:50 -05:00
|
|
|
use serde::{Deserialize, Deserializer, Serialize};
|
2022-01-22 22:29:15 -05:00
|
|
|
use serde_json::Value;
|
|
|
|
use std::collections::HashMap;
|
2022-01-01 19:38:52 -05:00
|
|
|
use std::collections::HashSet;
|
2021-12-05 18:15:50 -05:00
|
|
|
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Subscription identifier and set of request filters
|
2021-12-05 18:15:50 -05:00
|
|
|
#[derive(Serialize, PartialEq, Debug, Clone)]
|
|
|
|
pub struct Subscription {
|
|
|
|
pub id: String,
|
|
|
|
pub filters: Vec<ReqFilter>,
|
|
|
|
}
|
|
|
|
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Filter for requests
|
|
|
|
///
|
|
|
|
/// Corresponds to client-provided subscription request elements. Any
|
|
|
|
/// element can be present if it should be used in filtering, or
|
|
|
|
/// absent ([`None`]) if it should be ignored.
|
2022-01-22 22:29:15 -05:00
|
|
|
#[derive(Serialize, PartialEq, Debug, Clone)]
|
2021-12-05 18:15:50 -05:00
|
|
|
pub struct ReqFilter {
|
2022-01-01 19:38:52 -05:00
|
|
|
/// Event hashes
|
|
|
|
pub ids: Option<Vec<String>>,
|
|
|
|
/// Event kinds
|
|
|
|
pub kinds: Option<Vec<u64>>,
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Events published after this time
|
2021-12-05 18:15:50 -05:00
|
|
|
pub since: Option<u64>,
|
2021-12-23 22:38:32 -05:00
|
|
|
/// Events published before this time
|
|
|
|
pub until: Option<u64>,
|
2021-12-11 22:43:41 -05:00
|
|
|
/// List of author public keys
|
2021-12-05 18:15:50 -05:00
|
|
|
pub authors: Option<Vec<String>>,
|
2022-01-22 22:29:15 -05:00
|
|
|
/// Set of tags
|
2022-01-05 17:33:53 -05:00
|
|
|
#[serde(skip)]
|
2022-01-22 22:29:15 -05:00
|
|
|
pub tags: Option<HashMap<String, HashSet<String>>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'de> Deserialize<'de> for ReqFilter {
|
|
|
|
fn deserialize<D>(deserializer: D) -> Result<ReqFilter, D::Error>
|
|
|
|
where
|
|
|
|
D: Deserializer<'de>,
|
|
|
|
{
|
|
|
|
let received: Value = Deserialize::deserialize(deserializer)?;
|
|
|
|
let filter = received.as_object().ok_or_else(|| {
|
|
|
|
serde::de::Error::invalid_type(
|
|
|
|
Unexpected::Other("reqfilter is not an object"),
|
|
|
|
&"a json object",
|
|
|
|
)
|
|
|
|
})?;
|
|
|
|
let mut rf = ReqFilter {
|
|
|
|
ids: None,
|
|
|
|
kinds: None,
|
|
|
|
since: None,
|
|
|
|
until: None,
|
|
|
|
authors: None,
|
|
|
|
tags: None,
|
|
|
|
};
|
|
|
|
let mut ts = None;
|
|
|
|
// iterate through each key, and assign values that exist
|
|
|
|
for (key, val) in filter.into_iter() {
|
|
|
|
// ids
|
|
|
|
if key == "ids" {
|
|
|
|
rf.ids = Deserialize::deserialize(val).ok();
|
|
|
|
} else if key == "kinds" {
|
|
|
|
rf.kinds = Deserialize::deserialize(val).ok();
|
|
|
|
} else if key == "since" {
|
|
|
|
rf.since = Deserialize::deserialize(val).ok();
|
|
|
|
} else if key == "until" {
|
|
|
|
rf.until = Deserialize::deserialize(val).ok();
|
|
|
|
} else if key == "authors" {
|
|
|
|
rf.authors = Deserialize::deserialize(val).ok();
|
|
|
|
} else if key.starts_with('#') && key.len() > 1 && val.is_array() {
|
|
|
|
// remove the prefix
|
|
|
|
let tagname = &key[1..];
|
|
|
|
if ts.is_none() {
|
|
|
|
// Initialize the tag if necessary
|
|
|
|
ts = Some(HashMap::new());
|
|
|
|
}
|
|
|
|
if let Some(m) = ts.as_mut() {
|
|
|
|
let tag_vals: Option<Vec<String>> = Deserialize::deserialize(val).ok();
|
|
|
|
if let Some(v) = tag_vals {
|
|
|
|
let hs = HashSet::from_iter(v.into_iter());
|
|
|
|
m.insert(tagname.to_owned(), hs);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rf.tags = ts;
|
|
|
|
Ok(rf)
|
|
|
|
}
|
2021-12-05 18:15:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'de> Deserialize<'de> for Subscription {
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Custom deserializer for subscriptions, which have a more
|
|
|
|
/// complex structure than the other message types.
|
2021-12-05 18:15:50 -05:00
|
|
|
fn deserialize<D>(deserializer: D) -> Result<Subscription, D::Error>
|
|
|
|
where
|
|
|
|
D: Deserializer<'de>,
|
|
|
|
{
|
2022-01-22 22:29:15 -05:00
|
|
|
let mut v: Value = Deserialize::deserialize(deserializer)?;
|
2021-12-05 18:15:50 -05:00
|
|
|
// this shoud be a 3-or-more element array.
|
|
|
|
// verify the first element is a String, REQ
|
|
|
|
// get the subscription from the second element.
|
|
|
|
// convert each of the remaining objects into filters
|
|
|
|
|
|
|
|
// check for array
|
|
|
|
let va = v
|
|
|
|
.as_array_mut()
|
2021-12-11 22:56:52 -05:00
|
|
|
.ok_or_else(|| serde::de::Error::custom("not array"))?;
|
2021-12-05 18:15:50 -05:00
|
|
|
|
|
|
|
// check length
|
|
|
|
if va.len() < 3 {
|
|
|
|
return Err(serde::de::Error::custom("not enough fields"));
|
|
|
|
}
|
2021-12-11 22:56:52 -05:00
|
|
|
let mut i = va.iter_mut();
|
2021-12-05 18:15:50 -05:00
|
|
|
// get command ("REQ") and ensure it is a string
|
|
|
|
let req_cmd_str: serde_json::Value = i.next().unwrap().take();
|
2021-12-11 22:56:52 -05:00
|
|
|
let req = req_cmd_str
|
|
|
|
.as_str()
|
|
|
|
.ok_or_else(|| serde::de::Error::custom("first element of request was not a string"))?;
|
2021-12-05 18:15:50 -05:00
|
|
|
if req != "REQ" {
|
|
|
|
return Err(serde::de::Error::custom("missing REQ command"));
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensure sub id is a string
|
|
|
|
let sub_id_str: serde_json::Value = i.next().unwrap().take();
|
|
|
|
let sub_id = sub_id_str
|
|
|
|
.as_str()
|
2021-12-11 22:56:52 -05:00
|
|
|
.ok_or_else(|| serde::de::Error::custom("missing subscription id"))?;
|
2021-12-05 18:15:50 -05:00
|
|
|
|
|
|
|
let mut filters = vec![];
|
|
|
|
for fv in i {
|
2022-01-22 22:29:15 -05:00
|
|
|
let f: ReqFilter = serde_json::from_value(fv.take())
|
2021-12-05 18:15:50 -05:00
|
|
|
.map_err(|_| serde::de::Error::custom("could not parse filter"))?;
|
2022-01-05 17:33:53 -05:00
|
|
|
// create indexes
|
2021-12-05 18:15:50 -05:00
|
|
|
filters.push(f);
|
|
|
|
}
|
|
|
|
Ok(Subscription {
|
|
|
|
id: sub_id.to_owned(),
|
|
|
|
filters,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Subscription {
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Get a copy of the subscription identifier.
|
2021-12-05 18:15:50 -05:00
|
|
|
pub fn get_id(&self) -> String {
|
|
|
|
self.id.clone()
|
|
|
|
}
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Determine if this subscription matches a given [`Event`]. Any
|
|
|
|
/// individual filter match is sufficient.
|
2021-12-05 18:15:50 -05:00
|
|
|
pub fn interested_in_event(&self, event: &Event) -> bool {
|
|
|
|
for f in self.filters.iter() {
|
|
|
|
if f.interested_in_event(event) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2021-12-11 22:56:52 -05:00
|
|
|
false
|
2021-12-05 18:15:50 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-25 19:21:43 -05:00
|
|
|
fn prefix_match(prefixes: &[String], target: &str) -> bool {
|
|
|
|
for prefix in prefixes {
|
|
|
|
if target.starts_with(prefix) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// none matched
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
2021-12-05 18:15:50 -05:00
|
|
|
impl ReqFilter {
|
2022-01-01 19:38:52 -05:00
|
|
|
fn ids_match(&self, event: &Event) -> bool {
|
|
|
|
self.ids
|
|
|
|
.as_ref()
|
2022-01-25 19:21:43 -05:00
|
|
|
.map(|vs| prefix_match(vs, &event.id))
|
2022-01-01 19:38:52 -05:00
|
|
|
.unwrap_or(true)
|
|
|
|
}
|
|
|
|
|
2021-12-14 22:38:26 -05:00
|
|
|
fn authors_match(&self, event: &Event) -> bool {
|
2021-12-05 18:15:50 -05:00
|
|
|
self.authors
|
|
|
|
.as_ref()
|
2022-01-25 19:21:43 -05:00
|
|
|
.map(|vs| prefix_match(vs, &event.pubkey))
|
2021-12-05 18:15:50 -05:00
|
|
|
.unwrap_or(true)
|
2021-12-14 22:38:26 -05:00
|
|
|
}
|
2022-01-05 17:33:53 -05:00
|
|
|
|
2022-01-22 22:29:15 -05:00
|
|
|
fn tag_match(&self, event: &Event) -> bool {
|
|
|
|
// get the hashset from the filter.
|
|
|
|
if let Some(map) = &self.tags {
|
|
|
|
for (key, val) in map.iter() {
|
|
|
|
let tag_match = event.generic_tag_val_intersect(key, val);
|
|
|
|
// if there is no match for this tag, the match fails.
|
|
|
|
if !tag_match {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// if there was a match, we move on to the next one.
|
|
|
|
}
|
2022-01-01 19:38:52 -05:00
|
|
|
}
|
2022-01-22 22:29:15 -05:00
|
|
|
// if the tag map is empty, the match succeeds (there was no filter)
|
|
|
|
true
|
2021-12-14 22:38:26 -05:00
|
|
|
}
|
|
|
|
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Check if this filter either matches, or does not care about the kind.
|
2021-12-05 18:15:50 -05:00
|
|
|
fn kind_match(&self, kind: u64) -> bool {
|
2022-01-01 19:38:52 -05:00
|
|
|
self.kinds
|
|
|
|
.as_ref()
|
|
|
|
.map(|ks| ks.contains(&kind))
|
|
|
|
.unwrap_or(true)
|
2021-12-05 18:15:50 -05:00
|
|
|
}
|
|
|
|
|
2021-12-11 22:43:41 -05:00
|
|
|
/// Determine if all populated fields in this filter match the provided event.
|
2021-12-05 18:15:50 -05:00
|
|
|
pub fn interested_in_event(&self, event: &Event) -> bool {
|
2022-01-01 19:38:52 -05:00
|
|
|
// self.id.as_ref().map(|v| v == &event.id).unwrap_or(true)
|
|
|
|
self.ids_match(event)
|
2021-12-05 18:15:50 -05:00
|
|
|
&& self.since.map(|t| event.created_at > t).unwrap_or(true)
|
|
|
|
&& self.kind_match(event.kind)
|
2021-12-14 22:38:26 -05:00
|
|
|
&& self.authors_match(event)
|
2022-01-22 22:29:15 -05:00
|
|
|
&& self.tag_match(event)
|
2021-12-05 18:15:50 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn empty_request_parse() -> Result<()> {
|
|
|
|
let raw_json = "[\"REQ\",\"some-id\",{}]";
|
|
|
|
let s: Subscription = serde_json::from_str(raw_json)?;
|
|
|
|
assert_eq!(s.id, "some-id");
|
|
|
|
assert_eq!(s.filters.len(), 1);
|
2021-12-16 19:53:53 -05:00
|
|
|
assert_eq!(s.filters.get(0).unwrap().authors, None);
|
2021-12-05 18:15:50 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn incorrect_header() {
|
|
|
|
let raw_json = "[\"REQUEST\",\"some-id\",\"{}\"]";
|
|
|
|
assert!(serde_json::from_str::<Subscription>(raw_json).is_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn req_missing_filters() {
|
|
|
|
let raw_json = "[\"REQ\",\"some-id\"]";
|
|
|
|
assert!(serde_json::from_str::<Subscription>(raw_json).is_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2022-01-16 09:36:52 -05:00
|
|
|
fn legacy_filter() {
|
|
|
|
// legacy field in filter
|
|
|
|
let raw_json = "[\"REQ\",\"some-id\",{\"kind\": 3}]";
|
|
|
|
assert!(serde_json::from_str::<Subscription>(raw_json).is_ok());
|
2021-12-05 18:15:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn author_filter() -> Result<()> {
|
2022-01-14 15:27:12 -05:00
|
|
|
let raw_json = r#"["REQ","some-id",{"authors": ["test-author-id"]}]"#;
|
2021-12-05 18:15:50 -05:00
|
|
|
let s: Subscription = serde_json::from_str(raw_json)?;
|
|
|
|
assert_eq!(s.id, "some-id");
|
|
|
|
assert_eq!(s.filters.len(), 1);
|
|
|
|
let first_filter = s.filters.get(0).unwrap();
|
2022-01-14 15:27:12 -05:00
|
|
|
assert_eq!(
|
|
|
|
first_filter.authors,
|
|
|
|
Some(vec!("test-author-id".to_owned()))
|
|
|
|
);
|
2021-12-05 18:15:50 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2022-01-25 19:21:43 -05:00
|
|
|
fn interest_author_prefix_match() -> Result<()> {
|
|
|
|
// subscription with a filter for ID
|
|
|
|
let s: Subscription = serde_json::from_str(r#"["REQ","xyz",{"authors": ["abc"]}]"#)?;
|
|
|
|
let e = Event {
|
|
|
|
id: "foo".to_owned(),
|
|
|
|
pubkey: "abcd".to_owned(),
|
|
|
|
created_at: 0,
|
|
|
|
kind: 0,
|
|
|
|
tags: Vec::new(),
|
|
|
|
content: "".to_owned(),
|
|
|
|
sig: "".to_owned(),
|
|
|
|
tagidx: None,
|
|
|
|
};
|
|
|
|
assert!(s.interested_in_event(&e));
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn interest_id_prefix_match() -> Result<()> {
|
2021-12-05 18:15:50 -05:00
|
|
|
// subscription with a filter for ID
|
2022-01-14 15:27:12 -05:00
|
|
|
let s: Subscription = serde_json::from_str(r#"["REQ","xyz",{"ids": ["abc"]}]"#)?;
|
2022-01-25 19:21:43 -05:00
|
|
|
let e = Event {
|
|
|
|
id: "abcd".to_owned(),
|
|
|
|
pubkey: "".to_owned(),
|
|
|
|
created_at: 0,
|
|
|
|
kind: 0,
|
|
|
|
tags: Vec::new(),
|
|
|
|
content: "".to_owned(),
|
|
|
|
sig: "".to_owned(),
|
|
|
|
tagidx: None,
|
|
|
|
};
|
|
|
|
assert!(s.interested_in_event(&e));
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn interest_id_nomatch() -> Result<()> {
|
|
|
|
// subscription with a filter for ID
|
|
|
|
let s: Subscription = serde_json::from_str(r#"["REQ","xyz",{"ids": ["xyz"]}]"#)?;
|
2021-12-05 18:15:50 -05:00
|
|
|
let e = Event {
|
|
|
|
id: "abcde".to_owned(),
|
|
|
|
pubkey: "".to_owned(),
|
|
|
|
created_at: 0,
|
|
|
|
kind: 0,
|
|
|
|
tags: Vec::new(),
|
|
|
|
content: "".to_owned(),
|
|
|
|
sig: "".to_owned(),
|
2022-01-14 15:27:12 -05:00
|
|
|
tagidx: None,
|
2021-12-05 18:15:50 -05:00
|
|
|
};
|
2022-01-25 19:21:43 -05:00
|
|
|
assert!(!s.interested_in_event(&e));
|
2021-12-05 18:15:50 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn interest_time_and_id() -> Result<()> {
|
|
|
|
// subscription with a filter for ID and time
|
2022-01-16 09:36:52 -05:00
|
|
|
let s: Subscription =
|
|
|
|
serde_json::from_str(r#"["REQ","xyz",{"ids": ["abc"], "since": 1000}]"#)?;
|
2021-12-05 18:15:50 -05:00
|
|
|
let e = Event {
|
|
|
|
id: "abc".to_owned(),
|
|
|
|
pubkey: "".to_owned(),
|
|
|
|
created_at: 50,
|
|
|
|
kind: 0,
|
|
|
|
tags: Vec::new(),
|
|
|
|
content: "".to_owned(),
|
|
|
|
sig: "".to_owned(),
|
2022-01-14 15:27:12 -05:00
|
|
|
tagidx: None,
|
2021-12-05 18:15:50 -05:00
|
|
|
};
|
2022-01-25 19:21:43 -05:00
|
|
|
assert!(!s.interested_in_event(&e));
|
2021-12-05 18:15:50 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn interest_time_and_id2() -> Result<()> {
|
|
|
|
// subscription with a filter for ID and time
|
|
|
|
let s: Subscription = serde_json::from_str(r#"["REQ","xyz",{"id":"abc", "since": 1000}]"#)?;
|
|
|
|
let e = Event {
|
|
|
|
id: "abc".to_owned(),
|
|
|
|
pubkey: "".to_owned(),
|
|
|
|
created_at: 1001,
|
|
|
|
kind: 0,
|
|
|
|
tags: Vec::new(),
|
|
|
|
content: "".to_owned(),
|
|
|
|
sig: "".to_owned(),
|
2022-01-14 15:27:12 -05:00
|
|
|
tagidx: None,
|
2021-12-05 18:15:50 -05:00
|
|
|
};
|
2022-01-25 19:21:43 -05:00
|
|
|
assert!(s.interested_in_event(&e));
|
2021-12-05 18:15:50 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn interest_id() -> Result<()> {
|
|
|
|
// subscription with a filter for ID
|
|
|
|
let s: Subscription = serde_json::from_str(r#"["REQ","xyz",{"id":"abc"}]"#)?;
|
|
|
|
let e = Event {
|
|
|
|
id: "abc".to_owned(),
|
|
|
|
pubkey: "".to_owned(),
|
|
|
|
created_at: 0,
|
|
|
|
kind: 0,
|
|
|
|
tags: Vec::new(),
|
|
|
|
content: "".to_owned(),
|
|
|
|
sig: "".to_owned(),
|
2022-01-14 15:27:12 -05:00
|
|
|
tagidx: None,
|
2021-12-05 18:15:50 -05:00
|
|
|
};
|
2022-01-25 19:21:43 -05:00
|
|
|
assert!(s.interested_in_event(&e));
|
2021-12-05 18:15:50 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn authors_single() -> Result<()> {
|
|
|
|
// subscription with a filter for ID
|
|
|
|
let s: Subscription = serde_json::from_str(r#"["REQ","xyz",{"authors":["abc"]}]"#)?;
|
|
|
|
let e = Event {
|
|
|
|
id: "123".to_owned(),
|
|
|
|
pubkey: "abc".to_owned(),
|
|
|
|
created_at: 0,
|
|
|
|
kind: 0,
|
|
|
|
tags: Vec::new(),
|
|
|
|
content: "".to_owned(),
|
|
|
|
sig: "".to_owned(),
|
2022-01-14 15:27:12 -05:00
|
|
|
tagidx: None,
|
2021-12-05 18:15:50 -05:00
|
|
|
};
|
2022-01-25 19:21:43 -05:00
|
|
|
assert!(s.interested_in_event(&e));
|
2021-12-05 18:15:50 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
#[test]
|
2021-12-16 19:53:53 -05:00
|
|
|
|
2021-12-05 18:15:50 -05:00
|
|
|
fn authors_multi_pubkey() -> Result<()> {
|
|
|
|
// check for any of a set of authors, against the pubkey
|
|
|
|
let s: Subscription = serde_json::from_str(r#"["REQ","xyz",{"authors":["abc", "bcd"]}]"#)?;
|
|
|
|
let e = Event {
|
|
|
|
id: "123".to_owned(),
|
|
|
|
pubkey: "bcd".to_owned(),
|
|
|
|
created_at: 0,
|
|
|
|
kind: 0,
|
|
|
|
tags: Vec::new(),
|
|
|
|
content: "".to_owned(),
|
|
|
|
sig: "".to_owned(),
|
2022-01-14 15:27:12 -05:00
|
|
|
tagidx: None,
|
2021-12-05 18:15:50 -05:00
|
|
|
};
|
2022-01-25 19:21:43 -05:00
|
|
|
assert!(s.interested_in_event(&e));
|
2021-12-05 18:15:50 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn authors_multi_no_match() -> Result<()> {
|
|
|
|
// check for any of a set of authors, against the pubkey
|
|
|
|
let s: Subscription = serde_json::from_str(r#"["REQ","xyz",{"authors":["abc", "bcd"]}]"#)?;
|
|
|
|
let e = Event {
|
|
|
|
id: "123".to_owned(),
|
|
|
|
pubkey: "xyz".to_owned(),
|
|
|
|
created_at: 0,
|
|
|
|
kind: 0,
|
|
|
|
tags: Vec::new(),
|
|
|
|
content: "".to_owned(),
|
|
|
|
sig: "".to_owned(),
|
2022-01-14 15:27:12 -05:00
|
|
|
tagidx: None,
|
2021-12-05 18:15:50 -05:00
|
|
|
};
|
2022-01-25 19:21:43 -05:00
|
|
|
assert!(!s.interested_in_event(&e));
|
2021-12-05 18:15:50 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|