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
use zbus::{
zvariant::{OwnedObjectPath, OwnedValue},
CacheProperties, Connection,
};
use crate::{session::Session, ConfigurationNodeProxy, Result, SessionsProxy};
#[derive(Clone, Debug)]
pub struct Configuration<'a> {
pub(crate) conn: Connection,
pub(crate) path: OwnedObjectPath,
pub(crate) proxy: ConfigurationNodeProxy<'a>,
pub(crate) sessions_proxy: SessionsProxy<'a>,
}
impl<'a> Configuration<'a> {
const DBUS_INTERFACE: &'static str = "net.openvpn.v3.configuration";
pub(crate) async fn new(
conn: Connection,
configuration_path: OwnedObjectPath,
) -> Result<Configuration<'a>> {
let sessions_proxy = SessionsProxy::new(&conn).await?;
let proxy = ConfigurationNodeProxy::builder(&conn)
.destination(Self::DBUS_INTERFACE)?
.path(configuration_path.clone())?
.cache_properties(CacheProperties::No)
.build()
.await?;
Ok(Self {
conn,
path: configuration_path,
proxy,
sessions_proxy,
})
}
pub async fn new_tunnel<'c>(&self) -> Result<Session<'c>> {
let proxy = self.sessions_proxy.new_tunnel(&self.path).await?;
Ok(Session::new(
self.conn.clone(),
OwnedObjectPath::from(proxy.path().clone()),
)
.await?)
}
pub async fn fetch(&'a self) -> Result<String> {
Ok(self.proxy.fetch().await?)
}
pub async fn json(&'a self) -> Result<serde_json::Value> {
Ok(serde_json::from_str(
self.proxy.fetch_json().await?.as_str(),
)?)
}
pub async fn remove(&'a self) -> Result<()> {
Ok(self.proxy.remove().await?)
}
pub async fn get_property<T>(&'a self, property_name: &str) -> Result<T>
where
T: TryFrom<OwnedValue>,
T::Error: Into<zbus::Error>,
{
Ok(self.proxy.get_property(property_name).await?)
}
}