forked from thewonderidiot/DFBugMonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.py
583 lines (475 loc) · 21.7 KB
/
plugin.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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
###
# Copyright (c) 2014, Mike Stewart
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions, and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions, and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the author of this software nor the name of
# contributors to this software may be used to endorse or promote products
# derived from this software without specific prior written consent.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
###
from __future__ import division
import supybot.utils as utils
from supybot.commands import *
import supybot.plugins as plugins
import supybot.ircutils as ircutils
import supybot.callbacks as callbacks
import supybot.schedule as schedule
import supybot.ircmsgs as ircmsgs
import supybot.log as log
import datetime
import hashlib
import json
import random
import re
import socket
import threading
import time
import urllib2
import flask
import feedparser
import dateutil.parser
from html2text import HTML2Text
from BeautifulSoup import BeautifulSoup
from dateutil.relativedelta import relativedelta
DEVLOG_URL = 'http://www.bay12games.com/dwarves/dev_now.rss'
RELEASE_LOG_URL = 'http://www.bay12games.com/dwarves/dev_release.rss'
CHANGELOG_URL = 'http://www.bay12games.com/dwarves/mantisbt/changelog_page.php'
DATE_FORMAT = '%B %d, %Y'
def pluralize(n, word, ending='s'):
return '%i %s%s' % (n, word, ending if n != 1 else '')
_default_timezone = datetime.tzinfo(0)
def relativedelta_string(t1, t2=None):
if t2 is None:
t1, t2 = datetime.datetime.utcnow(), t1
t1, t2 = t1.replace(tzinfo=_default_timezone), t2.replace(tzinfo=_default_timezone)
delta = relativedelta(t1, t2)
delta_str = ''
if delta.years:
delta_str += pluralize(delta.years, 'year') + ', '
if delta.months:
delta_str += pluralize(delta.months, 'month') + ', '
if delta.days:
delta_str += pluralize(delta.days, 'day')
delta_str = delta_str.rstrip(', ')
if not delta_str:
delta_str = 'today'
else:
delta_str += ' ago'
return delta_str
class CacheEntry(object):
def __init__(self, contents, life=3600):
self.contents = contents
self.time = time.time()
self.life = max(0, life)
@property
def expired(self):
return time.time() > self.time + self.life
class GithubApi(object):
def __init__(self):
self._cache = {}
def request(self, url, ignore_cache=False):
if not url.startswith('https://'):
url = 'https://api.github.com/' + url
if url not in self._cache or self._cache[url].expired or ignore_cache:
self._cache[url] = CacheEntry(json.load(urllib2.urlopen(url)))
return self._cache[url].contents
def clear_cache(self):
self._cache.clear()
ghapi = GithubApi()
class WebhookManager(object):
def __init__(self, on_event):
self.app = flask.Flask(__name__)
self.on_event = on_event
self._shutdown = False
self.token = hashlib.sha1(str(random.random())).hexdigest()
@self.app.route('/hook/', methods=['GET', 'POST'])
def hook():
request = flask.request
if self._shutdown:
request.environ.get('werkzeug.server.shutdown')()
if request.method == 'POST':
if request.json and 'X-GitHub-Event' in request.headers:
self.on_event(request.headers['X-GitHub-Event'], request.json)
resp = flask.make_response('')
resp.headers['server'] = ''
resp.headers['date'] = ''
return resp
print('/shutdown/' + self.token + '/')
@self.app.route('/shutdown/' + self.token + '/')
def shutdown():
self._shutdown = True
flask.request.environ.get('werkzeug.server.shutdown')()
return 'shutdown'
def start(self):
def run():
self.app.run(host='0.0.0.0', port=9002, threaded=True)
t = threading.Thread(name='webhook_server', target=run)
t.daemon = True
t.start()
def stop(self):
self._shutdown = True
s = socket.socket()
s.connect(('localhost', 9002))
s.send('GET /shutdown/%s/ HTTP/1.0\r\n\r\n' % self.token)
s.recv(1024)
s.close()
class GSearchNoResults(Exception): pass
def gsearch_clean(x):
return ' %s ' % re.sub(r'[^a-z0-9]', '', str(x).lower())
def gsearch_relevance(search, candidate):
""" Return the relevance of a candidate - 0 = perfect match, -1 = invalid """
search, candidate = gsearch_clean(search), gsearch_clean(candidate)
relevance = 0
while search:
pos = candidate.find(search[0])
if pos == -1:
return -1
relevance += pos
search = search[1:]
candidate = candidate[pos+1:]
return relevance
def gsearch(search, candidates, candidate_filter=lambda result: result):
results = candidates[:]
results.sort(key=lambda c: gsearch_relevance(search, candidate_filter(c)))
while results and gsearch_relevance(search, candidate_filter(results[0])) == -1:
results.pop(0)
return results
def gsearch_top(*args, **kwargs):
results = gsearch(*args, **kwargs)
if results:
return results[0]
else:
raise GSearchNoResults
class DFBugMonitor(callbacks.Plugin):
"""Simply load the plugin, and it will periodically check for DF bugfixes
and announce them"""
def __init__(self, irc):
self.__parent = super(DFBugMonitor, self)
self.__parent.__init__(irc)
self.irc = irc
# Get the latest devlog
d = feedparser.parse(DEVLOG_URL)
self.last_devlog = d.entries[0].title
# Prepare the already-known-issues set
self.known_issues = set()
self.first_run = True
# Find the latest version
soup = BeautifulSoup(urllib2.urlopen(CHANGELOG_URL).read())
latest_version_link = soup('tt')[0].findAll('a')[1]
matches = re.search('\d+$', latest_version_link['href'])
self.version_id = int(matches.group(0))
matches = re.search('^[\d\.]+$', latest_version_link.text)
if matches:
# The latest listed version has already been released, so our
# target version ID is probably one more
self.version_id = self.version_id + 1
print 'Starting at version %u' % (self.version_id,)
self.schedule_event(self.scrape_changelog, 'bug_poll_s', 'scrape')
self.schedule_event(self.check_devlog, 'devlog_poll_s', 'check_devlog')
self.webhooks = WebhookManager(on_event=self.on_webhook_event)
self.webhooks.start()
def schedule_event(self, f, config_value, name):
# Like schedule.addPeriodicEvent, but capture the name of our config
# variable in the closure rather than the value
if name in schedule.schedule.events:
log.warning('Event %s already scheduled; removing' % name)
schedule.removeEvent(name)
def wrapper():
try:
f()
finally:
return schedule.addEvent(wrapper, time.time() + self.registryValue(config_value), name)
return wrapper()
def check_devlog(self):
d = feedparser.parse(DEVLOG_URL)
date = d.entries[0].title
if date != self.last_devlog:
# New devlog!
self.last_devlog = date
title = ircutils.bold('%s %s: ' % (d.feed.title, date))
summary = d.entries[0].summary
full_message = title + summary
# Parse and wrap the message with html2text
h = HTML2Text()
h.body_width = self.registryValue('max_chars_per_line')
# Convert the message to text, and strip empty lines
processed_message = h.handle(full_message)
split_message = filter(None, [x.strip() for x in processed_message.split('\n')])
max_lines = self.registryValue('max_lines')
if len(split_message) > max_lines:
# The devlog is too long... give a configured number and a link
devlog_url = d.entries[0].id
split_message = split_message[0:max_lines]
split_message.append('... ' + devlog_url)
self.queue_messages(split_message)
def scrape_changelog(self):
changelog_url = CHANGELOG_URL+('?version_id=%u' % (self.version_id,))
soup = BeautifulSoup(urllib2.urlopen(changelog_url).read(),
convertEntities=BeautifulSoup.HTML_ENTITIES)
# First check to make sure the version name hasn't changed on us
version_name = soup('tt')[0].findAll('a')[1].text
matches = re.search('^[\d\.]+$', version_name)
if matches:
# New version incoming!
self.queue_messages([ircutils.bold('Dwarf Fortress v%s has been released!' % (version_name,))])
# Prepare for the next version
self.version_id = self.version_id + 1
self.known_issues.clear()
return
# Prepare a list of messages to be sent
msg_list = []
# Base our scrape off of the br tags that separate issues
lines = soup('tt')[0].findAll('br')
for i in range(2, len(lines)):
issue = lines[i]
# Extract the issue ID from the link to the issue
issue_id_link = issue.findNext('a')
issue_id = issue_id_link.text
if issue_id in self.known_issues:
continue
# Start by adding the issue to the list of known issues for this
# version
self.known_issues.add(issue_id)
if self.first_run:
# If this is the first run, just fill out the known issues set
# but don't send any messages
continue
# Get the URL of the bug page
issue_url = 'http://www.bay12games.com' + issue_id_link['href']
# Grab the bolded category, and use it to find the description
issue_category_b = issue.findNext('b')
issue_category = issue_category_b.text
issue_title = issue_category_b.nextSibling
# Get the link to the fix author (probable Toady) for their name and
# the resolution status
issue_fixer_link = issue.findNext('a', {'class': None})
issue_fixer = issue_fixer_link.text
issue_status = issue_fixer_link.nextSibling
# Build up the formatted message to send, and add it to the list
bolded_id_and_category = ircutils.bold('%s: %s' % (issue_id,
issue_category))
msg_list.append('%s %s%s%s ( %s )' % (bolded_id_and_category,
issue_title, issue_fixer, issue_status, issue_url))
# Get the closing note and add it to the list as well
last_note_msg = self.get_closing_note(issue_url)
if last_note_msg:
msg_list.append(last_note_msg)
# Now that we've processed all the issues, send out the messages
if msg_list:
self.queue_messages(msg_list)
# Allow messages to be sent next time, if they were inhibited this time
self.first_run = False
def get_closing_note(self, issue_url):
# Read the issue page to check for a closing note by Toady
soup = BeautifulSoup(urllib2.urlopen(issue_url).read())
bug_notes = soup.findAll('tr', 'bugnote')
if not bug_notes:
# No bug notes
return []
# Check the last note on the page to see who made it
last_note = bug_notes[-1]
last_note_author = last_note.findAll('a')[1].text
if last_note_author == u'Toady One':
# Grab Toady's last note on the bug
last_note_msg = '"' + last_note.findNext('td',
'bugnote-note-public').text + '"'
return last_note_msg
else:
# Last not wasn't from Toady
return []
def queue_messages(self, msg_list):
if not isinstance(msg_list, list):
msg_list = [msg_list]
for channel in sorted(self.irc.state.channels):
for msg in msg_list:
self.irc.queueMsg(ircmsgs.privmsg(channel, msg))
def queue_messages_for_repo(self, repo, msg_list):
if not isinstance(msg_list, list):
msg_list = [msg_list]
channels = ['#yadc', 'lethosor']
for channel in channels:
for msg in msg_list:
self.irc.queueMsg(ircmsgs.privmsg(channel, msg))
def on_webhook_event(self, type, data):
msgs = []
if 'repository' in data:
repo = data['repository']['name']
else:
return
if type == 'push':
branch = data['ref'].replace('refs/heads/', '')
count = len(data['commits'])
msgs.append('[{repo}] {user} {verb} {num} {commits} to {branch}: {link}'.format(
repo=repo,
user=data['sender']['login'],
verb='force-pushed' if data['forced'] else 'pushed',
num=count,
commits='commit' if count == 1 else 'commits',
branch=branch,
link=data['compare'],
))
self.queue_messages_for_repo(repo, msgs)
class df(callbacks.Commands):
def version(self, irc, msg, args):
"""takes no arguments
Returns the current DF version
"""
e = feedparser.parse(RELEASE_LOG_URL).entries[0]
version = re.search(r'DF\s*(\S+)', e.title).group(1)
date = time.strftime(DATE_FORMAT, e.published_parsed)
t = datetime.datetime.fromtimestamp(time.mktime(e.published_parsed))
delta_str = relativedelta_string(t)
irc.reply('Latest DF version: %s, released %s [%s]: http://www.bay12games.com/dwarves/' % (version, date, delta_str))
version = wrap(version)
class dfhack(callbacks.Commands):
def version(self, irc, msg, args):
"""takes no arguments
Returns the current DFHack version
"""
rel = ghapi.request('repos/dfhack/dfhack/releases')[0]
publish_date = dateutil.parser.parse(rel['published_at'])
date = time.strftime(DATE_FORMAT, publish_date.timetuple())
irc.reply('Latest DFHack version: %s, released by %s on %s [%s]: %s' % (
rel['tag_name'],
rel['author']['login'],
date,
relativedelta_string(publish_date),
rel['html_url']
))
version = wrap(version)
def downloads(self, irc, msg, args, release_name):
"""[<release>]
Returns download statistics for the given or latest release
"""
stat_format = '%s: %i/%i (%.1f%%)'
try:
if release_name:
info = ghapi.request('repos/dfhack/dfhack/releases/tags/%s' % release_name.strip())
else:
info = ghapi.request('repos/dfhack/dfhack/releases')[0]
release_name = info['tag_name']
except urllib2.HTTPError as e:
irc.reply('Could not fetch release information - nonexistent release? (%s)' % e)
return
if not len(info['assets']):
irc.reply('No downloads for DFHack %s' % release_name)
return
os_counts = {'Linux': 0, 'OS X': 0, 'Windows': 0, '*': 0}
file_counts = {'*': 0}
def inc_os_count(key, value):
os_counts[key] += value
os_counts['*'] += value
for asset in info['assets']:
name = re.sub(r'dfhack|\.tar|\.bz2|\.gz|\.xz|\.7z|\.zip', '', asset['name'], flags=re.I).replace(release_name, '').strip('-')
file_counts[name] = asset['download_count']
file_counts['*'] += asset['download_count']
clean_name = re.sub(r'[^A-Za-z]', '', name.lower())
if 'linux' in clean_name:
inc_os_count('Linux', asset['download_count'])
elif 'windows' in clean_name:
inc_os_count('Windows', asset['download_count'])
elif 'osx' in clean_name or 'mac' in clean_name or 'darwin' in clean_name:
inc_os_count('OS X', asset['download_count'])
irc.reply(('Stats for %s: ' % release_name) +
' | '.join(stat_format % (os, num, os_counts['*'], (num/os_counts['*'] * 100) if os_counts['*'] else 0)
for os, num in os_counts.items() if os != '*'))
messages = list(stat_format % (file, num, file_counts['*'], (num/file_counts['*'] * 100) if os_counts['*'] else 0)
for file, num in file_counts.items() if file != '*')
current_message = ''
while True:
if not len(messages):
irc.reply(current_message.rstrip('| '))
break
msg = messages.pop()
if len(current_message) + len(msg) + 3 > 400:
irc.reply(current_message.rstrip('| '))
current_message = ''
current_message += msg + ' | '
downloads = wrap(downloads, [optional('text')])
def todo(self, irc, msg, args):
"""takes no arguments"""
milestones = ghapi.request('https://api.github.com/repos/dfhack/dfhack/milestones?state=open')
milestones.sort(key=lambda m: m['number'])
if not len(milestones):
irc.reply('No open milestones')
return
cur_release = ghapi.request('repos/dfhack/dfhack/releases')[0]['tag_name']
release_regex = re.compile(r'(r)(\d+)$')
match = release_regex.search(cur_release)
next_milestone = None
if match:
next_release = release_regex.sub(match.group(1) + str(int(match.group(2)) + 1), cur_release)
next_milestone = None
def find_next_milestone(callback):
candidates = filter(callback, milestones)
candidates = filter(lambda m: m['open_issues'] or m['closed_issues'], candidates)
candidates = list(candidates)
return candidates[0] if len(candidates) else None
next_milestone = find_next_milestone(lambda m: m['title'] == next_release)
if not next_milestone:
next_milestone = find_next_milestone(lambda m: 'next' in m['description'].lower())
if not next_milestone:
if milestones:
next_milestone = milestones[0]
else:
irc.reply('Could not find milestone following %s' % cur_release)
return
closed = next_milestone['closed_issues']
total = next_milestone['open_issues'] + closed
irc.reply('Next milestone: %s | %i/%i items done (%.1f%%) | %s' %
(next_milestone['title'], closed, total, closed/total * 100, next_milestone['html_url']))
todo = wrap(todo)
def get(self, irc, msg, args, filename):
"""[<part of filename>]"""
info = ghapi.request('repos/dfhack/dfhack/releases')[0]
def send_valid_assets():
irc.reply('Available downloads: %s' %
', '.join(map(lambda a: re.sub(r'\-*dfhack\-*', '', a['name']), info['assets'])))
if not filename:
send_valid_assets()
irc.reply('Use "dfhack get <part of filename>" for a direct link')
return
try:
asset = gsearch_top(filename, info['assets'], lambda a: a['name'])
irc.reply('%s: %s' % (asset['name'], asset['browser_download_url']))
except GSearchNoResults:
irc.reply('No downloads matching "%s" found' % filename)
send_valid_assets()
get = wrap(get, [optional('text')])
class github(callbacks.Commands):
def ratelimit(self, irc, msg, args):
"""takes no arguments"""
rate = ghapi.request('rate_limit', ignore_cache=True)['rate']
secs = int(rate['reset'] - time.time())
irc.reply('%i/%i remaining; resets in %i:%02i' %
(rate['remaining'], rate['limit'], secs // 60, secs % 60))
ratelimit = wrap(ratelimit)
def refresh(self, irc, msg, args):
"""takes no arguments"""
ghapi.clear_cache()
refresh = wrap(refresh, [('checkCapability', 'admin')])
def die(self):
schedule.removeEvent('scrape')
schedule.removeEvent('check_devlog')
self.webhooks.stop()
Class = DFBugMonitor
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: