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
|
#!/usr/bin/python -S
#
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
# pylint: disable-msg=C0103,W0403
"""Send bug notifications.
This script sends out all the pending bug notifications, and sets
date_emailed to the current date.
"""
__metaclass__ = type
import _pythonpath
from zope.component import getUtility
from canonical.config import config
from canonical.database.constants import UTC_NOW
from canonical.launchpad.interfaces import IBugNotificationSet
from canonical.launchpad.mail import sendmail
from lp.bugs.scripts.bugnotification import get_email_notifications
from lp.services.scripts.base import LaunchpadCronScript
class SendBugNotifications(LaunchpadCronScript):
def main(self):
notifications_sent = False
pending_notifications = get_email_notifications(getUtility(
IBugNotificationSet).getNotificationsToSend())
for bug_notifications, messages in pending_notifications:
for message in messages:
self.logger.info("Notifying %s about bug %d." % (
message['To'], bug_notifications[0].bug.id))
sendmail(message)
self.logger.debug(message.as_string())
for notification in bug_notifications:
notification.date_emailed = UTC_NOW
notifications_sent = True
# Commit after each batch of email sent, so that we won't
# re-mail the notifications in case of something going wrong
# in the middle.
self.txn.commit()
if not notifications_sent:
self.logger.debug("No notifications are pending to be sent.")
if __name__ == '__main__':
script = SendBugNotifications('send-bug-notifications',
dbuser=config.malone.bugnotification_dbuser)
script.lock_and_run()
|