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
use std::net::{Ipv4Addr, SocketAddrV4};
use std::fmt;
use tokio_core::reactor::Core;
use errors::{AddAnyPortError, AddPortError, GetExternalIpError, RemovePortError};
use PortMappingProtocol;
use async::Gateway as AsyncGateway;
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub struct Gateway {
pub addr: SocketAddrV4,
pub control_url: String,
}
impl Gateway {
pub fn get_external_ip(&self) -> Result<Ipv4Addr, GetExternalIpError> {
let mut core = Core::new().unwrap();
let async = AsyncGateway::new(self.addr, self.control_url.clone(), core.handle());
core.run(async.get_external_ip())
}
pub fn get_any_address(
&self,
protocol: PortMappingProtocol,
local_addr: SocketAddrV4,
lease_duration: u32,
description: &str,
) -> Result<SocketAddrV4, AddAnyPortError> {
let mut core = Core::new().unwrap();
let async = AsyncGateway::new(self.addr, self.control_url.clone(), core.handle());
core.run(async.get_any_address(protocol, local_addr, lease_duration, description))
}
pub fn add_any_port(
&self,
protocol: PortMappingProtocol,
local_addr: SocketAddrV4,
lease_duration: u32,
description: &str,
) -> Result<u16, AddAnyPortError> {
let mut core = Core::new().unwrap();
let async = AsyncGateway::new(self.addr, self.control_url.clone(), core.handle());
core.run(async.add_any_port(protocol, local_addr, lease_duration, description))
}
pub fn add_port(
&self,
protocol: PortMappingProtocol,
external_port: u16,
local_addr: SocketAddrV4,
lease_duration: u32,
description: &str,
) -> Result<(), AddPortError> {
let mut core = Core::new().unwrap();
let async = AsyncGateway::new(self.addr, self.control_url.clone(), core.handle());
core.run(async.add_port(
protocol,
external_port,
local_addr,
lease_duration,
description,
))
}
pub fn remove_port(
&self,
protocol: PortMappingProtocol,
external_port: u16,
) -> Result<(), RemovePortError> {
let mut core = Core::new().unwrap();
let async = AsyncGateway::new(self.addr, self.control_url.clone(), core.handle());
core.run(async.remove_port(protocol, external_port))
}
}
impl fmt::Display for Gateway {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "http://{}{}", self.addr, self.control_url)
}
}