-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailboxchart.py
executable file
·258 lines (207 loc) · 8.54 KB
/
mailboxchart.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
#!/usr/bin/env python
from __future__ import division
import sys
import time
import datetime
import urllib
from copy import copy
from contextlib import contextmanager
# Move to argparse when moving to Python 2.7
from optparse import OptionParser, Option, OptionValueError
from mailbox import Maildir, MaildirMessage
from imaplib import IMAP4_SSL
import getpass
import Image, ImageDraw, ImageFont
# Parse options
def check_date(option, opt, value):
try:
return datetime.datetime.strptime(value, '%Y-%m-%d')
except ValueError:
raise OptionValueError("option %s: invalid date format: %r" % (opt, value))
class DateOption(Option):
TYPES = Option.TYPES + ('date',)
TYPE_CHECKER = copy(Option.TYPE_CHECKER)
TYPE_CHECKER['date'] = check_date
parser = OptionParser(option_class=DateOption)
parser.add_option('-o', '--output' , dest='output_path' , default='mailboxchart.png',
help="path to write output image to")
parser.add_option('-f', '--font' , dest='font_path' ,
help="path to TTF/OTF font file to use for labels")
parser.add_option( '--fontsize', dest='font_size' , default=24 , type=int ,
help="font size, in pixels (requires that -f FONT is specified)")
parser.add_option('-s', '--start' , dest='start' , default=None, type='date',
help="process emails starting on this date (required)")
parser.add_option('-e', '--end' , dest='end' , default=None, type='date',
help="process emails before this date")
parser.add_option('-z', '--timezone', dest='display_timezone', default=None,
help="draw chart using this timezone (requires the pytz module: http://pytz.sourceforge.net/)")
parser.add_option('--noninteractive', dest='interactive' , default=True, action='store_false',
help="disable progress meter")
# Colors
white = (0xff, 0xff, 0xff, 0xff)
black = (0, 0, 0, 0xff)
grey = (0x40, 0x40, 0x40, 0xff)
red = (0xff, 0x80, 0x80, 0xff)
purple = (0x3b, 0x30, 0x50, 0xff)
background = purple
point = white
def process_maildir(maildir):
b = Maildir(maildir)
def iterate_maildir():
for m in b.itervalues():
t = m.getdate_tz('Date')
d = datetime.datetime.fromtimestamp(time.mktime(t[:9])) - datetime.timedelta(seconds=t[9])
yield d
return len(b), iterate_maildir()
@contextmanager
def imap_closer(imap_mailbox):
yield
imap_mailbox.close()
imap_mailbox.logout()
def process_imap(account, host, mailbox):
try:
imap_mailbox = IMAP4_SSL(host)
imap_mailbox.login(account, getpass.getpass("Password for %s: " % account))
imap_mailbox.select(mailbox, True)
typ, data = imap_mailbox.search(None, 'ALL')
except IMAP4_SSL.error, e:
sys.stderr.write(str(e) + '\n')
return 0, []
message_ids = data[0].split()
def iterate_imap():
with imap_closer(imap_mailbox):
for mid in message_ids:
typ, data = imap_mailbox.fetch(mid, '(INTERNALDATE)')
date_str = data[0].split('"')[1]
d = datetime.datetime.strptime(date_str, '%d-%b-%Y %H:%M:%S +0000')
yield d
return len(message_ids), iterate_imap()
def parse_item(item):
if item.startswith('imaps://'):
protocol, empty, email, mailbox = item.split('/', 3)
account, host = email.split('@', 1)
account = urllib.unquote(account)
return process_imap(account, host, mailbox)
else:
return process_maildir(item)
def process_item(item, display_timezone, pao, dayvolume, minutevolume):
print('Reading messages in %r' % item)
length, iterator = parse_item(item)
count = 0
for d in iterator:
if display_timezone is not None:
d = utc.localize(d).astimezone(display_timezone)
if d < start or d > end:
continue
x = (d - start).days
y = d.hour * 60 + d.minute
pao[x, y] = point
dayvolume[x] += 1
minutevolume[y] += 1
if options.interactive:
sys.stdout.write((chr(27)+chr(91)+chr(68))*4)
sys.stdout.write('{0:0=3.0%}'.format(count/length))
sys.stdout.flush()
count += 1
if options.interactive:
sys.stdout.write('\n')
return count
def main():
width = (end - start).days + 1
height = 24 * 60
scatterplot = Image.new('RGBA', (width, height), background)
pao = scatterplot.load()
total_count = 0
dayvolume = [0,] * width
minutevolume = [0,] * height
print("Drawing scatterplot")
for item in args:
total_count += process_item(item, display_timezone, pao, dayvolume, minutevolume)
print("Drawing day volume plot")
max_per_day = max(dayvolume)
dayvolumeplot = Image.new('RGBA', (width, max_per_day), white)
dayvolumedraw = ImageDraw.Draw(dayvolumeplot)
for x, d in enumerate(dayvolume):
dayvolumedraw.line(((x,max_per_day - d), (x, max_per_day)), fill=red)
davg = sum(dayvolume[x-3:x+4]) / 7
dayvolumedraw.line(((x,max_per_day - davg), (x, max_per_day)), fill=background)
if d == max_per_day:
print('%d emails sent on %s' % (d, start + datetime.timedelta(x)))
print("Drawing minute volume plot")
max_per_min = max(minutevolume)
minvolumeplot = Image.new('RGBA', (max_per_min, height), white)
minvolumedraw = ImageDraw.Draw(minvolumeplot)
for y, m in enumerate(minutevolume):
minvolumedraw.line(((0,y), (m, y)), fill=red)
mrange = minutevolume[y-5:y+6]
if (y<5):
mrange = minutevolume[y-5:] + minutevolume[:y+6]
if (height-y < 6):
mrange += minutevolume[:(y + 6) % height]
mavg = sum(mrange) / 11
minvolumedraw.line(((0,y), (mavg, y)), fill=background)
# Composite scatter and volume plots together
offset = 32
image = Image.new('RGBA', (width + max_per_min + offset*3, height + max_per_day + offset*3), (0xff, 0xff, 0xff, 0xff))
image.paste(scatterplot, (offset, offset))
image.paste(dayvolumeplot, (offset, height + offset*2))
image.paste(minvolumeplot, (offset * 2 + width, offset))
d = ImageDraw.Draw(image)
# Draw ticks and labels for years
y = start.year
while y <= end.year:
year = datetime.datetime(y, 1, 1)
if display_timezone is not None:
year = utc.localize(year).astimezone(display_timezone)
x = (year - start).days + offset
if offset <= x <= width:
d.line(((x, 0 ), (x, offset )), fill=black)
d.line(((x, height + offset), (x, height + offset*2)), fill=black)
ts = font.getsize(str(y))
x += 182
if offset <= x - ts[0]/2 and x + ts[0]/2 <= width:
d.text((x - ts[0]/2, offset / 2 - ts[1]/2), str(y), fill=black, font=font)
d.text((x - ts[0]/2, height + offset * 1.5 - ts[1]/2), str(y), fill=black, font=font)
y += 1
# Draw ticks and labels for minutes
for h in xrange(25):
y = offset+h*60
if h == 24:
y -= 1
d.line(((0 , y), (offset , y)), fill=black)
d.line(((width + offset, y), (width + offset*2, y)), fill=black)
if h == 24:
break
hour = str((h-1) % 12 + 1)
ts = font.getsize(hour)
d.text(( offset*0.5 - ts[0]/2, y+30-ts[1]/2), hour, fill=black, font=font)
d.text((width + offset*1.5 - ts[0]/2, y+30-ts[1]/2), hour, fill=black, font=font)
image.save(options.output_path)
print("%d total emails sent." % total_count)
if __name__ == '__main__':
(options, args) = parser.parse_args()
if not args:
sys.exit("At least one maildir is required")
# Manage options
if options.font_path is not None:
font = ImageFont.truetype(options.font_path, options.font_size)
else:
font = ImageFont.load_default()
if not options.start:
sys.exit('-s option for start date in YYYY-MM-DD format is required')
start = options.start
if not options.end:
tomorrow = datetime.date.today() + datetime.timedelta(1)
end = datetime.datetime(tomorrow.year, tomorrow.month, tomorrow.day, 0, 0, 0)
else:
end = options.end
display_timezone = None
if options.display_timezone:
try:
from pytz import timezone, utc
display_timezone = timezone(options.display_timezone)
start = display_timezone.localize(start)
end = display_timezone.localize(end)
except ImportError:
print("Install pytz (http://pytz.sourceforge.net/) for timezone-aware charts.")
main()