forked from underbluewaters/secret-santa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsecret_santa.py
198 lines (161 loc) · 5.36 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
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.
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 u'%s ---> %s' % (self.giver.name, self.receiver.name)
def parse_yaml(yaml_path=CONFIG_PATH):
return yaml.load(open(yaml_path, encoding='utf-8'), Loader=yaml.FullLoader)
def choose_receiver(giver, receivers):
choice = random.choice(receivers)
if choice.name in giver.invalid_matches or giver.name == choice.name:
if len(receivers) == 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, _ = getopt.getopt(argv[1:], "shc", ["send", "help"])
except getopt.error as msg:
raise Usage(msg)
# option processing
send = False
for option, _ in opts:
if option in ("-s", "--send"):
send = 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:
name, email = re.match(r'([^<]*)<([^>]*)>', person).groups()
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 not send:
print(u"""
Test pairings:
%s
To send out emails with new pairings,
call with the --send argument:
$ python secret_santa.py --send
""" % format(u"\n".join([str(p) for p in pairs])))
if send:
server = smtplib.SMTP_SSL(config['SMTP_SERVER'],
config['SMTP_PORT'])
server.ehlo()
server.login(config['USERNAME'], config['PASSWORD'])
for pair in pairs:
zone = pytz.timezone(config['TIMEZONE'])
now = zone.localize(datetime.datetime.now())
# Sun, 21 Dec 2008 06:25:23 +0000
date = now.strftime('%a, %d %b %Y %T %Z')
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:
server.sendmail(frm, [to], body.encode('utf8'))
print("Emailed %s <%s>" % (pair.giver.name, to))
if send:
server.quit()
except Usage as e:
print >> sys.stderr, sys.argv[0].split("/")[-1] + ": " + str(e.msg)
print >> sys.stderr, "\t for help use --help"
return 2
if __name__ == "__main__":
sys.exit(main())