forked from HackerSpaceMaringa/sistemaVotacaoHackSpace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsistemaVotacao.rb
282 lines (247 loc) · 6.88 KB
/
sistemaVotacao.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
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
require 'encryptor'
require 'base64'
require 'digest/md5'
require 'sysinfo'
require 'highline/import'
begin
require 'io/console'
rescue LoadError
end
class SomebodyToLove
attr_accessor :senha, :sysinfo
def initialize
@senha = ""
@sysinfo = SysInfo.new
end
def adicionarFimRandomico(string)
return "#{string}#{100+Random.rand(99)}"
end
def removerFimRandomico(string)
return string[0..-4]
end
def replace(filepath, regexp, *args, &block)
content = File.read(filepath).gsub(regexp, *args, &block)
File.open(filepath, 'wb') { |file| file.write(content) }
end
def criptografar(txt,senha=@senha)
return Base64.encode64(
Encryptor.encrypt(:value => adicionarFimRandomico(txt), :key => "#{senha}#{@sysinfo.hostname}"))
end
def descriptografar(txt,senha=@senha)
return removerFimRandomico(
Encryptor.decrypt(:value => Base64.decode64(txt), :key => "#{senha}#{@sysinfo.hostname}"))
end
def trocarSenha(senhaAntiga,senha)
if checarHash senhaAntiga
if File.exists?(".votos") && File.exists?(".listaRAs")
linha = File.readlines(".votos").first
if "ok" == descriptografar(linha, senhaAntiga)
logN = File.new(".logsN", "w+")
votosN = File.new(".votosN","w+")
listaRAsN = File.new(".listaRAsN","w+")
File.readlines(".votos").each do |line|
votosN.puts(criptografar(descriptografar(line,senhaAntiga),senha))
end
File.readlines(".listaRAs").each do |line|
listaRAsN.puts(criptografar(descriptografar(line,senhaAntiga),senha))
end
votosN.close
listaRAsN.close
begin
FileUtils.mv(".votosN",".votos")
FileUtils.mv(".listaRAsN",".listaRAs")
rescue Exception => e
puts e
return false
end
logN.puts(criptografar("ok",senha))
logN.puts(generateHash)
logN.close
begin
FileUtils.mv(".logsN",".logs")
rescue Exception => e
puts e
return false
end
@senha = senha
puts "Hash: #{generateHash}"
return true
end
end
end
return false
end
def iniciarVotacao(senha)
@senha = senha
log = File.new(".logs", "w+")
listaRAs = File.new(".listaRAs","w+")
votos = File.new(".votos","w+")
log.puts(criptografar("ok",senha))
listaRAs.puts(criptografar("ok",senha))
votos.puts(criptografar("ok",senha))
votos.close
listaRAs.close
log.puts(generateHash)
log.close
puts "Hash: #{generateHash}"
end
def generateHash
return "#{Digest::MD5.hexdigest(File.read(".votos")+File.read(".listaRAs"))}"
end
def checarHash(senha)
file = File.open(".logs","r+")
file.gets
oldHash = (file.gets).gsub("\n",'')
newHash = generateHash
file.close
return oldHash == newHash
end
def trocarHash(hash,senha)
file = File.open(".logs","r+")
firstLine = file.gets
if(checarSenha(firstLine,senha))
novoHash = generateHash
replace(".logs",/^#{hash}/mi) do |match|
novoHash
end
else
return false
end
file.close
end
def checarSenha(line,senha)
begin
return ("ok" == descriptografar(line,senha)) && ("#{senha}" == "#{@senha}")
rescue Exception => e
return false;
end
end
def senha?(senha)
log = File.open(".logs")
return checarSenha(log.gets,senha)
end
def votar(value,ra,senha)
begin
logs = File.open ".logs"
logs.gets
hashAntigo = logs.gets
logs.close
if(checarHash senha)
if(not possuiRA?(ra,senha))
file = File.open(".votos","r+")
firstLine = file.gets
if(checarSenha(firstLine,senha))
file.seek(1, IO::SEEK_END)
file.puts(criptografar("#{value}",senha))
file.close
adicionarVotante(ra,senha)
trocarHash(hashAntigo,senha)
return true
else
file.close
return "senha"
end
else
return "ra"
end
else
return "hash"
end
rescue Exception => e
puts e
return "exception"
end
end
def adicionarVotante(ra,senha)
i = 0
linha = ""
if(not possuiRA?(ra,senha))
File.readlines(".listaRAs").each do |line|
linha = line
if(i==0)
if(checarSenha(line,senha))
i=1
else
return false
end
else
if(Random.rand(1000) < 250)
break
end
end
end
linha = linha.gsub("+","\\\\+")
replace(".listaRAs",/^#{linha}/mi) do |match|
"#{match}#{criptografar("#{ra}",senha)}"
end
else
return false
end
end
def possuiRA?(ra,senha)
i = 0
File.readlines(".listaRAs").each do |line|
if(i==0)
if(checarSenha(line,senha))
i=1
else
return false
end
else
value = descriptografar(line,senha)
if(value == ra)
return true
end
end
end
return false
end
def listaDeVotantes(senha)
value = Array.new
if(checarHash senha)
i = 0
File.readlines(".listaRAs").each do |line|
if(i==0)
if(checarSenha(line,senha))
i=1
else
return false
end
else
value << descriptografar(line,senha)
end
end
return value
else
return false
end
end
def resultadoVotos(senha)
if(checarHash senha)
votos = {}
i = 0
File.readlines(".votos").each do |line|
if(i==0)
if(checarSenha(line,senha))
i=1
else
return false
end
else
value = descriptografar(line,senha)
if(votos.include? value)
votos[value] = votos[value] + 1
else
votos[value] = 1
end
end
end
return votos
else
return false
end
end
def get_password(prompt="Password: ")
ask("#{prompt}: ") { |q| q.echo = "*" }
end
end