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
use crate::graph::{Graph, Node, NodeContents};
use crate::helper::{get_current_da_time, get_current_time, index_dec_to_ud};
use crate::{Channel, Result, UrbitAPIError};
use json::object;
pub struct GraphStore<'a> {
pub channel: &'a mut Channel,
}
impl<'a> GraphStore<'a> {
pub fn new_node(&self, contents: &NodeContents) -> Node {
let ship = format!("~{}", self.channel.ship_interface.ship_name);
let index = format!("/{}", get_current_da_time());
let unix_time = get_current_time();
Node::new(
index,
ship.clone(),
unix_time,
vec![],
contents.clone(),
None,
)
}
pub fn new_node_specified(
&self,
node_index: &str,
unix_time: u64,
contents: &NodeContents,
) -> Node {
let ship = format!("~{}", self.channel.ship_interface.ship_name);
Node::new(
node_index.to_string(),
ship.clone(),
unix_time,
vec![],
contents.clone(),
None,
)
}
pub fn add_node(
&mut self,
resource_ship: &str,
resource_name: &str,
node: &Node,
) -> Result<()> {
let prepped_json = object! {
"add-nodes": {
"resource": {
"ship": resource_ship,
"name": resource_name
},
"nodes": node.to_json()
}
};
let resp = (&mut self.channel).poke("graph-push-hook", "graph-update", &prepped_json)?;
if resp.status().as_u16() == 204 {
Ok(())
} else {
return Err(UrbitAPIError::FailedToAddNodesToGraphStore(
resource_name.to_string(),
));
}
}
pub fn remove_nodes(
&mut self,
resource_ship: &str,
resource_name: &str,
indices: Vec<&str>,
) -> Result<()> {
let prepped_json = object! {
"remove-nodes": {
"resource": {
"ship": resource_ship,
"name": resource_name
},
"indices": indices
}
};
let resp = (&mut self.channel).poke("graph-push-hook", "graph-update", &prepped_json)?;
if resp.status().as_u16() == 204 {
Ok(())
} else {
return Err(UrbitAPIError::FailedToRemoveNodesFromGraphStore(
resource_name.to_string(),
));
}
}
pub fn get_graph(&mut self, resource_ship: &str, resource_name: &str) -> Result<Graph> {
let path = format!("/graph/{}/{}", resource_ship, resource_name);
let res = self
.channel
.ship_interface
.scry("graph-store", &path, "json")?;
if res.status().as_u16() == 200 {
if let Ok(body) = res.text() {
if let Ok(graph_json) = json::parse(&body) {
return Graph::from_json(graph_json);
}
}
}
Err(UrbitAPIError::FailedToGetGraph(resource_name.to_string()))
}
pub fn get_node(
&mut self,
resource_ship: &str,
resource_name: &str,
node_index: &str,
) -> Result<Node> {
let path_nodes = index_dec_to_ud(node_index);
let path = format!("/node/{}/{}{}", resource_ship, resource_name, &path_nodes);
let res = self
.channel
.ship_interface
.scry("graph-store", &path, "json")?;
if res.status().as_u16() == 200 {
if let Ok(body) = res.text() {
if let Ok(node_json) = json::parse(&body) {
return Node::from_graph_update_json(&node_json);
}
}
}
Err(UrbitAPIError::FailedToGetGraphNode(format!(
"/{}/{}/{}",
resource_ship, resource_name, node_index
)))
}
pub fn archive_graph(&mut self, resource_ship: &str, resource_name: &str) -> Result<String> {
let path = format!("/archive/{}/{}", resource_ship, resource_name);
let res = self
.channel
.ship_interface
.scry("graph-store", &path, "json")?;
if res.status().as_u16() == 200 {
if let Ok(body) = res.text() {
return Ok(body);
}
}
return Err(UrbitAPIError::FailedToArchiveGraph(
resource_name.to_string(),
));
}
pub fn remove_graph(&mut self, resource_ship: &str, resource_name: &str) -> Result<()> {
let prepped_json = object! {
"remove-graph": {
"resource": {
"ship": resource_ship,
"name": resource_name
}
}
};
let resp = (&mut self.channel).poke("graph-push-hook", "graph-update", &prepped_json)?;
if resp.status().as_u16() == 204 {
Ok(())
} else {
return Err(UrbitAPIError::FailedToRemoveGraphFromGraphStore(
resource_name.to_string(),
));
}
}
}