2025-01-23 14:59:26 +01:00
|
|
|
use itertools::Itertools;
|
|
|
|
use nostr_sdk::{Keys, Metadata, PublicKey, Tag, Timestamp};
|
2024-11-24 23:42:47 +01:00
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::str::FromStr;
|
|
|
|
|
|
|
|
#[derive(Default, Debug, Clone, PartialEq, Eq)]
|
|
|
|
pub struct NostrUsers {
|
2024-12-05 14:39:47 +01:00
|
|
|
users: HashMap<PublicKey, Metadata>,
|
2025-01-23 14:59:26 +01:00
|
|
|
user_times: HashMap<PublicKey, Timestamp>,
|
2024-11-24 23:42:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl NostrUsers {
|
|
|
|
pub(crate) fn find_user_with_displayname(&self, term: &str) -> Option<(PublicKey, String)> {
|
|
|
|
self.find_user(term)
|
|
|
|
.map(|(k, _)| (*k, self.get_displayname(k)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find username or key starting with the given term.
|
|
|
|
pub(crate) fn find_user(&self, term: &str) -> Option<(&PublicKey, &Metadata)> {
|
2024-11-25 02:15:18 +01:00
|
|
|
let lowered = term.trim().to_ascii_lowercase();
|
|
|
|
let term = lowered.as_str();
|
|
|
|
if term.is_empty() {
|
2024-12-05 14:39:47 +01:00
|
|
|
return None;
|
2024-11-25 02:15:18 +01:00
|
|
|
}
|
2024-11-24 23:42:47 +01:00
|
|
|
if let Ok(key) = PublicKey::from_str(term) {
|
|
|
|
return self.users.get_key_value(&key);
|
|
|
|
}
|
2025-01-23 14:59:26 +01:00
|
|
|
self.users.iter()
|
|
|
|
.sorted_unstable_by_key(|(k, v)| match self.user_times.get(k) {
|
|
|
|
Some(t) => t.as_u64(),
|
|
|
|
None => Timestamp::zero().as_u64(),
|
|
|
|
})
|
|
|
|
.rev()
|
|
|
|
.find(|(k, v)|
|
|
|
|
// TODO regex word boundary
|
|
|
|
v.name.as_ref().is_some_and(|n| n.to_ascii_lowercase().starts_with(term)) ||
|
|
|
|
v.display_name.as_ref().is_some_and(|n| n.to_ascii_lowercase().starts_with(term)) ||
|
|
|
|
(term.len() > 4 && k.to_string().starts_with(term)))
|
2024-11-24 23:42:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn get_displayname(&self, pubkey: &PublicKey) -> String {
|
|
|
|
self.users.get(pubkey)
|
|
|
|
.and_then(|m| m.display_name.clone().or(m.name.clone()))
|
|
|
|
.unwrap_or_else(|| pubkey.to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn get_username(&self, pubkey: &PublicKey) -> String {
|
|
|
|
self.users.get(pubkey)
|
2025-01-23 15:00:40 +01:00
|
|
|
.and_then(|m| m.name.clone())
|
|
|
|
.unwrap_or_else(|| format!("{:.6}", pubkey.to_string()))
|
2024-11-24 23:42:47 +01:00
|
|
|
}
|
|
|
|
|
2025-01-23 14:59:26 +01:00
|
|
|
pub(super) fn insert(&mut self, pubkey: PublicKey, metadata: Metadata, timestamp: Timestamp) {
|
2024-11-24 23:42:47 +01:00
|
|
|
self.users.insert(pubkey, metadata);
|
2025-01-23 14:59:26 +01:00
|
|
|
self.user_times.insert(pubkey, timestamp);
|
2024-11-24 23:42:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(super) fn create(&mut self, pubkey: PublicKey) {
|
|
|
|
if !self.users.contains_key(&pubkey) {
|
|
|
|
self.users.insert(pubkey, Default::default());
|
|
|
|
}
|
|
|
|
}
|
2024-11-25 02:15:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_user_extract() {
|
|
|
|
let keys = Keys::generate();
|
|
|
|
let mut users = NostrUsers::default();
|
2025-01-23 14:59:26 +01:00
|
|
|
users.insert(keys.public_key, Metadata::new().display_name("Tester Jo"), Timestamp::now());
|
2024-11-25 02:15:18 +01:00
|
|
|
assert_eq!(crate::kinds::extract_tags("Hello @test", &users),
|
|
|
|
("Hello".to_string(), vec![Tag::public_key(keys.public_key)]));
|
2024-11-24 23:42:47 +01:00
|
|
|
}
|