2024-12-05 14:39:47 +01:00
|
|
|
use nostr_sdk::{Keys, Metadata, PublicKey, Tag};
|
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>,
|
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);
|
|
|
|
}
|
|
|
|
self.users.iter().find(|(k, v)|
|
|
|
|
// TODO regex word boundary
|
2024-11-25 02:15:18 +01:00
|
|
|
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)) ||
|
2024-11-24 23:42:47 +01:00
|
|
|
(term.len() > 4 && k.to_string().starts_with(term)))
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
.and_then(|m| m.name.clone())
|
|
|
|
.unwrap_or_else(|| format!("{:.6}", pubkey.to_string()))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(super) fn insert(&mut self, pubkey: PublicKey, metadata: Metadata) {
|
|
|
|
self.users.insert(pubkey, metadata);
|
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
users.insert(keys.public_key, Metadata::new().display_name("Tester Jo"));
|
|
|
|
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
|
|
|
}
|