feat: Add WireGuard client

- Add a WireGuard client to the project.
- New utility functions have been added to parse the output of `wg show` command and improve error handling.
- Add start, down, show, show_config, generate_private_key, and get_public_key method to interact with the wg binary.
- Created a new example file to offer more clear usage.

Co-authored-by: mariobassem12 <mariobassem12@gmail.com>
This commit is contained in:
Mahmoud Emad
2025-02-02 14:41:21 +02:00
parent d803a49a85
commit 7bd997e368
5 changed files with 221 additions and 9 deletions

View File

@@ -0,0 +1,34 @@
#!/usr/bin/env -S v -n -w -gc none -no-retry-compilation -d use_openssl -enable-globals run
import freeflowuniverse.herolib.clients.wireguard
import time
println('HIIII')
// Create Wireguard client
mut wg := wireguard.get()!
println('Hello')
config_file_path := '~/wg1.conf'
println('Before start')
wg.start(config_file_path: config_file_path)!
println('${config_file_path} is started')
time.sleep(time.second * 2)
info := wg.show()!
println('info: ${info}')
config := wg.show_config(interface_name: 'wg1')!
println('config: ${config}')
private_key := wg.generate_private_key()!
println('private_key: ${private_key}')
public_key := wg.get_public_key(private_key: private_key)!
println('public_key: ${public_key}')
time.sleep(time.second * 2)
wg.down(config_file_path: config_file_path)!
println('${config_file_path} is down')