2024-08-14 22:05:00 +02:00
|
|
|
#!/usr/bin/python3
|
|
|
|
import os
|
|
|
|
import tkinter as tk
|
2024-08-18 22:33:16 +02:00
|
|
|
from tkinter import ttk
|
2024-08-18 23:23:43 +02:00
|
|
|
|
2024-08-23 02:00:24 +02:00
|
|
|
from wg_func import (TunnelActiv, ListTunnels, ImportTunnel, ConToDict, GreenLabel, StartStopBTN, ShowAddress,
|
|
|
|
ExportTunnels)
|
|
|
|
|
|
|
|
fontcolor = '#4011a7'
|
2024-08-14 22:05:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
class MainWindow(tk.Tk):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
2024-08-18 22:33:16 +02:00
|
|
|
|
2024-08-14 22:05:00 +02:00
|
|
|
self.switch_on = None
|
|
|
|
self.switch_off = None
|
|
|
|
self.x_width = 600
|
2024-08-21 22:39:18 +02:00
|
|
|
self.y_height = 360
|
2024-08-14 22:05:00 +02:00
|
|
|
self.monitor_center_x = self.winfo_screenwidth() / 2 - (self.x_width / 2)
|
|
|
|
self.monitor_center_y = self.winfo_screenheight() / 2 - (self.y_height / 2)
|
2024-08-18 22:33:16 +02:00
|
|
|
self.resizable(width=False, height=False)
|
2024-08-14 22:05:00 +02:00
|
|
|
self.title('Wire-Py')
|
|
|
|
self.configure()
|
|
|
|
self.geometry('%dx%d+%d+%d' % (self.x_width, self.y_height, self.monitor_center_x, self.monitor_center_y))
|
2024-08-21 22:39:18 +02:00
|
|
|
self.columnconfigure(2, weight=1)
|
|
|
|
self.rowconfigure(0, weight=1)
|
|
|
|
self.style = ttk.Style(self)
|
|
|
|
self.style.theme_use('clam')
|
2024-08-14 22:05:00 +02:00
|
|
|
# Load the image file from disk.
|
2024-08-17 00:30:42 +02:00
|
|
|
self.wg_icon = tk.PhotoImage(file=r'icons/wg-vpn-48.png')
|
2024-08-14 22:05:00 +02:00
|
|
|
# Set it as the window icon.
|
2024-08-17 00:30:42 +02:00
|
|
|
self.iconphoto(True, self.wg_icon)
|
2024-08-14 22:05:00 +02:00
|
|
|
|
2024-08-18 22:33:16 +02:00
|
|
|
FrameWidgets(self).grid()
|
|
|
|
|
|
|
|
|
|
|
|
class FrameWidgets(ttk.Frame):
|
|
|
|
def __init__(self, container, **kwargs):
|
|
|
|
super().__init__(container, **kwargs)
|
|
|
|
|
2024-08-23 02:00:24 +02:00
|
|
|
self.enp = None
|
|
|
|
self.DNS = None
|
|
|
|
self.add = None
|
|
|
|
self.data = None
|
|
|
|
self.peer = None
|
2024-08-21 11:50:01 +02:00
|
|
|
self.lb_tunnel = None
|
2024-08-19 23:28:53 +02:00
|
|
|
self.wg_read = None
|
2024-08-14 22:05:00 +02:00
|
|
|
self.wg_vpn_start = tk.PhotoImage(file=r'icons/wg-vpn-start-48.png')
|
|
|
|
self.wg_vpn_stop = tk.PhotoImage(file=r'icons/wg-vpn-stop-48.png')
|
|
|
|
self.imp_pic = tk.PhotoImage(file=r'icons/wg-import.png')
|
|
|
|
self.tr_pic = tk.PhotoImage(file=r'icons/wg-trash-48.png')
|
|
|
|
self.exp_pic = tk.PhotoImage(file=r'icons/wg-export-48.png')
|
2024-08-18 22:33:16 +02:00
|
|
|
self.warning_pic = tk.PhotoImage(file=r'icons/warning_64.png')
|
2024-08-21 22:39:18 +02:00
|
|
|
self.configure()
|
|
|
|
|
2024-08-18 23:23:43 +02:00
|
|
|
# Show active Tunnel
|
|
|
|
self.a = TunnelActiv.active()
|
2024-08-23 02:00:24 +02:00
|
|
|
# Label Frame 1
|
2024-08-19 23:28:53 +02:00
|
|
|
self.lb_frame = ttk.Frame(self)
|
|
|
|
self.lb_frame.configure(relief='solid')
|
2024-08-21 22:39:18 +02:00
|
|
|
self.lb_frame.grid(column=2, row=2, sticky='snew', padx=20, pady=5)
|
|
|
|
self.columnconfigure(0, weight=1)
|
|
|
|
self.rowconfigure(0, weight=1)
|
2024-08-23 02:00:24 +02:00
|
|
|
# Label Frame 2
|
2024-08-19 23:28:53 +02:00
|
|
|
self.lb_frame2 = ttk.Frame(self)
|
|
|
|
self.lb_frame2.configure(relief='solid')
|
2024-08-21 22:39:18 +02:00
|
|
|
self.lb_frame2.grid(column=2, row=3, sticky='snew', padx=20, pady=5)
|
|
|
|
self.columnconfigure(0, weight=1)
|
|
|
|
self.rowconfigure(0, weight=1)
|
2024-08-14 22:05:00 +02:00
|
|
|
# Show active Label
|
2024-08-18 22:33:16 +02:00
|
|
|
self.select_tunnel = None
|
2024-08-21 22:39:18 +02:00
|
|
|
self.lb = tk.Label(self, text='Active: ')
|
2024-08-14 22:05:00 +02:00
|
|
|
self.lb.config(font=("Ubuntu", 11, "bold"))
|
2024-08-21 22:39:18 +02:00
|
|
|
self.lb.grid(column=2, row=1, padx=15, sticky="w")
|
2024-08-14 22:05:00 +02:00
|
|
|
# Label to Show active Tunnel
|
2024-08-18 23:23:43 +02:00
|
|
|
self.StrVar = tk.StringVar(value=self.a)
|
2024-08-21 11:50:01 +02:00
|
|
|
GreenLabel.green_show_label(self)
|
|
|
|
# Interface Label
|
2024-08-23 02:00:24 +02:00
|
|
|
self.interface = tk.Label(self.lb_frame, text='Interface', fg=fontcolor)
|
2024-08-21 22:39:18 +02:00
|
|
|
self.interface.grid(column=0, row=4, sticky="we", padx=120)
|
2024-08-19 23:28:53 +02:00
|
|
|
self.interface.config(font=("Ubuntu", 9))
|
2024-08-21 11:50:01 +02:00
|
|
|
# Peer Label
|
2024-08-23 02:00:24 +02:00
|
|
|
self.peer = tk.Label(self.lb_frame2, text='Peer', fg=fontcolor)
|
2024-08-19 23:28:53 +02:00
|
|
|
self.peer.config(font=("Ubuntu", 9))
|
2024-08-21 22:39:18 +02:00
|
|
|
self.peer.grid(column=0, row=7, sticky="we", padx=130)
|
2024-08-23 02:00:24 +02:00
|
|
|
# Listbox with Scrollbar
|
2024-08-14 22:05:00 +02:00
|
|
|
self.scrollbar = tk.Scrollbar(self)
|
|
|
|
self.l_box = tk.Listbox(self, fg='#606060', selectmode='single')
|
|
|
|
self.l_box.config(highlightthickness=0, relief='flat')
|
|
|
|
self.scrollbar.config(command=self.l_box.yview)
|
|
|
|
self.l_box.config(font=("Ubuntu", 12, "bold"))
|
|
|
|
self.l_box.grid(column=1, rowspan=3, row=1, )
|
2024-08-23 02:00:24 +02:00
|
|
|
# Tunnel List
|
2024-08-19 08:29:35 +02:00
|
|
|
self.tl = ListTunnels.tl_list()
|
2024-08-14 22:05:00 +02:00
|
|
|
for tunnels in self.tl:
|
|
|
|
self.l_box.insert("end", tunnels)
|
|
|
|
self.l_box.update()
|
|
|
|
# Button Vpn
|
2024-08-18 23:23:43 +02:00
|
|
|
if self.a != '':
|
2024-08-21 12:51:07 +02:00
|
|
|
StartStopBTN.button_stop(self)
|
2024-08-19 23:28:53 +02:00
|
|
|
wg_read = os.environ['HOME'] + '/tester/' + str(self.a) + '.conf'
|
|
|
|
file = open(wg_read, 'r')
|
2024-08-23 02:00:24 +02:00
|
|
|
data = ConToDict.covert_to_dict(file)
|
|
|
|
# Address Label
|
2024-08-23 12:57:07 +02:00
|
|
|
ShowAddress.init_and_report(self, data)
|
2024-08-23 02:00:24 +02:00
|
|
|
ShowAddress.show_data(self)
|
2024-08-19 23:28:53 +02:00
|
|
|
file.close()
|
2024-08-14 22:05:00 +02:00
|
|
|
else:
|
2024-08-21 12:51:07 +02:00
|
|
|
StartStopBTN.button_start(self)
|
2024-08-23 02:00:24 +02:00
|
|
|
# Address Label
|
|
|
|
self.add = tk.StringVar()
|
|
|
|
self.DNS = tk.StringVar()
|
|
|
|
self.enp = tk.StringVar()
|
2024-08-23 12:57:07 +02:00
|
|
|
ShowAddress.label_empty(self)
|
2024-08-23 02:00:24 +02:00
|
|
|
ShowAddress.show_data(self)
|
2024-08-14 22:05:00 +02:00
|
|
|
# Button Import
|
2024-08-19 08:29:35 +02:00
|
|
|
self.btn_i = tk.Button(self, image=self.imp_pic, bd=0, command=lambda: ImportTunnel.wg_import_select(self))
|
2024-08-14 22:05:00 +02:00
|
|
|
self.btn_i.grid(column=0, row=2, padx=15, pady=15)
|
2024-08-18 22:33:16 +02:00
|
|
|
|
|
|
|
def delete():
|
|
|
|
self.select_tunnel = self.l_box.curselection()
|
|
|
|
select_tl = self.l_box.get(self.select_tunnel[0])
|
|
|
|
os.system('nmcli connection delete ' + str(select_tl))
|
|
|
|
self.l_box.delete(self.select_tunnel[0])
|
2024-08-19 23:28:53 +02:00
|
|
|
os.remove(os.environ['HOME'] + '/tester/' + str(select_tl) + '.conf')
|
2024-08-23 10:07:38 +02:00
|
|
|
if self.a != '' and self.a == select_tl:
|
2024-08-18 22:33:16 +02:00
|
|
|
self.StrVar.set(value='')
|
2024-08-21 12:51:07 +02:00
|
|
|
StartStopBTN.button_start(self)
|
2024-08-19 08:29:35 +02:00
|
|
|
self.l_box.update()
|
2024-08-23 10:07:38 +02:00
|
|
|
# Address Label
|
2024-08-23 12:57:07 +02:00
|
|
|
ShowAddress.label_empty(self)
|
2024-08-23 10:07:38 +02:00
|
|
|
ShowAddress.show_data(self)
|
2024-08-18 23:23:43 +02:00
|
|
|
# Button Trash
|
2024-08-18 22:33:16 +02:00
|
|
|
self.btn_tr = tk.Button(self, image=self.tr_pic, bd=0, command=delete)
|
2024-08-14 22:05:00 +02:00
|
|
|
self.btn_tr.grid(column=0, row=3, padx=15, pady=15)
|
|
|
|
# Button Export
|
|
|
|
self.btn_exp = tk.Button(self, image=self.exp_pic, bd=0)
|
|
|
|
self.btn_exp.grid(column=0, row=4, padx=15, pady=15)
|
2024-08-18 23:23:43 +02:00
|
|
|
# Check Buttons
|
2024-08-14 22:05:00 +02:00
|
|
|
self.wg_autostart = tk.Checkbutton(self, text='Autoconnect on PC Start')
|
|
|
|
self.wg_autostart.grid(column=1, rowspan=3, row=3)
|
|
|
|
self.wg_update = tk.Checkbutton(self, text='Search automatically for\nWire-Py updates')
|
|
|
|
self.wg_update.grid(column=1, rowspan=3, row=4)
|
|
|
|
|
|
|
|
def wg_switch(self):
|
2024-08-18 23:23:43 +02:00
|
|
|
self.a = TunnelActiv.active()
|
|
|
|
if self.a == '':
|
2024-08-21 12:51:07 +02:00
|
|
|
StartStopBTN.button_start(self)
|
2024-08-14 22:05:00 +02:00
|
|
|
self.select_tunnel = self.l_box.curselection()
|
|
|
|
select_tl = self.l_box.get(self.select_tunnel[0])
|
|
|
|
os.system('nmcli connection up ' + str(select_tl))
|
2024-08-19 23:28:53 +02:00
|
|
|
wg_read = os.environ['HOME'] + '/tester/' + str(select_tl) + '.conf'
|
|
|
|
file = open(wg_read, 'r')
|
2024-08-23 02:00:24 +02:00
|
|
|
data = ConToDict.covert_to_dict(file)
|
|
|
|
# Address Label
|
2024-08-23 12:57:07 +02:00
|
|
|
ShowAddress.init_and_report(self, data)
|
2024-08-23 02:00:24 +02:00
|
|
|
ShowAddress.show_data(self)
|
2024-08-19 23:28:53 +02:00
|
|
|
file.close()
|
2024-08-18 23:23:43 +02:00
|
|
|
# Button Start/Stop
|
2024-08-21 12:51:07 +02:00
|
|
|
StartStopBTN.button_stop(self)
|
2024-08-18 23:23:43 +02:00
|
|
|
self.a = TunnelActiv.active()
|
2024-08-17 00:30:42 +02:00
|
|
|
self.StrVar = tk.StringVar()
|
2024-08-18 23:23:43 +02:00
|
|
|
self.StrVar.set(self.a)
|
2024-08-21 11:50:01 +02:00
|
|
|
GreenLabel.green_show_label(self)
|
2024-08-18 23:23:43 +02:00
|
|
|
elif self.a != '':
|
2024-08-14 22:05:00 +02:00
|
|
|
# Button Start/Stop
|
2024-08-21 12:51:07 +02:00
|
|
|
StartStopBTN.button_stop(self)
|
2024-08-18 23:23:43 +02:00
|
|
|
os.system('nmcli connection down ' + str(self.a))
|
|
|
|
# Button Start/Stop
|
2024-08-21 12:51:07 +02:00
|
|
|
StartStopBTN.button_start(self)
|
2024-08-18 23:23:43 +02:00
|
|
|
self.a = TunnelActiv.active()
|
2024-08-23 02:00:24 +02:00
|
|
|
self.StrVar.set('')
|
2024-08-21 11:50:01 +02:00
|
|
|
GreenLabel.green_show_label(self)
|
2024-08-23 02:00:24 +02:00
|
|
|
# Address Label
|
2024-08-23 12:57:07 +02:00
|
|
|
ShowAddress.label_empty(self)
|
2024-08-23 02:00:24 +02:00
|
|
|
ShowAddress.show_data(self)
|
2024-08-14 22:05:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
window = MainWindow()
|
|
|
|
window.mainloop()
|