-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection_string_builder.py
540 lines (439 loc) · 22.5 KB
/
connection_string_builder.py
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
import sys
from PyQt5.QtWidgets import (
QWidget, QLabel, QLineEdit, QVBoxLayout, QFormLayout, QComboBox,
QPushButton, QCheckBox, QApplication, QFileDialog, QMessageBox, QStackedLayout, QHBoxLayout
)
from PyQt5.QtCore import Qt, pyqtSignal
class ConnectionStringBuilder(QWidget):
"""
A simple tool to generate PLC4X connection strings for different protocols, such as OPCUA, Modbus, and S7.
"""
connectionStringGenerated = pyqtSignal(str)
def __init__(self, initial_connection_string="", connection_type='production', parent=None):
super().__init__(parent)
self.connection_type = connection_type
self.setWindowTitle(f"Connection String Builder ({connection_type.capitalize()})")
self.setGeometry(100, 100, 600, 600)
self.init_ui()
if initial_connection_string:
self.load_connection_string(initial_connection_string)
def init_ui(self):
# Main Layout
main_layout = QVBoxLayout(self)
mode_layout = QFormLayout()
self.mode_dropdown = QComboBox()
self.mode_dropdown.addItems(["OPCUA", "Modbus", "S7"])
self.mode_dropdown.currentTextChanged.connect(self.update_mode)
self.expert_mode_checkbox = QCheckBox("Expert Mode")
self.expert_mode_checkbox.stateChanged.connect(self.toggle_expert_mode)
mode_layout.addRow("Mode:", self.mode_dropdown)
mode_layout.addRow("", self.expert_mode_checkbox)
self.manual_connection_edit = QLineEdit()
self.manual_connection_edit.setPlaceholderText("Enter custom connection string here")
self.manual_connection_edit.setVisible(False)
main_layout.addLayout(mode_layout)
main_layout.addWidget(self.manual_connection_edit)
self.stacked_layout = QStackedLayout()
main_layout.addLayout(self.stacked_layout)
self.init_opcua_form()
self.init_modbus_form()
self.init_s7_form()
generate_button = QPushButton("Generate Connection String")
generate_button.clicked.connect(self.generate_connection_string)
main_layout.addWidget(generate_button)
self.generated_connection_edit = QLineEdit()
self.generated_connection_edit.setReadOnly(True)
main_layout.addWidget(QLabel("Generated Connection String:"))
main_layout.addWidget(self.generated_connection_edit)
self.update_mode(self.mode_dropdown.currentText())
def load_connection_string(self, connection_str):
"""
Parses the connection string and populates the UI fields accordingly.
"""
try:
if connection_str.startswith("opcua:"):
mode = "OPCUA"
stripped_conn = connection_str[len("opcua:"):]
elif connection_str.startswith("opc.tcp://"):
mode = "OPCUA"
stripped_conn = connection_str
elif connection_str.startswith("modbus-"):
mode = "Modbus"
stripped_conn = connection_str[len("modbus-tcp://"):]
elif connection_str.startswith("s7://"):
mode = "S7"
stripped_conn = connection_str[len("s7://"):]
else:
self.expert_mode_checkbox.setChecked(True)
self.manual_connection_edit.setText(connection_str)
return
self.mode_dropdown.setCurrentText(mode)
if mode == "OPCUA":
self.parse_opcua_connection_string(stripped_conn)
elif mode == "Modbus":
self.parse_modbus_connection_string(connection_str)
elif mode == "S7":
self.parse_s7_connection_string(connection_str)
except Exception as e:
QMessageBox.critical(self, "Error", f"Failed to parse connection string: {e}")
self.expert_mode_checkbox.setChecked(True)
self.manual_connection_edit.setText(connection_str)
def parse_opcua_connection_string(self, connection_str):
"""
Parses an OPCUA connection string and populates the OPCUA form fields.
"""
try:
# Handle both "opc.tcp://" and "tcp://" prefixes
if connection_str.startswith("opc.tcp://"):
conn = connection_str[len("opc.tcp://"):]
elif connection_str.startswith("tcp://"):
conn = connection_str[len("tcp://"):]
else:
conn = connection_str
protocol, rest = conn.split("://", 1) if "://" in conn else ("opc.tcp", conn)
address_port, _, params = rest.partition("?")
ip, port = address_port.split(":") if ":" in address_port else (address_port, "4840") # as defult port = 4840
self.opcua_ip_edit.setText(ip)
self.opcua_port_edit.setText(port)
params_dict = {}
if params:
for param in params.split("&"):
if '=' in param:
key, value = param.split("=", 1)
params_dict[key] = value
self.opcua_discovery_checkbox.setChecked(params_dict.get("discovery", "false").lower() == "true")
security = params_dict.get("security", "NONE")
self.opcua_security_dropdown.setCurrentText(security)
self.set_opcua_security_fields_visible(security)
security_policy = params_dict.get("security-policy", "NONE")
if security_policy != "NONE":
self.opcua_security_policy_dropdown.setCurrentText(security_policy)
if security in ["SIGN", "SIGN_ENCRYPT"]:
self.opcua_username_edit.setText(params_dict.get("username", ""))
self.opcua_password_edit.setText(params_dict.get("password", ""))
if security in ["SIGN", "SIGN_ENCRYPT"]:
self.opcua_key_store_file_edit.setText(params_dict.get("key-store-file", ""))
self.opcua_key_store_password_edit.setText(params_dict.get("key-store-password", ""))
self.opcua_server_certificate_file_edit.setText(params_dict.get("server-certificate-file", ""))
except Exception as e:
raise ValueError(f"Invalid OPCUA connection string format: {e}")
def parse_modbus_connection_string(self, connection_str):
"""
Parses a Modbus connection string and populates the Modbus form fields.
"""
try:
conn = connection_str[len("modbus-"):]
protocol, address = conn.split("://", 1)
self.modbus_protocol_dropdown.setCurrentText(protocol.upper())
if protocol.lower() == "tcp":
ip = address
self.modbus_ip_edit.setText(ip)
elif protocol.lower() == "serial":
port = address
self.modbus_ip_edit.setText(port)
except Exception as e:
raise ValueError(f"Invalid Modbus connection string format: {e}")
def parse_s7_connection_string(self, connection_str):
"""
Parses an S7 connection string and populates the S7 form fields.
"""
try:
conn = connection_str[len("s7://"):]
address, _, params = conn.partition("?")
ip, port = address.split(":") if ":" in address else (address, "102")
self.s7_ip_edit.setText(ip)
self.s7_port_edit.setText(port)
params_dict = {}
if params:
for param in params.split("&"):
if '=' in param:
key, value = param.split("=", 1)
params_dict[key] = value
except Exception as e:
raise ValueError(f"Invalid S7 connection string format: {e}")
def init_opcua_form(self):
"""
Initialize the OPCUA configuration form.
"""
self.opcua_widget = QWidget()
opcua_layout = QFormLayout(self.opcua_widget)
self.opcua_ip_edit = QLineEdit()
self.opcua_port_edit = QLineEdit()
self.opcua_port_edit.setPlaceholderText("Default: 4840")
self.opcua_discovery_checkbox = QCheckBox("Enable Discovery")
self.opcua_security_dropdown = QComboBox()
self.opcua_security_dropdown.addItems(["NONE", "SIGN", "SIGN_ENCRYPT"])
self.opcua_security_dropdown.currentTextChanged.connect(self.update_opcua_security_fields)
# New Security Policy Dropdown
self.opcua_security_policy_dropdown = QComboBox()
self.opcua_security_policy_dropdown.addItems([
"NONE",
"Basic128Rsa15",
"Basic256",
"Basic256Sha256",
"Aes128_Sha256_RsaOaep",
"Aes256_Sha256_RsaPss"
])
self.opcua_security_policy_dropdown.setCurrentText("NONE")
self.opcua_username_edit = QLineEdit()
self.opcua_password_edit = QLineEdit()
self.opcua_password_edit.setEchoMode(QLineEdit.Password)
# New Fields
self.opcua_key_store_file_edit = QLineEdit()
self.opcua_key_store_password_edit = QLineEdit()
self.opcua_key_store_password_edit.setEchoMode(QLineEdit.Password)
self.opcua_server_certificate_file_edit = QLineEdit()
# Buttons to browse files
self.opcua_browse_key_store_file = QPushButton("Browse")
self.opcua_browse_key_store_file.clicked.connect(lambda: self.browse_file(self.opcua_key_store_file_edit))
self.opcua_browse_server_cert_file = QPushButton("Browse")
self.opcua_browse_server_cert_file.clicked.connect(lambda: self.browse_file(self.opcua_server_certificate_file_edit))
# Layout
opcua_layout.addRow("IP:", self.opcua_ip_edit)
opcua_layout.addRow("Port:", self.opcua_port_edit)
opcua_layout.addRow("", self.opcua_discovery_checkbox)
opcua_layout.addRow("Security:", self.opcua_security_dropdown)
# For Production Connection String, include all security options
opcua_layout.addRow("Security Policy:", self.opcua_security_policy_dropdown)
# Username and Password Fields
self.opcua_username_label = QLabel("Username:")
self.opcua_password_label = QLabel("Password:")
# Certificate fields
self.opcua_key_store_file_label = QLabel("Key Store File:")
self.opcua_key_store_password_label = QLabel("Key Store Password:")
self.opcua_server_certificate_file_label = QLabel("Server Certificate File:")
# Username and Password Fields
opcua_layout.addRow(self.opcua_username_label, self.opcua_username_edit)
opcua_layout.addRow(self.opcua_password_label, self.opcua_password_edit)
# Key Store File
key_store_file_layout = QHBoxLayout()
key_store_file_layout.addWidget(self.opcua_key_store_file_edit)
key_store_file_layout.addWidget(self.opcua_browse_key_store_file)
opcua_layout.addRow(self.opcua_key_store_file_label, key_store_file_layout)
# Key Store Password
opcua_layout.addRow(self.opcua_key_store_password_label, self.opcua_key_store_password_edit)
# Server Certificate File
server_cert_file_layout = QHBoxLayout()
server_cert_file_layout.addWidget(self.opcua_server_certificate_file_edit)
server_cert_file_layout.addWidget(self.opcua_browse_server_cert_file)
opcua_layout.addRow(self.opcua_server_certificate_file_label, server_cert_file_layout)
self.set_opcua_security_fields_visible("NONE")
self.stacked_layout.addWidget(self.opcua_widget)
def browse_file(self, line_edit):
"""
Opens a file dialog to select a file and sets the selected file path to the provided QLineEdit.
"""
options = QFileDialog.Options()
file_path, _ = QFileDialog.getOpenFileName(
self,
"Select File",
"",
"All Files (*)",
options=options
)
if file_path:
line_edit.setText(file_path)
def init_modbus_form(self):
"""
Initialize the Modbus configuration form.
"""
self.modbus_widget = QWidget()
modbus_layout = QFormLayout(self.modbus_widget)
self.modbus_ip_edit = QLineEdit()
self.modbus_protocol_dropdown = QComboBox()
self.modbus_protocol_dropdown.addItems(["TCP", "Serial"])
modbus_layout.addRow("IP/Port:", self.modbus_ip_edit)
modbus_layout.addRow("Protocol:", self.modbus_protocol_dropdown)
self.stacked_layout.addWidget(self.modbus_widget)
def init_s7_form(self):
"""Initialize the S7 configuration form."""
self.s7_widget = QWidget()
s7_layout = QFormLayout(self.s7_widget)
self.s7_ip_edit = QLineEdit()
self.s7_port_edit = QLineEdit()
s7_layout.addRow("IP:", self.s7_ip_edit)
s7_layout.addRow("Port:", self.s7_port_edit)
self.stacked_layout.addWidget(self.s7_widget)
def toggle_expert_mode(self, state):
is_expert = state == Qt.Checked
self.manual_connection_edit.setVisible(is_expert)
self.stacked_layout.setCurrentIndex(-1)
for i in range(self.stacked_layout.count()):
widget = self.stacked_layout.widget(i)
widget.setEnabled(not is_expert)
if not is_expert:
self.update_mode(self.mode_dropdown.currentText())
def update_mode(self, mode):
if self.expert_mode_checkbox.isChecked():
return
if mode == "OPCUA":
self.stacked_layout.setCurrentWidget(self.opcua_widget)
elif mode == "Modbus":
self.stacked_layout.setCurrentWidget(self.modbus_widget)
elif mode == "S7":
self.stacked_layout.setCurrentWidget(self.s7_widget)
else:
self.stacked_layout.setCurrentIndex(-1) # Hide all
def update_opcua_security_fields(self, security_type):
"""
Show or hide OPCUA security options based on security_type.
"""
self.set_opcua_security_fields_visible(security_type)
def set_opcua_security_fields_visible(self, security_type):
"""
Helper method to set visibility of OPCUA security fields.
"""
self.opcua_key_store_file_label.hide()
self.opcua_key_store_file_edit.hide()
self.opcua_browse_key_store_file.hide()
self.opcua_key_store_password_label.hide()
self.opcua_key_store_password_edit.hide()
self.opcua_server_certificate_file_label.hide()
self.opcua_server_certificate_file_edit.hide()
self.opcua_browse_server_cert_file.hide()
if security_type == "SIGN":
self.opcua_username_label.show()
self.opcua_username_edit.show()
self.opcua_password_label.show()
self.opcua_password_edit.show()
self.opcua_security_policy_dropdown.show()
self.opcua_security_policy_dropdown.setEnabled(True)
elif security_type == "SIGN_ENCRYPT":
self.opcua_username_label.show()
self.opcua_username_edit.show()
self.opcua_password_label.show()
self.opcua_password_edit.show()
self.opcua_security_policy_dropdown.show()
self.opcua_security_policy_dropdown.setEnabled(True)
self.opcua_key_store_file_label.show()
self.opcua_key_store_file_edit.show()
self.opcua_browse_key_store_file.show()
self.opcua_key_store_password_label.show()
self.opcua_key_store_password_edit.show()
self.opcua_server_certificate_file_label.show()
self.opcua_server_certificate_file_edit.show()
self.opcua_browse_server_cert_file.show()
else:
self.opcua_username_label.hide()
self.opcua_username_edit.hide()
self.opcua_password_label.hide()
self.opcua_password_edit.hide()
self.opcua_security_policy_dropdown.hide()
self.opcua_security_policy_dropdown.setCurrentText("NONE")
self.opcua_key_store_file_label.hide()
self.opcua_key_store_file_edit.hide()
self.opcua_browse_key_store_file.hide()
self.opcua_key_store_password_label.hide()
self.opcua_key_store_password_edit.hide()
self.opcua_server_certificate_file_label.hide()
self.opcua_server_certificate_file_edit.hide()
self.opcua_browse_server_cert_file.hide()
def generate_connection_string(self):
if self.expert_mode_checkbox.isChecked():
connection_str = self.manual_connection_edit.text().strip()
if not connection_str:
QMessageBox.warning(self, "Input Error", "Please enter a connection string.")
return
self.generated_connection_edit.setText(connection_str)
# Emit the generated connection string
self.connectionStringGenerated.emit(connection_str)
return
mode = self.mode_dropdown.currentText()
connection_str = ""
if mode == "OPCUA":
ip = self.opcua_ip_edit.text().strip()
port = self.opcua_port_edit.text().strip() or "4840"
if not ip or not port:
QMessageBox.warning(self, "Input Error", "Please enter both IP and Port for OPCUA.")
return
params = []
if self.connection_type == 'scrape':
connection_str = f"opc.tcp://{ip}:{port}"
security = self.opcua_security_dropdown.currentText()
if security != "NONE":
params.append(f"security={security}")
# Security Policy
security_policy = self.opcua_security_policy_dropdown.currentText()
if security_policy != "NONE":
params.append(f"security-policy={security_policy}")
# Username and Password
if security in ["SIGN", "SIGN_ENCRYPT"]:
username = self.opcua_username_edit.text().strip()
password = self.opcua_password_edit.text().strip()
if not username or not password:
QMessageBox.warning(self, "Input Error", "Username and Password are required for the selected security level.")
return
params.append(f"username={username}")
params.append(f"password={password}")
# Key Store and Server Certificate Files
if security in ["SIGN", "SIGN_ENCRYPT"]:
key_store_file = self.opcua_key_store_file_edit.text().strip()
key_store_password = self.opcua_key_store_password_edit.text().strip()
server_certificate_file = self.opcua_server_certificate_file_edit.text().strip()
if not key_store_file or not key_store_password or not server_certificate_file:
QMessageBox.warning(self, "Input Error", "Key Store File, Key Store Password, and Server Certificate File are required for the selected security level.")
return
params.append(f"key-store-file={key_store_file}")
params.append(f"key-store-password={key_store_password}")
params.append(f"server-certificate-file={server_certificate_file}")
else:
connection_str = f"opcua:tcp://{ip}:{port}"
# For production connection string, include all params
if self.opcua_discovery_checkbox.isChecked():
params.append("discovery=true")
security = self.opcua_security_dropdown.currentText()
if security != "NONE":
params.append(f"security={security}")
# Security Policy
security_policy = self.opcua_security_policy_dropdown.currentText()
if security_policy != "NONE":
params.append(f"security-policy={security_policy}")
# Username and Password
if security in ["SIGN", "SIGN_ENCRYPT"]:
username = self.opcua_username_edit.text().strip()
password = self.opcua_password_edit.text().strip()
if not username or not password:
QMessageBox.warning(self, "Input Error", "Username and Password are required for the selected security level.")
return
params.append(f"username={username}")
params.append(f"password={password}")
# Key Store and Server Certificate Files
if security in ["SIGN", "SIGN_ENCRYPT"]:
key_store_file = self.opcua_key_store_file_edit.text().strip()
key_store_password = self.opcua_key_store_password_edit.text().strip()
server_certificate_file = self.opcua_server_certificate_file_edit.text().strip()
if not key_store_file or not key_store_password or not server_certificate_file:
QMessageBox.warning(self, "Input Error", "Key Store File, Key Store Password, and Server Certificate File are required for the selected security level.")
return
params.append(f"key-store-file={key_store_file}")
params.append(f"key-store-password={key_store_password}")
params.append(f"server-certificate-file={server_certificate_file}")
if params:
connection_str += "?" + "&".join(params)
elif mode == "Modbus":
ip_or_port = self.modbus_ip_edit.text().strip()
protocol = self.modbus_protocol_dropdown.currentText().lower()
if not ip_or_port:
QMessageBox.warning(self, "Input Error", "Please enter the IP or Port for Modbus.")
return
connection_str = f"modbus-{protocol}://{ip_or_port}"
elif mode == "S7":
ip = self.s7_ip_edit.text().strip()
if not ip:
QMessageBox.warning(self, "Input Error", "Please enter IP for S7.")
return
port = self.s7_port_edit.text().strip()
if port:
connection_str = f"s7://{ip}:{port}"
else:
connection_str = f"s7://{ip}"
self.generated_connection_edit.setText(connection_str)
self.connectionStringGenerated.emit(connection_str)
def main():
app = QApplication(sys.argv)
app.setStyle("Fusion")
window = ConnectionStringBuilder()
window.show()
sys.exit(app.exec_())
if __name__ == "__main__":
main()