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
use std::path::PathBuf;
use opcua_core::config::Config;
use crate::{
constants,
config::{ServerConfig, ServerEndpoint, ServerUserToken, ANONYMOUS_USER_TOKEN_ID},
server::Server
};
const DEFAULT_ENDPOINT_PATH: &str = "/";
pub struct ServerBuilder {
config: ServerConfig,
}
impl ServerBuilder {
pub fn new() -> Self {
ServerBuilder {
config: ServerConfig::default()
}
}
pub fn new_anonymous<T>(application_name: T) -> Self where T: Into<String> {
let user_token_ids = vec![ANONYMOUS_USER_TOKEN_ID.to_string()];
ServerBuilder::new()
.application_name(application_name)
.endpoint("none", ServerEndpoint::new_none(DEFAULT_ENDPOINT_PATH, &user_token_ids))
}
pub fn new_sample() -> ServerBuilder {
warn!("Sample configuration is for testing purposes only. Use a proper configuration in your production environment");
let path = DEFAULT_ENDPOINT_PATH;
let sample_user_id = "sample_user";
let user_token_ids = vec![ANONYMOUS_USER_TOKEN_ID.to_string(), sample_user_id.to_string()];
ServerBuilder::new()
.application_name("OPC UA Sample Server")
.application_uri("urn:OPC UA Sample Server")
.create_sample_keypair(true)
.discovery_server_url(Some(constants::DEFAULT_DISCOVERY_SERVER_URL.to_string()))
.user_token("sample_user", ServerUserToken {
user: "sample".to_string(),
pass: Some("sample1".to_string()),
})
.user_token("unused_user", ServerUserToken {
user: "unused".to_string(),
pass: Some("unused1".to_string()),
})
.endpoints(vec![
("none", ServerEndpoint::new_none(path, &user_token_ids)),
("basic128rsa15_sign", ServerEndpoint::new_basic128rsa15_sign(path, &user_token_ids)),
("basic128rsa15_sign_encrypt", ServerEndpoint::new_basic128rsa15_sign_encrypt(path, &user_token_ids)),
("basic256_sign", ServerEndpoint::new_basic256_sign(path, &user_token_ids)),
("basic256_sign_encrypt", ServerEndpoint::new_basic256_sign_encrypt(path, &user_token_ids)),
("basic256sha256_sign", ServerEndpoint::new_basic256sha256_sign(path, &user_token_ids)),
("basic256sha256_sign_encrypt", ServerEndpoint::new_basic256sha256_sign_encrypt(path, &user_token_ids)),
("no_access", ServerEndpoint::new_none("/noaccess", &[]))
])
}
pub fn server(self) -> Option<Server> {
if self.is_valid() {
Some(Server::new(self.config))
} else {
None
}
}
pub fn config(self) -> ServerConfig {
self.config
}
pub fn is_valid(&self) -> bool {
self.config.is_valid()
}
pub fn application_name<T>(mut self, application_name: T) -> Self where T: Into<String> {
self.config.application_name = application_name.into();
self
}
pub fn application_uri<T>(mut self, application_uri: T) -> Self where T: Into<String> {
self.config.application_uri = application_uri.into();
self
}
pub fn product_uri<T>(mut self, product_uri: T) -> Self where T: Into<String> {
self.config.product_uri = product_uri.into();
self
}
pub fn create_sample_keypair(mut self, create_sample_keypair: bool) -> Self {
self.config.create_sample_keypair = create_sample_keypair;
self
}
pub fn pki_dir<T>(mut self, pki_dir: T) -> Self where T: Into<PathBuf> {
self.config.pki_dir = pki_dir.into();
self
}
pub fn endpoint<T>(mut self, endpoint_id: T, endpoint: ServerEndpoint) -> Self where T: Into<String> {
self.config.endpoints.insert(endpoint_id.into(), endpoint);
self
}
pub fn endpoints<T>(mut self, endpoints: Vec<(T, ServerEndpoint)>) -> Self where T: Into<String> {
for e in endpoints {
self.config.endpoints.insert(e.0.into(), e.1);
};
self
}
pub fn user_token<T>(mut self, user_token_id: T, user_token: ServerUserToken) -> Self where T: Into<String> {
self.config.user_tokens.insert(user_token_id.into(), user_token);
self
}
pub fn discovery_server_url(mut self, discovery_server_url: Option<String>) -> Self {
self.config.discovery_server_url = discovery_server_url;
self
}
pub fn host_and_port<T>(mut self, host: T, port: u16) -> Self where T: Into<String> {
self.config.tcp_config.host = host.into();
self.config.tcp_config.port = port;
self
}
pub fn discovery_url<T>(mut self, discovery_url: T) -> Self where T: Into<String> {
self.config.discovery_url = discovery_url.into();
self
}
pub fn max_subscriptions(mut self, max_subscriptions: u32) -> Self {
self.config.max_subscriptions = max_subscriptions;
self
}
pub fn max_array_length(mut self, max_array_length: u32) -> Self {
self.config.max_array_length = max_array_length;
self
}
pub fn max_string_length(mut self, max_string_length: u32) -> Self {
self.config.max_string_length = max_string_length;
self
}
pub fn max_byte_string_length(mut self, max_byte_string_length: u32) -> Self {
self.config.max_byte_string_length = max_byte_string_length;
self
}
}