-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgui.rb
112 lines (99 loc) · 3.33 KB
/
gui.rb
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
require './sistemaVotacao.rb'
require './autenticacao.rb'
require 'fileutils'
def init
@stl = SomebodyToLove.new
end
def set_inputPassword(title,label)
dlg = Qt::InputDialog.new self
dlg.setWindowTitle title
dlg.setLabelText label
dlg.setTextEchoMode Qt::LineEdit::Password
return dlg
end
def menuVotar stl
senha = nil
while senha == nil or senha.strip.empty?
dialog = set_inputPassword("Autenticando...", "Digite a senha:")
dialog.exec
if dialog.result == Qt::Dialog::Accepted
senha = dialog.textValue
elsif dialog.result == Qt::Dialog::Rejected
return "fail"
end
end
senha = senha.strip
# Qt::MessageBox.information self, "Senha", "senha: #{senha}\n==? #{stl.senha?(senha)}\nstl-senha: #{stl.senha}"
if(!stl.senha?(senha))
Qt::MessageBox.critical self, "Erro!", "Senha incorreta!"
return "fail"
end
return senha
end
def menuIniciarVotacao
init
FileUtils.mkdir_p("backup")
begin
FileUtils.cp(".votos","backup/votos#{Time.now}")
FileUtils.cp(".listaRAs","backup/listaRAs#{Time.now}")
rescue Exception => e
end
system ("clear")
senha = 100000 + Random.rand(1000000)
if File.exists?(".listaRAs")
linha = File.readlines(".votos").first
while true
begin
#puts "Digite a senha da votacao anterior: "
senhaAntiga = nil
while senhaAntiga == nil or senhaAntiga.strip.empty?
dialog = set_inputPassword("Reinicializando...", "Digite a senha da votacao anterior:")
dialog.exec
if dialog.result == Qt::Dialog::Accepted
senhaAntiga = dialog.textValue
elsif dialog.result == Qt::Dialog::Rejected
Qt::MessageBox.warning self, "Saindo...", "Saindo da Aplicacao"
abort
end
# senhaAntiga = Qt::InputDialog.getText self, "Reinicializando", "Digite a senha da votacao anterior:", Qt::LineEdit::Password
end
senhaAntiga = senhaAntiga.strip
if("ok" == @stl.descriptografar(linha,senhaAntiga))
if [email protected](senhaAntiga,senha)
Qt::MessageBox.critical self, "Erro!", "Falha ao recuperar votacao!"
abort
end
Qt::MessageBox.information self, "Sucesso!", "Votacao reinicializada.\nATENCAO! Anote a NOVA senha: #{senha}"
@stl.senha = senha
return @stl
end
rescue StandardError => e
Qt::MessageBox.critical self, "Erro!", "Some blackMAGIC happened. Its fucked!!"
abort
end
end
else
@stl.iniciarVotacao("#{senha}")
Qt::MessageBox.information self, "Sucesso!", "Votacao inicializada.\nATENCAO! Anote a senha: #{senha}"
return @stl
end
end
def menuMostrarResultado stl
senha = nil
while senha == nil or senha.strip.empty?
dlg = set_inputPassword("Autenticando...", "Digite a senha:")
dlg.exec
if dlg.result == Qt::Dialog::Accepted
senha = dlg.textValue
elsif dlg.result == Qt::Dialog::Rejected
return "fail"
end
end
if (!stl.senha? senha)
Qt::MessageBox.critical self, "Erro!", "Senha incorreta!"
return "fail"
end
return senha
end
#menuIniciarVotacao
#menuInicial