chore(repo-announce): Utils to creates the bech32

Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
Awiteb
2025-05-07 06:04:28 +00:00
parent 3857753b7d
commit 577de41054
3 changed files with 50 additions and 24 deletions

View File

@@ -22,13 +22,13 @@ pub mod utils;
use std::time::Duration;
use nostr::{
event::{Event, EventId, Kind, UnsignedEvent},
event::{Event, Kind, UnsignedEvent},
filter::Filter,
key::{Keys, PublicKey},
nips::{nip19::Nip19Coordinate, nip34::GitRepositoryAnnouncement},
types::RelayUrl,
};
use nostr_sdk::{Client, pool::Output};
use nostr_sdk::Client;
use crate::{
cli::CliOptions,

View File

@@ -17,12 +17,19 @@
use std::{fmt, str::FromStr};
use nostr::{
event::{Event, TagKind, TagStandard},
event::{Event, EventId, Kind, TagKind, TagStandard},
filter::{Alphabet, SingleLetterTag},
nips::nip34::GitRepositoryAnnouncement,
key::PublicKey,
nips::{
nip01::Coordinate,
nip19::{Nip19Coordinate, Nip19Event, ToBech32},
nip34::GitRepositoryAnnouncement,
},
types::RelayUrl,
};
use super::traits::TagsExt;
use crate::error::{N34Error, N34Result};
/// Returns the value of the given tag
fn tag_value(tag: &TagStandard) -> String {
@@ -80,3 +87,36 @@ pub fn event_into_repo(event: Event, repo_id: impl Into<String>) -> GitRepositor
pub fn str_trim(s: String) -> String {
s.trim().to_owned()
}
/// Returns a vector with duplicate elements removed.
pub fn dedup<I, T>(iter: I) -> Vec<T>
where
T: std::cmp::Ord,
I: Iterator<Item = T>,
{
let mut vector: Vec<T> = iter.collect();
vector.sort_unstable();
vector.dedup();
vector
}
/// Creates a new NIP-19 nevent string from an event ID and up to 3 unique relay
/// URLs.
pub fn new_nevent(event_id: EventId, relays: &[RelayUrl]) -> N34Result<String> {
Nip19Event::new(event_id)
.relays(dedup(relays.iter().take(3).cloned()))
.to_bech32()
.map_err(N34Error::from)
}
/// Creates a NIP-19 naddr string for a git repository announcement and up to 3
/// unique relay URLs.
pub fn repo_naddr(pubk: PublicKey, relays: &[RelayUrl]) -> N34Result<String> {
Nip19Coordinate::new(
Coordinate::new(Kind::GitRepoAnnouncement, pubk),
dedup(relays.iter().take(3)),
)
.expect("Valid relays")
.to_bech32()
.map_err(N34Error::from)
}