-
Notifications
You must be signed in to change notification settings - Fork 0
/
projeto.py
168 lines (112 loc) · 3.3 KB
/
projeto.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
# Importando a biblioteca regex
import re
from soupsieve import match
try:
# A entrada do caso teste será feita via input
entrada = input().strip()
# Validação - Excesso de ''
elementos = entrada.split(' ')
while('' in elementos):
elementos.remove('')
# Validação - Quantidade de elementos
if(len(elementos) != 7):
print(False)
exit()
# Validação - Autor
autor = elementos[0]
n_letras = re.findall('[a-zA-Z]', autor)
n_digitos = re.findall('[0-9]', autor)
if(len(n_letras) >= len(n_digitos)):
if(re.match('[0-9]', autor)):
autor_val = False
else:
autor_val = True
else:
autor_val = False
# Validação - Senha
lista_senha = elementos[1].split('.')
t = 1
# Senha - 2 digitos por casa
for i in lista_senha:
if len(i) == 2:
t = t*1
else:
t = t*0
# Senha - validar caracteres
for i in lista_senha:
if re.findall(r'((\d\d)|([A-F]\d)|(\d[A-F]))', i):
t = t*1
else:
t = t*0
for i in lista_senha:
if re.findall(r'[0-9][0-9]', i):
if i[0] != i[1]:
t = t*1
else:
t = t*0
# Senha - Validar listas
if t:
senha_val = True
else:
senha_val = False
# Validação - IP
ip_fatiamento = elementos[2].split('.') # ['000', '000', '000', '000']
p = 1
if(len(ip_fatiamento) == 4):
for i in ip_fatiamento:
if int(i) >= 100:
p = p * 1
elif 10 <= int(i) < 100:
if re.match('0', i) == None:
p = p * 1
else:
p = p * 0
elif 1 <= int(i) < 10:
if re.match('00', i) == None:
p = p * 1
else:
p = p * 0
elif i == '000' or i == '00':
p = p * 0
else:
p = p * 1
if p:
ip_val = True
else:
ip_val = False
else:
ip_val = False
# Validação - E-mail
arrobas = 0
pattern_email1 = r'([a-zA-Z0-9]+([\.\-\_][a-zA-Z0-9]+)*)'
pattern_email2 = r'([\w]+\.[\w]+)(\.[\w]+)*'
for i in range(len(elementos[3])):
if elementos[3][i] == '@':
arrobas += 1
if arrobas == 1:
email_groups = elementos[3].split("@")
email_1 = re.match(pattern_email1, email_groups[0])
email_2 = re.match(pattern_email2, email_groups[1])
if email_1 and email_2:
email_val = True
else:
email_val = False
else:
email_val = False
# Validação - Tipo de transação
pattern_trans = ['pull', 'push', 'stash', 'pop']
# Validação - Repositório
pattern_rep = r'([\w_]+)'
rep_val = re.match(pattern_rep, elementos[5])
# Validação - Hash
pattern_hash = r'(\d|[a-f]){32}'
hash_val = re.match(pattern_hash, elementos[6])
# Validando resposta final
if (autor_val and senha_val and ip_val and email_val and trans_val and rep_val and hash_val):
result = True
else:
result = False
# Exibindo resultado
print(result)
except EOFError:
print(False)