-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
312 lines (235 loc) · 8.78 KB
/
main.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
# coding=utf-8
from os.path import exists
import json
import random
import smtplib
from email.mime.text import MIMEText
import base64
from cryptography.fernet import Fernet
from getpass import getpass
filename = "spegial-secret-santa.json"
def load_data_from_file():
if exists(filename):
with open(filename, "r") as f:
contents = f.read()
print("Dati caricati da file")
return json.loads(contents)
print("Non ho trovato dati salvati precedentemente")
key = Fernet.generate_key()
return {
'players': [],
'rules': [],
'extractions': [],
'key': key.decode('utf-8')
}
def save_data_to_file(content):
with open(filename, "w") as f:
f.write(json.dumps(content, sort_keys=True, indent=4))
print("File salvato")
def add_user(content):
name = input("Inserisci nome:")
email = input("Inserisci email:")
for player in content['players']:
if name == player['name']:
print("Nome già utilizzato")
return
if email == player['email']:
print("Indirizzo email già utilizzato")
return
id = 0
for player in content['players']:
id = max(id, player['id'])
id = id + 1
content['players'].append({
'id': id,
'name': name,
'email': email
})
def show_players(content):
for player in content['players']:
print(player['id'], player['name'], player['email'])
has_rules = False
for rule in content['rules']:
if rule['player_from'] == player['id']:
player_to = find_player_by_id(content, rule['player_to'])
print("\tNon fa il regalo a:", player_to['name'])
has_rules = True
if not has_rules:
print("\tFa il regalo a tutti")
def find_player_by_id(content, id):
for player in content['players']:
if player['id'] == id:
return player
print("Non ho trovato nessun giocatore con id", id)
return None
def find_player_by_name(content, name):
for player in content['players']:
if player['name'] == name:
return player
print("Non ho trovato nessun giocatore con nome", name)
return None
def add_rule(content):
name = input("Scegli giocatore:")
player = find_player_by_name(content, name)
if player is None:
return
present_to_name = input("Inserisci giocatore verso cui scrivere la regola:")
player_present = find_player_by_name(content, present_to_name)
if player_present is None:
return
existing_rule = None
for rule in content['rules']:
if rule['player_from'] == player['id'] and rule['player_to'] == player_present['id']:
existing_rule = rule
break
if existing_rule is not None:
sn = input("Trovata regola tra i giocatori selezionati. Vuoi eliminarla? [S/N]")
if sn == "S":
content['rules'].remove(existing_rule)
print("Regola eliminata")
else:
print("Sto per inserire la regola: ", player['name'], "non fa il regalo a: ", player_present['name'])
sn = input("Procedo? [S/N]")
if sn == "S":
content['rules'].append({
'player_from': player['id'],
'player_to': player_present['id']
})
def extraction(content):
if len(content['players']) <= 1:
print("Aggiungi più giocatori per eseguire l'estrazione!")
return
ok = False
players_shuffled = random.sample(content['players'], len(content['players']))
while not ok:
ok = True
players_shuffled = random.sample(content['players'], len(content['players']))
for i in range(0, len(players_shuffled)):
present_from_id = content['players'][i]['id']
present_to_id = players_shuffled[i]['id']
if present_from_id == present_to_id:
ok = False
for rule in content['rules']:
if rule['player_from'] == present_from_id and rule['player_to'] == present_to_id:
ok = False
result = []
for i in range(0, len(players_shuffled)):
present_from_id = content['players'][i]['id']
present_to_id = players_shuffled[i]['id']
result.append({
'present_from_id': present_from_id,
'present_to_id': present_to_id
})
key = content['key'].encode('utf-8')
fernet = Fernet(key)
encoded_extraction = fernet.encrypt(json.dumps(result).encode())
extraction_id = 0
for extr in content['extractions']:
extraction_id = max(extraction_id, extr['id'])
extraction_id = extraction_id + 1
content['extractions'].append({
'id': extraction_id,
'extraction': encoded_extraction.decode('utf-8')
})
print("Estrazione ok con id ", extraction_id, encoded_extraction)
def send_email(content):
extraction_id = int(input("Scegli numero di estrazione: "))
extr = None
for extraction in content['extractions']:
if extraction['id'] == extraction_id:
extr = extraction
break
if extr is None:
print("Nessuna estrazione trovata")
return
id = int(input("Scegli giocatore:"))
player = find_player_by_id(content, id)
if player is None:
return
sender = input("Indirizzo email di invio: ")
password = getpass()
send_email_to_player(content, player, extr, sender, password)
def send_email_all(content):
extraction_id = int(input("Scegli numero di estrazione: "))
extr = None
for extraction in content['extractions']:
if extraction['id'] == extraction_id:
extr = extraction
break
if extr is None:
print("Nessuna estrazione trovata")
return
sender = input("Indirizzo email di invio: ")
password = getpass("Inserisci password email per l'invio: ")
for player in content['players']:
send_email_to_player(content, player, extr, sender, password)
def send_email_to_player(content, player, extr, sender, password):
key = content['key'].encode('utf-8')
fernet = Fernet(key)
decrypted_extraction = json.loads(fernet.decrypt(extr['extraction']).decode())
player_to = None
for assignment in decrypted_extraction:
if assignment['present_from_id'] == player['id']:
player_to = find_player_by_id(content, assignment['present_to_id'])
break
msg = MIMEText("Ciao " + player['name'] + ". Sono di nuovo il babbo natale spegiale. \n" +
"Questa è la mail di estrazione ufficiale per l'anno 2023. Alcune regole: \n\n"
"1. Non dire a nessuno chi ti è appena capitato\n" +
"2. Spendi 10 euro al massimo per il regalo\n" +
"3. Non rispondere a questa mail\n" +
"4. Sii originale e divertiti!!\n\n" +
"E ora il risultato dell'estrazione...\n\n"
"A te è capitato da fare il regalo a: \n\n" +
player_to['name'] + "\n\n" +
"Buon divertimento!!!\n\n" +
"Codice estrazione: " + extr['extraction'])
msg['Subject'] = "Spegial Secret Santa ufficiale 2023"
msg['From'] = sender
msg['To'] = player['email']
with smtplib.SMTP_SSL('smtp.gmail.com', 465) as smtp_server:
smtp_server.login(sender, password)
smtp_server.sendmail(sender, player['email'], msg.as_string())
print("Email inviata con successo a ", player['email'])
def delete_extractions(content):
content['extractions'] = []
def start():
print("Hello SpeGial Secret Santa")
print()
content = load_data_from_file()
choice_quit = False
while not choice_quit:
choice_quit = False
print()
print("Seleziona opzione:")
print("1. Aggiungi giocatori")
print("2. Salva")
print("3. Visualizza giocatori")
print("4. Aggiungi regola")
print("5. Esegui estrazione")
print("6. Avvisa giocatore")
print("7. Avvisa tutti i giocatori")
print("8. Cancella estrazioni")
print("0. Esci")
choice = int(input("Scelta:"))
if choice == 1:
add_user(content)
elif choice == 2:
save_data_to_file(content)
elif choice == 3:
show_players(content)
elif choice == 4:
add_rule(content)
elif choice == 5:
extraction(content)
elif choice == 6:
send_email(content)
elif choice == 7:
send_email_all(content)
elif choice == 8:
delete_extractions(content)
elif choice == 0:
print("Buon speGial secret santa")
choice_quit = True
else:
print("Scelta non valida!!")
start()