forked from underbluewaters/secret-santa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
secret_santa.py
222 lines (186 loc) · 6.58 KB
/
secret_santa.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
import yaml
# sudo pip install pyyaml
import re
import random
import smtplib
import datetime
import pytz
import time
import socket
import sys
import getopt
import os
help_message = '''
To use, fill out config.yml with your own participants. You can also specify
DONT-PAIR so that people don't get assigned their significant other.
To send by email, you'll also need to specify your mail server settings.
An example is provided for routing mail through gmail.
For more information, see README.
'''
REQRD = (
'SMTP_SERVER',
'SMTP_PORT',
'USERNAME',
'PASSWORD',
'TIMEZONE',
'PARTICIPANTS',
'DONT-PAIR',
'FROM',
'SUBJECT',
'MESSAGE',
)
HEADER = """Date: {date}
Content-Type: text/plain; charset="utf-8"
Message-Id: {message_id}
From: {frm}
To: {to}
Subject: {subject}
"""
CONFIG_PATH = os.path.join(os.path.dirname(__file__), 'config.yml')
class Person:
def __init__(self, name, email, invalid_matches):
self.name = name
self.email = email
self.invalid_matches = invalid_matches
def __str__(self):
return "%s <%s>" % (self.name, self.email)
class Pair:
def __init__(self, giver, receiver):
self.giver = giver
self.receiver = receiver
def __str__(self):
return "%s ---> %s" % (self.giver.name, self.receiver.name)
def parse_yaml(yaml_path=CONFIG_PATH):
return yaml.load(open(yaml_path))
def choose_receiver(giver, receivers):
choice = random.choice(receivers)
if choice.name in giver.invalid_matches or giver.name == choice.name:
if len(receivers) is 1:
raise Exception('Only one receiver left, try again')
return choose_receiver(giver, receivers)
else:
return choice
def create_pairs(g, r):
givers = g[:]
receivers = r[:]
pairs = []
for giver in givers:
try:
receiver = choose_receiver(giver, receivers)
receivers.remove(receiver)
pairs.append(Pair(giver, receiver))
except:
return create_pairs(g, r)
return pairs
class Usage(Exception):
def __init__(self, msg):
self.msg = msg
def main(argv=None):
if argv is None:
argv = sys.argv
try:
try:
opts, args = getopt.getopt(argv[1:], "shc", ["send", "txt", "help"])
except getopt.error, msg:
raise Usage(msg)
# option processing
send = False
txt = False
for option, value in opts:
if option in ("-s", "--send"):
send = True
if option in ("-t", "--txt"):
txt = True
if option in ("-h", "--help"):
raise Usage(help_message)
config = parse_yaml()
for key in REQRD:
if key not in config.keys():
raise Exception(
'Required parameter %s not in yaml config file!' % (key,))
participants = config['PARTICIPANTS']
dont_pair = config['DONT-PAIR']
if len(participants) < 2:
raise Exception('Not enough participants specified.')
givers = []
for person in participants:
# only try to find email addresses when --send option is active (to allow lists without them)
if send:
try:
name, email = re.match(r'([^<]*)<([^>]*)>', person).groups()
except:
raise Exception('E-Mail address cannot be read for all users. Check formatting.')
else:
name = re.match(r'([^<]*)', person).groups()[0]
email = []
name = name.strip()
invalid_matches = []
for pair in dont_pair:
names = [n.strip() for n in pair.split(',')]
if name in names:
# is part of this pair
for member in names:
if name != member:
invalid_matches.append(member)
person = Person(name, email, invalid_matches)
givers.append(person)
receivers = givers[:]
pairs = create_pairs(givers, receivers)
if txt:
folder = "pairs"
if not os.path.exists(folder):
os.mkdir(folder)
for the_file in os.listdir(folder): # Clear directory
file_path = os.path.join(folder, the_file)
try:
if os.path.isfile(file_path):
os.unlink(file_path)
except Exception, e:
print e
for pair in pairs:
f = open("pairs/Santee of " + pair.giver.name + '.txt','w')
f.write(config['MESSAGE'].format(santa=pair.giver.name, santee=pair.receiver.name))
f.close()
if not (send or txt):
print """
Test pairings:
%s
To send out emails with new pairings,
call with the --send argument:
$ python secret_santa.py --send
To generate txt files to distribute manually,
call with the --txt argument:
$ python secret_santa.py --txt
""" % ("\n".join([str(p) for p in pairs]))
if send:
server = smtplib.SMTP(config['SMTP_SERVER'], config['SMTP_PORT'])
server.starttls()
server.login(config['USERNAME'], config['PASSWORD'])
for pair in pairs:
zone = pytz.timezone(config['TIMEZONE'])
now = zone.localize(datetime.datetime.now())
date = now.strftime('%a, %d %b %Y %T %Z') # Sun, 21 Dec 2008 06:25:23 +0000
message_id = '<%s@%s>' % (str(time.time())+str(random.random()), socket.gethostname())
frm = config['FROM']
to = pair.giver.email
subject = config['SUBJECT'].format(santa=pair.giver.name, santee=pair.receiver.name)
body = (HEADER+config['MESSAGE']).format(
date=date,
message_id=message_id,
frm=frm,
to=to,
subject=subject,
santa=pair.giver.name,
santee=pair.receiver.name,
)
if send:
result = server.sendmail(frm, [to], body)
print "Emailed %s <%s>" % (pair.giver.name, to)
if send:
server.quit()
except Usage, err:
print >> sys.stderr, sys.argv[0].split("/")[-1] + ": " + str(err.msg)
print >> sys.stderr, "\t for help use --help"
return 2
if __name__ == "__main__":
sys.exit(main())