summaryrefslogtreecommitdiff
path: root/lib/lp/soyuz/mail/packageupload.py
blob: b0d7ac403285562bedcad29f02acaaca838cd7c5 (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
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
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
# Copyright 2011-2016 Canonical Ltd.  This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).

__metaclass__ = type
__all__ = [
    'PackageUploadMailer',
    ]

from collections import OrderedDict
import os.path

from zope.component import getUtility
from zope.security.proxy import isinstance as zope_isinstance

from lp.app.interfaces.launchpad import ILaunchpadCelebrities
from lp.archivepublisher.utils import get_ppa_reference
from lp.archiveuploader.changesfile import ChangesFile
from lp.archiveuploader.utils import (
    parse_maintainer_bytes,
    ParseMaintError,
    rfc822_encode_address,
    )
from lp.registry.interfaces.person import IPersonSet
from lp.registry.interfaces.pocket import PackagePublishingPocket
from lp.services.config import config
from lp.services.encoding import guess as guess_encoding
from lp.services.mail.basemailer import (
    BaseMailer,
    RecipientReason,
    )
from lp.services.mail.mailwrapper import MailWrapper
from lp.services.mail.notificationrecipientset import StubPerson
from lp.services.mail.sendmail import (
    format_address,
    format_address_for_person,
    )
from lp.services.webapp import canonical_url
from lp.soyuz.interfaces.archivepermission import IArchivePermissionSet


class AnnouncementStubPerson(StubPerson):
    """Marker class for sending announcements to distroseries changes lists."""


class PackageUploadRecipientReason(RecipientReason):

    @classmethod
    def forRequester(cls, requester, recipient):
        header = cls.makeRationale("Requester", requester)
        # This is a little vague - copies may end up here too - but it's
        # close enough.
        reason = "You are receiving this email because you made this upload."
        return cls(requester, recipient, header, reason)

    @classmethod
    def forMaintainer(cls, maintainer, recipient):
        header = cls.makeRationale("Maintainer", maintainer)
        reason = (
            "You are receiving this email because %(lc_entity_is)s listed as "
            "this package's maintainer.")
        return cls(maintainer, recipient, header, reason)

    @classmethod
    def forChangedBy(cls, changed_by, recipient):
        header = cls.makeRationale("Changed-By", changed_by)
        reason = (
            "You are receiving this email because %(lc_entity_is)s the most "
            "recent person listed in this package's changelog.")
        return cls(changed_by, recipient, header, reason)

    @classmethod
    def forPPAUploader(cls, uploader, recipient):
        header = cls.makeRationale("PPA Uploader", uploader)
        reason = (
            "You are receiving this email because %(lc_entity_has)s upload "
            "permissions to this PPA.")
        return cls(uploader, recipient, header, reason)

    @classmethod
    def forAnnouncement(cls, recipient):
        return cls(recipient, recipient, "Announcement", "")

    def _getTemplateValues(self):
        template_values = super(
            PackageUploadRecipientReason, self)._getTemplateValues()
        template_values["lc_entity_has"] = "you have"
        if self.recipient != self.subscriber or self.subscriber.is_team:
            template_values["lc_entity_has"] = (
                "your team %s has" % self.subscriber.displayname)
        return template_values

    def getReason(self):
        """See `RecipientReason`."""
        return MailWrapper(width=72).format(
            super(PackageUploadRecipientReason, self).getReason())


def debug(logger, msg, *args, **kwargs):
    """Shorthand debug notation."""
    if logger is not None:
        logger.debug(msg, *args, **kwargs)


def sanitize_string(s):
    """Make sure string does not trigger 'ascii' codec errors.

    Convert string to unicode if needed so that characters outside
    the (7-bit) ASCII range do not cause errors like these:

        'ascii' codec can't decode byte 0xc4 in position 21: ordinal
        not in range(128)
    """
    if isinstance(s, unicode):
        return s
    else:
        return guess_encoding(s)


def add_recipient(recipients, person, reason_factory, logger=None):
    # Circular import.
    from lp.registry.model.person import get_recipients

    if person is None:
        return
    for recipient in get_recipients(person):
        if recipient not in recipients:
            debug(
                logger, "Adding recipient: '%s'" % format_address_for_person(
                    recipient))
            reason = reason_factory(person, recipient)
            recipients[recipient] = reason


def fetch_information(spr, bprs, changes, previous_version=None):
    changelog = date = changedby = maintainer = None
    notify_changed_by = False

    if changes:
        changelog = ChangesFile.formatChangesComment(
            sanitize_string(changes.get('Changes')))
        date = changes.get('Date')
        try:
            changedby = parse_maintainer_bytes(
                changes.get('Changed-By'), 'Changed-By')
        except ParseMaintError:
            pass
        try:
            maintainer = parse_maintainer_bytes(
                changes.get('Maintainer'), 'Maintainer')
        except ParseMaintError:
            pass
        notify_changed_by = changes.get(
            'Launchpad-Notify-Changed-By', '') == 'yes'
    elif spr or bprs:
        if not spr and bprs:
            spr = bprs[0].build.source_package_release
        changelog = spr.aggregate_changelog(previous_version)
        date = spr.dateuploaded
        if spr.creator and spr.creator.preferredemail:
            changedby = (
                spr.creator.displayname, spr.creator.preferredemail.email)
        if spr.maintainer and spr.maintainer.preferredemail:
            maintainer = (
                spr.maintainer.displayname,
                spr.maintainer.preferredemail.email)

    return {
        'changelog': changelog,
        'date': date,
        'changedby': changedby,
        'maintainer': maintainer,
        'notify_changed_by': notify_changed_by,
        }


def addr_to_person(addr):
    """Return an `IPerson` given a name and email address.

    :param addr: (name, email) tuple. The name is ignored.
    :return: `IPerson` with the given email address.  None if there
        isn't one, or if `addr` is None.
    """
    if addr is None:
        return None
    return getUtility(IPersonSet).getByEmail(addr[1])


def is_valid_uploader(person, distribution):
    """Is `person` an uploader for `distribution`?

    A `None` person is not an uploader.
    """
    if person is None:
        return None
    else:
        return not getUtility(IArchivePermissionSet).componentsForUploader(
            distribution.main_archive, person).is_empty()


def is_auto_sync_upload(spr, bprs, pocket, changed_by):
    """Return True if this is a (Debian) auto sync upload.

    Sync uploads are source-only, unsigned and not targeted to
    the security pocket. The Changed-By field is also the Katie
    user (archive@ubuntu.com).
    """
    changed_by = addr_to_person(changed_by)
    return (
        spr and
        not bprs and
        changed_by == getUtility(ILaunchpadCelebrities).katie and
        pocket != PackagePublishingPocket.SECURITY)


ACTION_DESCRIPTIONS = {
    'new': 'New',
    'unapproved': 'Waiting for approval',
    'rejected': 'Rejected',
    'accepted': 'Accepted',
    'announcement': 'Accepted',
    }


def calculate_subject(spr, bprs, customfiles, archive, distroseries,
                      pocket, action, changesfile_object=None):
    """Return the email subject for the notification."""
    names = set()
    version = '-'
    if spr:
        names.add(spr.name)
        version = spr.version
    elif bprs:
        names.add(bprs[0].build.source_package_release.name)
        version = bprs[0].build.source_package_release.version
    for custom in customfiles:
        names.add(custom.libraryfilealias.filename)
    if names:
        archive_and_suite = '%s/%s' % (
            archive.reference, distroseries.getSuite(pocket))
        name_and_version = '%s %s' % (', '.join(names), version)
    else:
        if changesfile_object is None:
            return None
        # The suite may not be meaningful if we have no
        # spr/bprs/customfiles, since this must be a very early rejection.
        # Don't introduce confusion by including it.
        archive_and_suite = archive.reference
        name_and_version = os.path.basename(changesfile_object.name)
    subject = '[%s] %s (%s)' % (
        archive_and_suite, name_and_version, ACTION_DESCRIPTIONS[action])
    return subject


def build_uploaded_files_list(spr, builds, customfiles, logger):
    """Generate a list of tuples of (filename, component, section).

    Component and section are only set where the file is a source upload.
    If an empty list is returned, it means there are no files.
    """
    if spr:
        for sprfile in spr.files:
            yield (
                sprfile.libraryfile.filename, spr.component.name,
                spr.section.name)

    # Component and section don't get set for builds and custom, since
    # this information is only used in the summary string for source
    # uploads.
    for build in builds:
        for bpr in build.build.binarypackages:
            for bpf in bpr.files:
                yield bpf.libraryfile.filename, '', ''

    if customfiles:
        for customfile in customfiles:
            yield customfile.libraryfilealias.filename, '', ''


def build_summary(spr, files, action):
    """Build a summary string based on the files present in the upload."""
    summary = []
    for filename, component, section in files:
        if action == 'new':
            summary.append("NEW: %s" % filename)
        else:
            summary.append(" OK: %s" % filename)
            if filename.endswith("dsc"):
                summary.append("     -> Component: %s Section: %s" % (
                    component, section))
    return summary


class PackageUploadMailer(BaseMailer):

    app = 'soyuz'

    @classmethod
    def getRecipientsForAction(cls, action, info, blamee, spr, bprs, archive,
                               distroseries, pocket, announce_from_person=None,
                               logger=None):
        # If this is a binary or mixed upload, we don't send *any* emails
        # provided it's not a rejection or a security upload:
        if (
            bprs and action != 'rejected' and
            pocket != PackagePublishingPocket.SECURITY):
            debug(logger, "Not sending email; upload is from a build.")
            return {}, ''

        if spr and spr.source_package_recipe_build and action == 'accepted':
            debug(logger, "Not sending email; upload is from a recipe.")
            return {}, ''

        if spr and spr.section.name == 'translations':
            debug(
                logger,
                "Skipping acceptance and announcement for language packs.")
            return {}, ''

        debug(logger, "Building recipients list.")
        recipients = OrderedDict()

        add_recipient(
            recipients, blamee, PackageUploadRecipientReason.forRequester,
            logger=logger)

        changer = addr_to_person(info['changedby'])
        maintainer = addr_to_person(info['maintainer'])

        if blamee is None and not archive.is_copy:
            debug(
                logger,
                "Changes file is unsigned; adding changer as recipient.")
            add_recipient(
                recipients, changer, PackageUploadRecipientReason.forChangedBy,
                logger=logger)

        if archive.is_ppa:
            # For PPAs, any person or team mentioned explicitly in the
            # ArchivePermissions as uploaders for the archive will also get
            # emailed.
            for permission in archive.getUploadersForComponent():
                add_recipient(
                    recipients, permission.person,
                    PackageUploadRecipientReason.forPPAUploader, logger=logger)

            # If the "Launchpad-Notify-Changed-By: yes" field is set in the
            # .changes file, we also consider changed-by.  The latter is
            # intended for use by systems that automatically sign uploads on
            # behalf of developers, in which case we want to make sure to
            # notify the developer in question.  We assume that any systems
            # clever enough to set this field are also clever enough to set
            # a reasonable Changed-By field.
            if info['notify_changed_by']:
                debug(logger, "Adding changed-by to recipients")
                add_recipient(
                    recipients, changer,
                    PackageUploadRecipientReason.forChangedBy, logger=logger)
        elif archive.is_copy:
            # For copy archives, notifying anyone else will probably only
            # confuse them.
            pass
        else:
            # If this is not a PPA, we also consider maintainer and changed-by.
            if blamee is not None:
                if is_valid_uploader(maintainer, distroseries.distribution):
                    debug(logger, "Adding maintainer to recipients")
                    add_recipient(
                        recipients, maintainer,
                        PackageUploadRecipientReason.forMaintainer,
                        logger=logger)

                if is_valid_uploader(changer, distroseries.distribution):
                    debug(logger, "Adding changed-by to recipients")
                    add_recipient(
                        recipients, changer,
                        PackageUploadRecipientReason.forChangedBy,
                        logger=logger)

        if (announce_from_person is not None and
                announce_from_person.preferredemail is not None):
            announce_from_addr = (
                announce_from_person.displayname,
                announce_from_person.preferredemail.email)
        else:
            announce_from_addr = info['changedby']

        # If we're sending an acceptance notification for a non-PPA upload,
        # announce if possible. Avoid announcing backports, binary-only
        # security uploads, or autosync uploads.
        if (action == 'accepted' and distroseries.changeslist
                and not archive.is_ppa
                and pocket != PackagePublishingPocket.BACKPORTS
                and not (
                    pocket == PackagePublishingPocket.SECURITY and spr is None)
                and not is_auto_sync_upload(
                    spr, bprs, pocket, announce_from_addr)):
            recipient = AnnouncementStubPerson(distroseries.changeslist)
            recipients[recipient] = (
                PackageUploadRecipientReason.forAnnouncement(recipient))

        if announce_from_addr is not None:
            announce_from_address = format_address(*announce_from_addr)
        else:
            announce_from_address = None
        return recipients, announce_from_address

    @classmethod
    def forAction(cls, action, blamee, spr, bprs, customfiles, archive,
                  distroseries, pocket, changes=None, changesfile_object=None,
                  announce_from_person=None, previous_version=None,
                  logger=None, **kwargs):
        info = fetch_information(
            spr, bprs, changes, previous_version=previous_version)
        recipients, announce_from_address = cls.getRecipientsForAction(
            action, info, blamee, spr, bprs, archive, distroseries, pocket,
            announce_from_person=announce_from_person, logger=logger)
        subject = calculate_subject(
            spr, bprs, customfiles, archive, distroseries, pocket, action,
            changesfile_object=changesfile_object)
        if subject is None:
            # We don't even have enough information to build a minimal
            # subject, so do nothing.
            recipients = {}
        template_name = "upload-"
        if action in ("new", "accepted", "announcement"):
            template_name += action
        elif action == "unapproved":
            template_name += "accepted"
        elif action == "rejected":
            template_name += "rejection"
        if archive.is_ppa:
            template_name = "ppa-%s" % template_name
        template_name += ".txt"
        from_address = format_address(
            config.uploader.default_sender_name,
            config.uploader.default_sender_address)
        return cls(
            subject, template_name, recipients, from_address, action, info,
            blamee, spr, bprs, customfiles, archive, distroseries, pocket,
            changes=changes, announce_from_address=announce_from_address,
            logger=logger, **kwargs)

    def __init__(self, subject, template_name, recipients, from_address,
                 action, info, blamee, spr, bprs, customfiles, archive,
                 distroseries, pocket, summary_text=None, changes=None,
                 changesfile_content=None, announce_from_address=None,
                 previous_version=None, logger=None):
        super(PackageUploadMailer, self).__init__(
            subject, template_name, recipients, from_address,
            notification_type="package-upload")
        self.action = action
        self.info = info
        self.blamee = blamee
        self.spr = spr
        self.bprs = bprs
        self.customfiles = customfiles
        self.archive = archive
        self.distroseries = distroseries
        self.pocket = pocket
        self.changes = changes
        self.changesfile_content = changesfile_content
        self.logger = logger
        self.announce_from_address = announce_from_address
        self.previous_version = previous_version

        if action == 'rejected':
            self.summarystring = summary_text
        else:
            files = build_uploaded_files_list(spr, bprs, customfiles, logger)
            summary = build_summary(spr, files, action)
            if summary_text:
                summary.append(summary_text)
            self.summarystring = "\n".join(summary)

    def _getFromAddress(self, email, recipient):
        """See `BaseMailer`."""
        if (zope_isinstance(recipient, AnnouncementStubPerson) and
                self.announce_from_address is not None):
            return self.announce_from_address
        else:
            return super(PackageUploadMailer, self)._getFromAddress(
                email, recipient)

    def _getHeaders(self, email, recipient):
        """See `BaseMailer`."""
        headers = super(PackageUploadMailer, self)._getHeaders(
            email, recipient)
        headers['X-Katie'] = 'Launchpad actually'
        headers['X-Launchpad-Archive'] = self.archive.reference

        # The deprecated PPA reference header is included for Ubuntu PPAs to
        # avoid breaking existing consumers.
        if self.archive.is_ppa and self.archive.distribution.name == u'ubuntu':
            headers['X-Launchpad-PPA'] = get_ppa_reference(self.archive)

        # Include a 'X-Launchpad-Component' header with the component and
        # the section of the source package uploaded in order to facilitate
        # filtering on the part of the email recipients.
        if self.spr:
            headers['X-Launchpad-Component'] = 'component=%s, section=%s' % (
                self.spr.component.name, self.spr.section.name)

        # All emails from here have a Bcc to the default recipient.
        bcc_text = format_address(
            config.uploader.default_recipient_name,
            config.uploader.default_recipient_address)
        if zope_isinstance(recipient, AnnouncementStubPerson):
            name = None
            if self.spr:
                name = self.spr.name
            elif self.bprs:
                name = self.bprs[0].build.source_package_release.name
            if name:
                distribution = self.distroseries.distribution
                email_base = distribution.package_derivatives_email
                if email_base:
                    bcc_text += ", " + email_base.format(package_name=name)
        headers['Bcc'] = bcc_text

        return headers

    def _addAttachments(self, ctrl, email):
        """See `BaseMailer`."""
        if not self.archive.is_ppa:
            if self.changesfile_content is not None:
                changesfile_text = sanitize_string(self.changesfile_content)
            else:
                changesfile_text = "Sorry, changesfile not available."
            ctrl.addAttachment(
                changesfile_text, content_type='text/plain',
                filename='changesfile', charset='utf-8')

    def _getTemplateName(self, email, recipient):
        """See `BaseMailer`."""
        if zope_isinstance(recipient, AnnouncementStubPerson):
            return "upload-announcement.txt"
        else:
            return self._template_name

    def _getTemplateParams(self, email, recipient):
        """See `BaseMailer`."""
        params = super(PackageUploadMailer, self)._getTemplateParams(
            email, recipient)
        params.update({
            'STATUS': ACTION_DESCRIPTIONS[self.action],
            'SUMMARY': self.summarystring,
            'DATE': '',
            'CHANGESFILE': '',
            'DISTRO': self.distroseries.distribution.title,
            'ANNOUNCE': 'No announcement sent',
            'CHANGEDBY': '',
            'MAINTAINER': '',
            'ORIGIN': '',
            'SIGNER': '',
            'SPR_URL': '',
            'ARCHIVE_URL': canonical_url(self.archive),
            'USERS_ADDRESS': config.launchpad.users_address,
            })
        changes = self.changes
        if changes is None:
            changes = {}

        if self.info['date'] is not None:
            params['DATE'] = 'Date: %s' % self.info['date']
        if self.info['changelog'] is not None:
            params['CHANGESFILE'] = self.info['changelog']
        if self.spr:
            params['SPR_URL'] = canonical_url(
                self.distroseries.distribution.getSourcePackageRelease(
                    self.spr))

        # Some syncs (e.g. from Debian) will involve packages whose
        # changed-by person was auto-created in LP and hence does not have a
        # preferred email address set.  We'll get a None here.
        changedby_person = addr_to_person(self.info['changedby'])
        if self.info['changedby']:
            params['CHANGEDBY'] = '\nChanged-By: %s' % rfc822_encode_address(
                *self.info['changedby'])
        if (self.blamee is not None and self.blamee != changedby_person
                and self.blamee.preferredemail):
            params['SIGNER'] = '\nSigned-By: %s' % rfc822_encode_address(
                self.blamee.displayname, self.blamee.preferredemail.email)
        if (self.info['maintainer']
                and self.info['maintainer'] != self.info['changedby']):
            params['MAINTAINER'] = '\nMaintainer: %s' % rfc822_encode_address(
                *self.info['maintainer'])

        origin = changes.get('Origin')
        if origin:
            params['ORIGIN'] = '\nOrigin: %s' % origin
        if self.action == 'unapproved':
            params['SUMMARY'] += (
                "\nThis upload awaits approval by a distro manager\n")
        if self.distroseries.changeslist:
            params['ANNOUNCE'] = "Announcing to %s" % (
                self.distroseries.changeslist)

        return params

    def _getFooter(self, email, recipient, params):
        """See `BaseMailer`."""
        if zope_isinstance(recipient, AnnouncementStubPerson):
            return None
        else:
            footer_lines = []
            if self.archive.is_ppa:
                footer_lines.append("%(ARCHIVE_URL)s\n")
            footer_lines.append("%(reason)s\n")
            return "".join(footer_lines) % params

    def generateEmail(self, email, recipient, force_no_attachments=False):
        """See `BaseMailer`."""
        ctrl = super(PackageUploadMailer, self).generateEmail(
            email, recipient, force_no_attachments=force_no_attachments)
        debug(self.logger, "Sent a mail:")
        debug(self.logger, "  Subject: %s" % ctrl.subject)
        debug(self.logger, "  Sender: %s" % ctrl.from_addr)
        debug(self.logger, "  Recipients: %s" % ", ".join(ctrl.to_addrs))
        if 'Bcc' in ctrl.headers:
            debug(self.logger, "  Bcc: %s" % ctrl.headers['Bcc'])
        debug(self.logger, "  Body:")
        for line in ctrl.body.splitlines():
            if isinstance(line, bytes):
                line = line.decode('utf-8', 'replace')
            debug(self.logger, line)
        return ctrl