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
use super::rpc::Rpc;
use prost::Message;
mod proto {
include!("../../../libqaul/src/rpc/protobuf_generated/rust/qaul.rpc.connections.rs");
}
pub struct Connections {}
impl Connections {
pub fn cli(command: &str) {
match command {
cmd if cmd.starts_with("nodes list") => {
Self::internet_nodes_list();
}
cmd if cmd.starts_with("nodes add ") => {
let address = cmd.strip_prefix("nodes add ").unwrap();
Self::internet_node_add(String::from(address));
}
cmd if cmd.starts_with("nodes remove ") => {
let address = cmd.strip_prefix("nodes remove ").unwrap();
Self::internet_node_remove(String::from(address));
}
cmd if cmd.starts_with("nodes activate ") => {
let address = cmd.strip_prefix("nodes activate ").unwrap();
Self::internet_node_activate(String::from(address));
}
cmd if cmd.starts_with("nodes deactivate ") => {
let address = cmd.strip_prefix("nodes deactivate ").unwrap();
Self::internet_node_deactivate(String::from(address));
}
_ => log::error!("unknown connections command"),
}
}
fn internet_nodes_list() {
let proto_message = proto::Connections {
message: Some(proto::connections::Message::InternetNodesRequest(
proto::InternetNodesRequest {},
)),
};
Self::send_message(proto_message);
}
fn internet_node_add(address: String) {
let proto_message = proto::Connections {
message: Some(proto::connections::Message::InternetNodesAdd(
proto::InternetNodesEntry {
address,
enabled: true,
},
)),
};
Self::send_message(proto_message);
}
fn internet_node_remove(address: String) {
let proto_message = proto::Connections {
message: Some(proto::connections::Message::InternetNodesRemove(
proto::InternetNodesEntry {
address,
enabled: false,
},
)),
};
Self::send_message(proto_message);
}
fn internet_node_activate(address: String) {
let proto_message = proto::Connections {
message: Some(proto::connections::Message::InternetNodesState(
proto::InternetNodesEntry {
address,
enabled: true,
},
)),
};
Self::send_message(proto_message);
}
fn internet_node_deactivate(address: String) {
let proto_message = proto::Connections {
message: Some(proto::connections::Message::InternetNodesState(
proto::InternetNodesEntry {
address,
enabled: false,
},
)),
};
Self::send_message(proto_message);
}
fn send_message(message: proto::Connections) {
let mut buf = Vec::with_capacity(message.encoded_len());
message
.encode(&mut buf)
.expect("Vec<u8> provides capacity as needed");
Rpc::send_message(
buf,
super::rpc::proto::Modules::Connections.into(),
"".to_string(),
);
}
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) => {
}
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);
}
}
}
}