mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-14 06:59:07 -05:00
78da92ccca
NIP-01 prefix search, and NIP-12 generic tags are no longer marked as experimental. NIP-11 relay info advertises NIP-09 event deletion and NIP-12 generic tag search support.
44 lines
1.5 KiB
Rust
44 lines
1.5 KiB
Rust
//! Relay metadata using NIP-11
|
|
/// Relay Info
|
|
use crate::config;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
pub const CARGO_PKG_VERSION: Option<&'static str> = option_env!("CARGO_PKG_VERSION");
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
#[allow(unused)]
|
|
pub struct RelayInfo {
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub id: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub name: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub description: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub pubkey: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub contact: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub supported_nips: Option<Vec<i64>>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub software: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub version: Option<String>,
|
|
}
|
|
|
|
/// Convert an Info configuration into public Relay Info
|
|
impl From<config::Info> for RelayInfo {
|
|
fn from(i: config::Info) -> Self {
|
|
RelayInfo {
|
|
id: i.relay_url,
|
|
name: i.name,
|
|
description: i.description,
|
|
pubkey: i.pubkey,
|
|
contact: i.contact,
|
|
supported_nips: Some(vec![1, 2, 9, 11, 12, 15, 16, 22]),
|
|
software: Some("https://git.sr.ht/~gheartsfield/nostr-rs-relay".to_owned()),
|
|
version: CARGO_PKG_VERSION.map(|x| x.to_owned()),
|
|
}
|
|
}
|
|
}
|