summaryrefslogtreecommitdiffstats
path: root/loginfo-consumer
blob: edab648bdb164b187fb65ae80823e6f166c25a6c (plain)
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
#!/usr/bin/python
# -*- mode: python; coding: utf-8 -*-

# Copyright © 2008 Jeffrey C. Ollie

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see
# <http://www.gnu.org/licenses/>.

import os
import re
import smtplib
import socket

from qpid.util import connect
from qpid.connection import Connection
from qpid.datatypes import Message, RangedSet, uuid4
from qpid.queue import Empty

from lxml import etree

from email.mime.text import MIMEText
from email import utils
from email import Header
from email.encoders import encode_quopri

def get_diff(cvsserver, cvsroot, directory, filename, old_version, new_version):
    diff = u''

    if cvsserver == socket.gethostname():
        diff += u'Index: %s\n' % filename
        diffcmd = '/usr/bin/rcsdiff -kk -u -r%s -r%s "%s,v" 2>&1' % (old_version,
                                                                     new_version,
                                                                     os.path.join(cvsroot,
                                                                                  directory,
                                                                                  filename))
    else:
        diffcmd = '/usr/bin/cvs -f -d ":pserver:anonymous@%s:%s" diff -kk -u -N -r %s -r %s "%s" 2>/dev/null' % (cvsserver,
                                                                                                                 cvsroot,
                                                                                                                 old_version,
                                                                                                                 new_version,
                                                                                                                 os.path.join(directory,
                                                                                                                              filename))

    fp = os.popen(diffcmd)
    diff += fp.read().decode('utf-8')
    status = fp.close()
    return diff

package_re = re.compile(r'^(?:rpms|devel)/([^/]+)(?:/([^/]+))?')

def append_package_owner_email(directory, recipients):
    global package_re

    package_match = package_re.match(directory)

    if package_match and package_match.group(1):
        recipients.append('%s-owner@fedoraproject.org' % package_match.group(1))

host = '127.0.0.1'
port = 5672

sock = connect(host, port)
connection = Connection(sock = sock)
connection.start()
session = connection.session(str(uuid4()))

local_queue_name = 'local_queue'
local_queue = session.incoming(local_queue_name)

session.message_subscribe(queue = 'loginfo_queue', destination = local_queue_name)
local_queue.start()

message = None
while True:
    try:
	message = local_queue.get(timeout=10)

	root_element = etree.fromstring(message.body)

	cvsserver = root_element.xpath('/loginfo/cvsserver')[0].text
	cvsroot = root_element.xpath('/loginfo/cvsroot')[0].text
	directory = root_element.xpath('/loginfo/directory')[0].text
        username = root_element.xpath('/loginfo/username')[0].text
        fullname = root_element.xpath('/loginfo/fullname')[0].text
        timestamp = float(root_element.xpath('/loginfo/timestamp')[0].text)

        email_sender = utils.formataddr((fullname, username + '@fedoraproject.org'))

        email_body = u'Author: %s\n\n' % email_sender
        email_body += root_element.xpath('/loginfo/message')[0].text
        email_body += u'\n\n'
        
        email_subject = directory
                                        
	for file_element in root_element.xpath('/loginfo/files/file'):
	    filename = file_element.xpath('filename')[0].text
	    old_version = file_element.xpath('old-version')[0].text
	    new_version = file_element.xpath('new-version')[0].text

	    diff = get_diff(cvsserver, cvsroot, directory, filename, old_version, new_version)
	    diff_element = etree.SubElement(file_element, u'diff')
	    diff_element.text = diff

            email_body += diff
            email_body += u'\n\n'

            email_subject += u' %s,%s,%s' % (filename,old_version,new_version)

        # build the list of recipients

        email_recipients = []
        for notification_element in root_element.xpath('/loginfo/notifications/notification'):
            notification = notification_element.text
            if notification == u'%%OWNER%%':
                append_package_owner_email(directory, email_recipients)
            else:
                email_recipients.append(notification)

        # Build the email object

        msg = MIMEText(email_body.encode('utf-8'), _charset='utf-8')
        msg['From'] = Header.Header(email_sender)
        msg['To'] = Header.Header(u', '.join(email_recipients))
        msg['Subject'] = Header.Header(email_subject)
        msg['Date'] = utils.formatdate(timestamp)
        msg['X-CVSROOT'] = cvsroot
        msg['X-CVS-Module'] = directory.split('/', 1)[0]
        msg['X-CVS-Directory'] = directory
        msg['X-CVS-User'] = username
        msg['X-CVS-Server'] = cvsserver
        msg['Precedence'] = 'first-class'

        # and send it out

        s = smtplib.SMTP()
        s.connect()
        s.sendmail(email_sender, email_recipients, msg.as_string())
        s.close()

	session.message_accept(RangedSet(message.id))

    except Empty:
	print 'No more messages!'
	break

session.close(timeout=10)