1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
// Copyright (c) 2021 Open Community Project Association https://ocpa.ch
// This software is published under the AGPLv3 license.

//! # Connections Management Functions
//!
//! * get list of statically defined internet peer nodes
//! * add an internet peer node
//! * remove an internet peer node

use super::rpc::Rpc;
use prost::Message;

/// include generated protobuf RPC rust definition file
mod proto {
    include!("../../../libqaul/src/rpc/protobuf_generated/rust/qaul.rpc.connections.rs");
}

/// connections function handling
pub struct Connections {}

impl Connections {
    /// CLI command interpretation
    ///
    /// The CLI commands of users are processed here
    pub fn cli(command: &str) {
        match command {
            // request list of all internet nodes
            cmd if cmd.starts_with("nodes list") => {
                Self::internet_nodes_list();
            }
            // add an internet node
            cmd if cmd.starts_with("nodes add ") => {
                let address = cmd.strip_prefix("nodes add ").unwrap();

                Self::internet_node_add(String::from(address));
            }
            // remove an internet node
            cmd if cmd.starts_with("nodes remove ") => {
                let address = cmd.strip_prefix("nodes remove ").unwrap();

                Self::internet_node_remove(String::from(address));
            }
            // activate an internet node
            cmd if cmd.starts_with("nodes activate ") => {
                let address = cmd.strip_prefix("nodes activate ").unwrap();

                Self::internet_node_activate(String::from(address));
            }
            // deactivate an internet node
            cmd if cmd.starts_with("nodes deactivate ") => {
                let address = cmd.strip_prefix("nodes deactivate ").unwrap();

                Self::internet_node_deactivate(String::from(address));
            }
            // unknown command
            _ => log::error!("unknown connections command"),
        }
    }

    /// send an rpc request for internet peering nodes list
    fn internet_nodes_list() {
        // create request message
        let proto_message = proto::Connections {
            message: Some(proto::connections::Message::InternetNodesRequest(
                proto::InternetNodesRequest {},
            )),
        };

        // send message
        Self::send_message(proto_message);
    }

    /// send an RPC message to add a new internet peer node connection
    fn internet_node_add(address: String) {
        // create message
        let proto_message = proto::Connections {
            message: Some(proto::connections::Message::InternetNodesAdd(
                proto::InternetNodesEntry {
                    address,
                    enabled: true,
                },
            )),
        };

        // send message
        Self::send_message(proto_message);
    }

    /// Send an rpc message to remove a specific internet peer node connection
    ///
    /// The nodes are specified by their libp2p multiaddress
    fn internet_node_remove(address: String) {
        // create message
        let proto_message = proto::Connections {
            message: Some(proto::connections::Message::InternetNodesRemove(
                proto::InternetNodesEntry {
                    address,
                    enabled: false,
                },
            )),
        };

        // send message
        Self::send_message(proto_message);
    }

    /// Send an rpc message to activate a specific internet peer node connection
    ///
    /// The nodes are specified by their libp2p multiaddress
    fn internet_node_activate(address: String) {
        // create message
        let proto_message = proto::Connections {
            message: Some(proto::connections::Message::InternetNodesState(
                proto::InternetNodesEntry {
                    address,
                    enabled: true,
                },
            )),
        };
        // send message
        Self::send_message(proto_message);
    }

    /// Send an rpc message to deactivate a specific internet peer node connection
    ///
    /// The nodes are specified by their libp2p multiaddress
    fn internet_node_deactivate(address: String) {
        // create message
        let proto_message = proto::Connections {
            message: Some(proto::connections::Message::InternetNodesState(
                proto::InternetNodesEntry {
                    address,
                    enabled: false,
                },
            )),
        };
        // send message
        Self::send_message(proto_message);
    }

    /// Encode and send a protobuf connections message to RPC
    fn send_message(message: proto::Connections) {
        // encode message
        let mut buf = Vec::with_capacity(message.encoded_len());
        message
            .encode(&mut buf)
            .expect("Vec<u8> provides capacity as needed");

        // send message
        Rpc::send_message(
            buf,
            super::rpc::proto::Modules::Connections.into(),
            "".to_string(),
        );
    }

    /// Process received RPC message
    ///
    /// Decodes received protobuf encoded binary connections RPC messages
    /// and display their content
    pub fn rpc(data: Vec<u8>) {
        match proto::Connections::decode(&data[..]) {
            Ok(connections) => {
                match connections.message {
                    Some(proto::connections::Message::InternetNodesList(proto_list)) => {
                        let mut line = 1;
                        println!("");

                        match proto::Info::from_i32(proto_list.info) {
                            Some(proto::Info::Request) => {
                                // all fine no further info
                            }
                            Some(proto::Info::AddSuccess) => {
                                println!(
                                    "Address successfully added to 'Internet Peer Nodes List'"
                                );
                                println!("");
                            }
                            Some(proto::Info::AddErrorInvalid) => {
                                println!("ERROR: Invalid address, couldn't be added to 'Internet Peer Nodes List'");
                                println!("");
                            }
                            Some(proto::Info::RemoveSuccess) => {
                                println!(
                                    "Address successfully removed from 'Internet Peer Nodes List'"
                                );
                                println!("");
                            }
                            Some(proto::Info::StateSuccess) => {
                                println!(
                                    "Address successfully state changed in 'Internet Peer Nodes List'"
                                );
                                println!("");
                            }
                            Some(proto::Info::RemoveErrorNotFound) => {
                                println!("ERROR: Address not found in 'Internet Peer Nodes List'");
                                println!("");
                            }
                            None => {
                                println!("Unknown Reason for 'Internet Peer Nodes List' response");
                                println!("");
                            }
                        };

                        println!("Internet Peer Nodes List");
                        println!("No. | Address | Enabled");

                        for node in proto_list.nodes {
                            println!("{} | {} | {}", line, node.address, node.enabled);
                            line += 1;
                        }

                        println!("");
                    }
                    _ => {
                        log::error!("unprocessable connections RPC message");
                    }
                }
            }
            Err(error) => {
                log::error!("{:?}", error);
            }
        }
    }
}