ng-net 0.1.1-alpha.2

Network library of NextGraph, a decentralized, secure and local-first web 3.0 ecosystem based on Semantic Web and CRDTs
Documentation
/*
 * Copyright (c) 2022-2025 Niko Bonnieure, Par le Peuple, NextGraph.org developers
 * All rights reserved.
 * Licensed under the Apache License, Version 2.0
 * <LICENSE-APACHE2 or http://www.apache.org/licenses/LICENSE-2.0>
 * or the MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>,
 * at your option. All files in the project carrying such
 * notice may not be copied, modified, or distributed except
 * according to those terms.
*/

use std::sync::Arc;

use async_std::sync::Mutex;

use ng_repo::errors::*;
use ng_repo::log::*;
use ng_repo::repo::{BranchInfo, Repo};
use ng_repo::types::*;

use crate::broker::BROKER;
use crate::connection::NoiseFSM;
use crate::types::*;
use crate::{actor::*, types::ProtocolMessage};

impl TopicSub {
    pub fn get_actor(&self, id: i64) -> Box<dyn EActor> {
        Actor::<TopicSub, TopicSubRes>::new_responder(id)
    }
    /// only set broker_id if you want to be a publisher
    pub fn new(repo: &Repo, branch: &BranchInfo, broker_id: Option<&DirectPeerId>) -> TopicSub {
        let (overlay, publisher) = if broker_id.is_some() && branch.topic_priv_key.is_some() {
            (
                repo.store.inner_overlay(),
                Some(PublisherAdvert::new(
                    branch.topic.unwrap(),
                    branch.topic_priv_key.to_owned().unwrap(),
                    *broker_id.unwrap(),
                )),
            )
        } else {
            (repo.store.inner_overlay(), None)
        };

        TopicSub::V0(TopicSubV0 {
            repo_hash: repo.id.into(),
            overlay: Some(overlay),
            topic: branch.topic.unwrap(),
            publisher,
        })
    }
}

impl TryFrom<ProtocolMessage> for TopicSub {
    type Error = ProtocolError;
    fn try_from(msg: ProtocolMessage) -> Result<Self, Self::Error> {
        let req: ClientRequestContentV0 = msg.try_into()?;
        if let ClientRequestContentV0::TopicSub(a) = req {
            Ok(a)
        } else {
            log_debug!("INVALID {:?}", req);
            Err(ProtocolError::InvalidValue)
        }
    }
}

impl From<TopicSub> for ProtocolMessage {
    fn from(msg: TopicSub) -> ProtocolMessage {
        let overlay = *msg.overlay();
        ProtocolMessage::from_client_request_v0(ClientRequestContentV0::TopicSub(msg), overlay)
    }
}

impl TryFrom<ProtocolMessage> for TopicSubRes {
    type Error = ProtocolError;
    fn try_from(msg: ProtocolMessage) -> Result<Self, Self::Error> {
        let res: ClientResponseContentV0 = msg.try_into()?;
        if let ClientResponseContentV0::TopicSubRes(a) = res {
            Ok(a)
        } else {
            log_debug!("INVALID {:?}", res);
            Err(ProtocolError::InvalidValue)
        }
    }
}

impl From<TopicSubRes> for ProtocolMessage {
    fn from(res: TopicSubRes) -> ProtocolMessage {
        ClientResponseContentV0::TopicSubRes(res).into()
    }
}

impl Actor<'_, TopicSub, TopicSubRes> {}

#[async_trait::async_trait]
impl EActor for Actor<'_, TopicSub, TopicSubRes> {
    async fn respond(
        &mut self,
        msg: ProtocolMessage,
        fsm: Arc<Mutex<NoiseFSM>>,
    ) -> Result<(), ProtocolError> {
        let req = TopicSub::try_from(msg)?;

        let (sb, server_peer_id) = {
            let b = BROKER.read().await;
            (b.get_server_broker()?, b.get_server_peer_id())
        };

        // check the validity of the PublisherAdvert. this will return a ProtocolError (will close the connection)
        if let Some(advert) = req.publisher() {
            advert.verify_for_broker(&server_peer_id)?;
        }

        let (user_id, remote_peer) = {
            let fsm = fsm.lock().await;
            (fsm.user_id()?, fsm.get_client_peer_id()?)
        };

        let res = {
            sb.read()
                .await
                .topic_sub(
                    req.overlay(),
                    req.hash(),
                    req.topic(),
                    &user_id,
                    req.publisher(),
                    &remote_peer,
                )
                .await
        };

        fsm.lock()
            .await
            .send_in_reply_to(res.into(), self.id())
            .await?;
        Ok(())
    }
}