-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterface.py
330 lines (292 loc) · 11.1 KB
/
interface.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
import re
import automation
import antiscorm as asm
import PySimpleGUI as Sg
from pdf.pdf_handler import PdfHandler
class GraphicInterface:
def __init__(self, config):
self.config = config
gen_font = "Arial 12 bold"
self.gen_font = gen_font
self.c = "lightgreen"
menu_opt = [
[
"Opções",
[
"Gerar PDF com prints",
"Inserir fotos no PDF",
"Selecionar modo",
"Selecionar navegador",
],
],
["Sobre", ["Sobre o AntiScorm"]],
]
layout = [
[Sg.Menu(menu_opt)],
[
Sg.Push(),
Sg.Text("AntiScorm", text_color="lightgreen", font="Arial 22 bold"),
Sg.Push(),
],
[Sg.Text("Cole abaixo o link direto do SCORM: ", font=gen_font)],
[
Sg.InputText(
tooltip="Link da janela que abre ao entrar no SCORM", size=(55, 10)
)
],
[Sg.Push()],
[
Sg.Text("RA: ", font=gen_font),
Sg.InputText(size=(15, 10)),
],
[
Sg.Text("Senha:", font=gen_font),
Sg.InputText(password_char="\u2022", size=(15, 10)),
],
[Sg.Push()],
[
Sg.Push(),
Sg.Button(
"Iniciar AntiScorm",
button_color=("black", "lightgreen"),
font=gen_font,
),
Sg.Push(),
],
[Sg.Push()],
]
window = Sg.Window("AntiScorm", layout)
while True:
event, values = window.read()
if event == Sg.WIN_CLOSED:
break
elif event == "Iniciar AntiScorm":
url: str = values[1]
ra: str = values[2]
senha: str = values[3]
url_pattern = "^https?:\\/\\/(?:www\\.)?[-a-zA-Z0-9@:%._\\+~#=]{1,256}\\.[a-zA-Z0-9()]{1,6}\\b(?:[-a-zA-Z0-9()@:%_\\+.~#?&\\/=]*)$"
if url is None or re.match(url_pattern, url) is None:
Sg.PopupError(
"O link informado não é uma URL válida.", font=gen_font
)
elif not ra.isnumeric():
Sg.PopupError("RA não informado ou inválido.", font=gen_font)
elif senha == "":
Sg.PopupError("Senha não informada.", font=gen_font)
else:
window.disappear()
mode = asm.ExecMode[self.config["modo"]]
automation.BrowserAutomation.perform_automation(
url,
self.config["senhas"],
self.config["navegador"],
mode,
ra,
senha,
)
window.reappear()
elif event == "Gerar PDF com prints":
self.gen_prints_pdf()
elif event == "Inserir fotos no PDF":
self.insert_photos_pdf()
elif event == "Selecionar modo":
self.select_mode()
elif event == "Selecionar navegador":
self.select_browser()
elif event == "Sobre o AntiScorm":
Sg.PopupOK(
f"Versão: {asm.VERSION}\n\nO AntiScorm foi criado com o objetivo de facilitar a"
+ " realização das atividades SCORM do IFMG Betim.\n\nO objetivo do AntiScorm NÃO é"
+ " promover o uso inconsciente de informações mas facilitar o trabalho manual de quem"
+ " já compreendeu o assunto.\n\nO principal objetivo é a geração automática do relatório"
+ " em PDF no formato requerido.",
title=event,
font=gen_font,
)
window.close()
def gen_prints_pdf(self):
"""
Função que cria a janela e gerencia as opções de inserção de prints
"""
gf = self.gen_font
folderpath = Sg.PopupGetFolder("Selecione a pasta contendo os prints", font=gf)
if folderpath is None:
return
elif folderpath == "":
Sg.PopupError("Nenhuma pasta foi selecionada", font=gf)
return
folder = asm.get_sorted_folder(folderpath)
img_count = 0
for file in folder:
if file.endswith(".png") or file.endswith(".jpg"):
img_count += 1
if len(folder) == 0 or img_count == 0:
Sg.PopupError("A pasta selecionada não contém imagens.", font=gf)
return
name = Sg.PopupGetText("Informe o nome desse SCORM:", font=gf)
if name is None:
Sg.PopupError("Nome informado inválido.", font=gf)
return
# Generate new PDF with selected folder images
filename = f"Scorm {name}"
PdfHandler.generate_pdf(name, filename, folderpath, folder)
Sg.PopupOK(
f"Foi gerado o PDF com {img_count} imagens. Verifique a pasta 'finalizados'.",
font=gf,
)
def insert_photos_pdf(self):
"""
Função que cria a janela e gerencia as opções de inserção de fotos
"""
gf = self.gen_font
filepath = Sg.PopupGetFile(
"Selecione o PDF gerado pelo AntiScorm",
font=gf,
file_types=[("PDF do Scorm", ".pdf")],
)
if filepath is None:
return
elif filepath == "":
Sg.PopupError("Nenhum arquivo foi selecionado", font=gf)
return
folderpath = Sg.PopupGetFolder("Selecione a pasta contendo as fotos", font=gf)
if folderpath is None:
return
elif folderpath == "":
Sg.PopupError("Nenhuma pasta foi selecionada", font=gf)
return
folder = asm.get_sorted_folder(folderpath)
img_count = 0
for file in folder:
if file.endswith(".png") or file.endswith(".jpg"):
img_count += 1
if len(folder) == 0 or img_count == 0:
Sg.PopupError("A pasta selecionada não contém imagens.", font=gf)
return
# Start placing images on PDF
PdfHandler.insert_images(filepath, folderpath, folder)
Sg.PopupOK(f"Foram inseridas {img_count} imagens no PDF final.", font=gf)
def select_mode(self):
"""
Função que cria a janela e gerencia a opção de seleção do modo
"""
layout = [[Sg.Text("Selecione o modo de execução:", font=self.gen_font)]]
for mode in asm.ExecMode:
layout.append(
[
Sg.Radio(
mode.value,
"m",
default=True if mode.name == self.config["modo"] else False,
font=self.gen_font,
text_color=self.c,
)
]
)
layout.append([Sg.Push(), Sg.Button("Salvar"), Sg.Push()])
window = Sg.Window("Selecionar modo", layout)
while True:
event, values = window.read()
if event == Sg.WIN_CLOSED:
break
elif event == "Salvar":
for i, mode in enumerate(asm.ExecMode):
if values[i]:
self.config["modo"] = mode.name
asm.save_config(self.config)
break
window.close()
def select_browser(self):
"""
Função que cria a janela e gerencia a opção de seleção do navegador
"""
selected = self.config["navegador"]
browsers = ("Chrome", "Firefox", "Edge")
layout = [
[Sg.Text("Selecione o navegador a ser utilizado:", font=self.gen_font)]
]
for browser in browsers:
layout.append(
[
Sg.Radio(
browser,
"b",
default=True if browser == selected else False,
font=self.gen_font,
text_color=self.c,
)
]
)
layout.append([Sg.Push(), Sg.Button("Salvar"), Sg.Push()])
window = Sg.Window("Selecionar navegador", layout)
while True:
event, values = window.read()
if event == Sg.WIN_CLOSED:
break
elif event == "Salvar":
for i in range(len(browsers)):
if values[i]:
self.config["navegador"] = browsers[i]
asm.save_config(self.config)
break
window.close()
@classmethod
def verify_popup(cls, question, answer):
gen_font = "Arial 12 bold"
guess = Sg.popup_get_text(
f"Informe sua resposta para a questão {question}:",
"Verificar resposta",
font=gen_font,
)
if guess is not None:
try:
guess_val = float(eval(guess))
answer_v = float(eval(answer))
ToleMin = 0.975
ToleMax = 1.025
if guess_val >= (ToleMin * answer_v) and guess_val <= (
ToleMax * answer_v
):
Sg.PopupOK("Parabéns! Resposta correta.", font=gen_font)
return guess
else:
Sg.PopupError("Resposta incorreta! Tente novamente.", font=gen_font)
return cls.verify_popup(question, answer)
except ValueError:
Sg.PopupError(
"Resposta inválida! Atenção ao valor digitado na caixa de texto.",
title="Resposta inválida",
font=gen_font,
)
return cls.verify_popup(question, answer)
else:
Sg.PopupOK(
f"A resposta correta da questão {question} era: {answer}",
title=f"Resposta da {question}",
font=gen_font,
)
return None
@classmethod
def finish_popup(cls, scorm_name):
Sg.PopupOK(
f"Scorm '{scorm_name}' executado com sucesso!"
+ " Verifique o PDF na pasta 'finalizados'.",
title="AntiScorm",
font="Arial 12 bold",
)
@classmethod
def driver_error_popup(cls):
Sg.PopupError(
"Erro ao instalar o Driver de Automação. Verifique sua conexão com a internet e"
+ " o arquivo log.txt na pasta do AntiScorm.",
font="Arial 12 bold",
title="AntiScorm",
)
@classmethod
def already_finished_popup(cls):
Sg.PopupError(
"Este SCORM já foi finalizado. Marque 'Começar uma nova tentativa'"
+ " na página do SCORM se deseja tentar novamente.",
font="Arial 12 bold",
title="AntiScorm",
)