forked from Opticos/GWSL-Source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GWSL_ssh.py
135 lines (94 loc) · 3.7 KB
/
GWSL_ssh.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
from tkinter import ttk
from tkinter import *
import tkinter as tk
import time
root = None
from PIL import Image
import PIL
import PIL.ImageTk
asset_dir = "Assets/"
def get_login(machine):
if root:
root.withdraw()
boxRoot = tk.Toplevel(master=root) # , fg="red", bg="black")
boxRoot.withdraw()
else:
boxRoot = tk.Tk()
boxRoot.withdraw()
def quitter():
boxRoot.quit()
boxRoot.destroy()
boxRoot.running = False
return None
def login(*args):
nonlocal creds
passw = link_pass.get()
user = link_user.get()
key = link_key.get()
if user != "" and (passw != "" or key != ""):
creds = {"user": user, "pass": passw, "key": key}
boxRoot.quit()
boxRoot.destroy()
# boxRoot.running = False
def browse_key(*args):
nonlocal creds
from tkinter.filedialog import askopenfilename
filename = tk.filedialog.askopenfilename(initialdir = "~/", title=f"Select a Valid SSH Private Key (.PPK) for {machine}", \
filetypes=[("PPK Key Files","*.ppk")])
link_key.insert(0, filename)
creds = {}
boxRoot.title("Login to " + str(machine))
boxRoot.iconname("Dialog")
boxRoot.minsize(300, 120)
boxRoot.running = True
boxRoot.protocol("WM_DELETE_WINDOW", quitter)
lbl = tk.Label(boxRoot, text="Login:", justify=LEFT) # , font=("Helvetica", 16))
# lbl.grid(row=0, padx=10, sticky="W")
boxRoot.grid_rowconfigure(0, weight=0)
# First frame
frame_1 = ttk.Frame(boxRoot, padding="0.15i")
imager = Image.open(asset_dir + "lock.png")
img = PIL.ImageTk.PhotoImage(imager.resize([48, 48]))
labelm = tk.Label(frame_1, image=img)
labelm.image = img
labelm.grid(row=0, padx=10, pady=10, sticky="EW", rowspan=2)
tk.Label(frame_1, text="Username: ").grid(row=0, column=1, padx=10, sticky="W")
link_user = ttk.Entry(frame_1)
link_user.grid(row=0, column=2, padx=10, sticky="WE")
link_user.focus_force()
tk.Label(frame_1, text="Password: ").grid(row=1, column=1, padx=10, sticky="W")
link_pass = ttk.Entry(frame_1, show="*")
link_pass.grid(row=1, column=2, padx=10, sticky="WE")
tk.Label(frame_1, text="SSH Private Key: ").grid(row=2, column=1, padx=10, sticky="W")
link_key = ttk.Entry(frame_1)
link_key.grid(row=2, column=2, padx=10, sticky="WE")
key_b = ttk.Button(frame_1, text="...", command=browse_key, width=4)
key_b.grid(row=2, column=3, padx=0, sticky="W")
machines = []
frame_1.grid(row=1, column=0, padx=20, sticky="SWE", columnspan=2)
frame_1.grid_columnconfigure(2, weight=1)
frame_3 = tk.Frame(boxRoot) # , padding="0.15i")
close_b = ttk.Button(frame_3, text="Cancel", command=quitter)
close_b.grid(column=0, row=0, sticky="SW", padx=10)
test_b = ttk.Button(frame_3, text="Login", command=login)
test_b.grid(column=2, row=0, sticky="SE", padx=10)
frame_3.grid(row=3, column=0, padx=20, pady=20, sticky="SWE", columnspan=2)
frame_3.grid_columnconfigure(2, weight=1)
frame_3.grid_columnconfigure(1, weight=1)
frame_3.grid_columnconfigure(0, weight=1)
boxRoot.grid_rowconfigure(1, weight=0)
boxRoot.grid_rowconfigure(2, weight=1)
boxRoot.grid_rowconfigure(3, weight=0)
boxRoot.bind("<Return>", login)
boxRoot.grid_columnconfigure(0, weight=1)
boxRoot.deiconify()
boxRoot.wm_attributes("-topmost", 1)
while True:
# draw(canvas, mouse=False)
time.sleep(0.05)
boxRoot.update()
if boxRoot.running == False:
break
if creds != {}:
return creds
#print(get_login("raspberrypi"))