~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/gpg.py

  • Committer: Tarmac
  • Author(s): Vincent Ladeuil
  • Date: 2017-01-30 14:42:05 UTC
  • mfrom: (6620.1.1 trunk)
  • Revision ID: tarmac-20170130144205-r8fh2xpmiuxyozpv
Merge  2.7 into trunk including fix for bug #1657238 [r=vila]

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2011 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2009, 2011, 2012, 2013, 2016 Canonical Ltd
2
2
#   Authors: Robert Collins <robert.collins@canonical.com>
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
17
17
 
18
18
"""GPG signing and checking logic."""
19
19
 
 
20
from __future__ import absolute_import
 
21
 
20
22
import os
21
23
import sys
22
24
from StringIO import StringIO
27
29
import subprocess
28
30
 
29
31
from bzrlib import (
 
32
    config,
30
33
    errors,
31
34
    trace,
32
35
    ui,
33
36
    )
 
37
from bzrlib.i18n import (
 
38
    gettext, 
 
39
    ngettext,
 
40
    )
34
41
""")
35
42
 
36
 
class i18n:
37
 
    """this class is ready to use bzrlib.i18n but bzrlib.i18n is not ready to
38
 
    use so here is a stub until it is"""
39
 
    @staticmethod
40
 
    def gettext(string):
41
 
        return string
42
 
        
43
 
    @staticmethod
44
 
    def ngettext(single, plural, number):
45
 
        if number == 1:
46
 
            return single
47
 
        else:
48
 
            return plural
 
43
from bzrlib.symbol_versioning import (
 
44
    deprecated_in,
 
45
    deprecated_method,
 
46
    )
49
47
 
50
48
#verification results
51
49
SIGNATURE_VALID = 0
52
50
SIGNATURE_KEY_MISSING = 1
53
51
SIGNATURE_NOT_VALID = 2
54
52
SIGNATURE_NOT_SIGNED = 3
 
53
SIGNATURE_EXPIRED = 4
 
54
 
 
55
 
 
56
def bulk_verify_signatures(repository, revids, strategy,
 
57
        process_events_callback=None):
 
58
    """Do verifications on a set of revisions
 
59
 
 
60
    :param repository: repository object
 
61
    :param revids: list of revision ids to verify
 
62
    :param strategy: GPG strategy to use
 
63
    :param process_events_callback: method to call for GUI frontends that
 
64
        want to keep their UI refreshed
 
65
 
 
66
    :return: count dictionary of results of each type,
 
67
             result list for each revision,
 
68
             boolean True if all results are verified successfully
 
69
    """
 
70
    count = {SIGNATURE_VALID: 0,
 
71
             SIGNATURE_KEY_MISSING: 0,
 
72
             SIGNATURE_NOT_VALID: 0,
 
73
             SIGNATURE_NOT_SIGNED: 0,
 
74
             SIGNATURE_EXPIRED: 0}
 
75
    result = []
 
76
    all_verifiable = True
 
77
    total = len(revids)
 
78
    pb = ui.ui_factory.nested_progress_bar()
 
79
    try:
 
80
        for i, (rev_id, verification_result, uid) in enumerate(
 
81
                repository.verify_revision_signatures(
 
82
                    revids, strategy)):
 
83
            pb.update("verifying signatures", i, total)
 
84
            result.append([rev_id, verification_result, uid])
 
85
            count[verification_result] += 1
 
86
            if verification_result != SIGNATURE_VALID:
 
87
                all_verifiable = False
 
88
            if process_events_callback is not None:
 
89
                process_events_callback()
 
90
    finally:
 
91
        pb.finished()
 
92
    return (count, result, all_verifiable)
55
93
 
56
94
 
57
95
class DisabledGPGStrategy(object):
104
142
                else:
105
143
                    self.acceptable_keys.append(pattern)
106
144
 
 
145
    @deprecated_method(deprecated_in((2, 6, 0)))
107
146
    def do_verifications(self, revisions, repository):
108
 
        count = {SIGNATURE_VALID: 0,
109
 
                 SIGNATURE_KEY_MISSING: 0,
110
 
                 SIGNATURE_NOT_VALID: 0,
111
 
                 SIGNATURE_NOT_SIGNED: 0}
112
 
        result = []
113
 
        all_verifiable = True
114
 
        for rev_id in revisions:
115
 
            verification_result, uid =\
116
 
                                repository.verify_revision(rev_id,self)
117
 
            result.append([rev_id, verification_result, uid])
118
 
            count[verification_result] += 1
119
 
            if verification_result != SIGNATURE_VALID:
120
 
                all_verifiable = False
121
 
        return (count, result, all_verifiable)
 
147
        return bulk_verify_signatures(repository, revisions, self)
122
148
 
 
149
    @deprecated_method(deprecated_in((2, 6, 0)))
123
150
    def valid_commits_message(self, count):
124
 
        return i18n.gettext(u"{0} commits with valid signatures").format(
125
 
                                        count[SIGNATURE_VALID])            
 
151
        return valid_commits_message(count)
126
152
 
 
153
    @deprecated_method(deprecated_in((2, 6, 0)))
127
154
    def unknown_key_message(self, count):
128
 
        return i18n.ngettext(u"{0} commit with unknown key",
129
 
                             u"{0} commits with unknown keys",
130
 
                             count[SIGNATURE_KEY_MISSING]).format(
131
 
                                        count[SIGNATURE_KEY_MISSING])
 
155
        return unknown_key_message(count)
132
156
 
 
157
    @deprecated_method(deprecated_in((2, 6, 0)))
133
158
    def commit_not_valid_message(self, count):
134
 
        return i18n.ngettext(u"{0} commit not valid",
135
 
                             u"{0} commits not valid",
136
 
                             count[SIGNATURE_NOT_VALID]).format(
137
 
                                            count[SIGNATURE_NOT_VALID])
 
159
        return commit_not_valid_message(count)
138
160
 
 
161
    @deprecated_method(deprecated_in((2, 6, 0)))
139
162
    def commit_not_signed_message(self, count):
140
 
        return i18n.ngettext(u"{0} commit not signed",
141
 
                             u"{0} commits not signed",
142
 
                             count[SIGNATURE_NOT_SIGNED]).format(
143
 
                                        count[SIGNATURE_NOT_SIGNED])
 
163
        return commit_not_signed_message(count)
 
164
 
 
165
    @deprecated_method(deprecated_in((2, 6, 0)))
 
166
    def expired_commit_message(self, count):
 
167
        return expired_commit_message(count)
144
168
 
145
169
 
146
170
def _set_gpg_tty():
161
185
 
162
186
    acceptable_keys = None
163
187
 
 
188
    def __init__(self, config_stack):
 
189
        self._config_stack = config_stack
 
190
        try:
 
191
            import gpgme
 
192
            self.context = gpgme.Context()
 
193
        except ImportError, error:
 
194
            pass # can't use verify()
 
195
 
164
196
    @staticmethod
165
197
    def verify_signatures_available():
166
198
        """
175
207
            return False
176
208
 
177
209
    def _command_line(self):
178
 
        return [self._config.gpg_signing_command(), '--clearsign']
179
 
 
180
 
    def __init__(self, config):
181
 
        self._config = config
182
 
        try:
183
 
            import gpgme
184
 
            self.context = gpgme.Context()
185
 
        except ImportError, error:
186
 
            pass # can't use verify()
 
210
        key = self._config_stack.get('gpg_signing_key')
 
211
        if key is None or key == 'default':
 
212
            # 'default' or not setting gpg_signing_key at all means we should
 
213
            # use the user email address
 
214
            key = config.extract_email_address(self._config_stack.get('email'))
 
215
        return [self._config_stack.get('gpg_signing_command'), '--clearsign',
 
216
                '-u', key]
187
217
 
188
218
    def sign(self, content):
189
219
        if isinstance(content, unicode):
223
253
 
224
254
    def verify(self, content, testament):
225
255
        """Check content has a valid signature.
226
 
        
 
256
 
227
257
        :param content: the commit signature
228
258
        :param testament: the valid testament string for the commit
229
 
        
 
259
 
230
260
        :return: SIGNATURE_VALID or a failed SIGNATURE_ value, key uid if valid
231
261
        """
232
262
        try:
236
266
 
237
267
        signature = StringIO(content)
238
268
        plain_output = StringIO()
239
 
        
240
269
        try:
241
270
            result = self.context.verify(signature, None, plain_output)
242
271
        except gpgme.GpgmeError,error:
243
272
            raise errors.SignatureVerificationFailed(error[2])
244
273
 
 
274
        # No result if input is invalid.
 
275
        # test_verify_invalid()
245
276
        if len(result) == 0:
246
277
            return SIGNATURE_NOT_VALID, None
 
278
        # User has specified a list of acceptable keys, check our result is in
 
279
        # it.  test_verify_unacceptable_key()
247
280
        fingerprint = result[0].fpr
248
281
        if self.acceptable_keys is not None:
249
282
            if not fingerprint in self.acceptable_keys:
250
283
                return SIGNATURE_KEY_MISSING, fingerprint[-8:]
 
284
        # Check the signature actually matches the testament.
 
285
        # test_verify_bad_testament()
251
286
        if testament != plain_output.getvalue():
252
287
            return SIGNATURE_NOT_VALID, None
 
288
        # Yay gpgme set the valid bit.
 
289
        # Can't write a test for this one as you can't set a key to be
 
290
        # trusted using gpgme.
253
291
        if result[0].summary & gpgme.SIGSUM_VALID:
254
292
            key = self.context.get_key(fingerprint)
255
293
            name = key.uids[0].name
256
294
            email = key.uids[0].email
257
295
            return SIGNATURE_VALID, name + " <" + email + ">"
 
296
        # Sigsum_red indicates a problem, unfortunatly I have not been able
 
297
        # to write any tests which actually set this.
258
298
        if result[0].summary & gpgme.SIGSUM_RED:
259
299
            return SIGNATURE_NOT_VALID, None
 
300
        # GPG does not know this key.
 
301
        # test_verify_unknown_key()
260
302
        if result[0].summary & gpgme.SIGSUM_KEY_MISSING:
261
303
            return SIGNATURE_KEY_MISSING, fingerprint[-8:]
262
 
        #summary isn't set if sig is valid but key is untrusted
 
304
        # Summary isn't set if sig is valid but key is untrusted but if user
 
305
        # has explicity set the key as acceptable we can validate it.
263
306
        if result[0].summary == 0 and self.acceptable_keys is not None:
264
307
            if fingerprint in self.acceptable_keys:
 
308
                # test_verify_untrusted_but_accepted()
265
309
                return SIGNATURE_VALID, None
266
 
        else:
267
 
            return SIGNATURE_KEY_MISSING, None
268
 
        raise errors.SignatureVerificationFailed("Unknown GnuPG key "\
269
 
                                                 "verification result")
 
310
        # test_verify_valid_but_untrusted()
 
311
        if result[0].summary == 0 and self.acceptable_keys is None:
 
312
            return SIGNATURE_NOT_VALID, None
 
313
        if result[0].summary & gpgme.SIGSUM_KEY_EXPIRED:
 
314
            expires = self.context.get_key(result[0].fpr).subkeys[0].expires
 
315
            if expires > result[0].timestamp:
 
316
                # The expired key was not expired at time of signing.
 
317
                # test_verify_expired_but_valid()
 
318
                return SIGNATURE_EXPIRED, fingerprint[-8:]
 
319
            else:
 
320
                # I can't work out how to create a test where the signature
 
321
                # was expired at the time of signing.
 
322
                return SIGNATURE_NOT_VALID, None
 
323
        # A signature from a revoked key gets this.
 
324
        # test_verify_revoked_signature()
 
325
        if ((result[0].summary & gpgme.SIGSUM_SYS_ERROR
 
326
             or result[0].status.strerror == 'Certificate revoked')):
 
327
            return SIGNATURE_NOT_VALID, None
 
328
        # Other error types such as revoked keys should (I think) be caught by
 
329
        # SIGSUM_RED so anything else means something is buggy.
 
330
        raise errors.SignatureVerificationFailed(
 
331
            "Unknown GnuPG key verification result")
270
332
 
271
333
    def set_acceptable_keys(self, command_line_input):
272
 
        """sets the acceptable keys for verifying with this GPGStrategy
273
 
        
 
334
        """Set the acceptable keys for verifying with this GPGStrategy.
 
335
 
274
336
        :param command_line_input: comma separated list of patterns from
275
337
                                command line
276
338
        :return: nothing
277
339
        """
278
 
        key_patterns = None
279
 
        acceptable_keys_config = self._config.acceptable_keys()
280
 
        try:
281
 
            if isinstance(acceptable_keys_config, unicode):
282
 
                acceptable_keys_config = str(acceptable_keys_config)
283
 
        except UnicodeEncodeError:
284
 
            #gpg Context.keylist(pattern) does not like unicode
285
 
            raise errors.BzrCommandError('Only ASCII permitted in option names')
286
 
 
 
340
        patterns = None
 
341
        acceptable_keys_config = self._config_stack.get('acceptable_keys')
287
342
        if acceptable_keys_config is not None:
288
 
            key_patterns = acceptable_keys_config
289
 
        if command_line_input is not None: #command line overrides config
290
 
            key_patterns = command_line_input
291
 
        if key_patterns is not None:
292
 
            patterns = key_patterns.split(",")
 
343
            patterns = acceptable_keys_config
 
344
        if command_line_input is not None: # command line overrides config
 
345
            patterns = command_line_input.split(',')
293
346
 
 
347
        if patterns:
294
348
            self.acceptable_keys = []
295
349
            for pattern in patterns:
296
350
                result = self.context.keylist(pattern)
300
354
                    self.acceptable_keys.append(key.subkeys[0].fpr)
301
355
                    trace.mutter("Added acceptable key: " + key.subkeys[0].fpr)
302
356
                if not found_key:
303
 
                    trace.note(i18n.gettext(
304
 
                            "No GnuPG key results for pattern: {}"
 
357
                    trace.note(gettext(
 
358
                            "No GnuPG key results for pattern: {0}"
305
359
                                ).format(pattern))
306
360
 
 
361
    @deprecated_method(deprecated_in((2, 6, 0)))
307
362
    def do_verifications(self, revisions, repository,
308
363
                            process_events_callback=None):
309
364
        """do verifications on a set of revisions
310
 
        
 
365
 
311
366
        :param revisions: list of revision ids to verify
312
367
        :param repository: repository object
313
368
        :param process_events_callback: method to call for GUI frontends that
314
 
                                                want to keep their UI refreshed
315
 
        
 
369
            want to keep their UI refreshed
 
370
 
316
371
        :return: count dictionary of results of each type,
317
372
                 result list for each revision,
318
373
                 boolean True if all results are verified successfully
319
374
        """
320
 
        count = {SIGNATURE_VALID: 0,
321
 
                 SIGNATURE_KEY_MISSING: 0,
322
 
                 SIGNATURE_NOT_VALID: 0,
323
 
                 SIGNATURE_NOT_SIGNED: 0}
324
 
        result = []
325
 
        all_verifiable = True
326
 
        for rev_id in revisions:
327
 
            verification_result, uid =\
328
 
                                repository.verify_revision(rev_id,self)
329
 
            result.append([rev_id, verification_result, uid])
330
 
            count[verification_result] += 1
331
 
            if verification_result != SIGNATURE_VALID:
332
 
                all_verifiable = False
333
 
            if process_events_callback is not None:
334
 
                process_events_callback()
335
 
        return (count, result, all_verifiable)
 
375
        return bulk_verify_signatures(repository, revisions, self,
 
376
            process_events_callback)
336
377
 
 
378
    @deprecated_method(deprecated_in((2, 6, 0)))
337
379
    def verbose_valid_message(self, result):
338
380
        """takes a verify result and returns list of signed commits strings"""
339
 
        signers = {}
340
 
        for rev_id, validity, uid in result:
341
 
            if validity == SIGNATURE_VALID:
342
 
                signers.setdefault(uid, 0)
343
 
                signers[uid] += 1
344
 
        result = []
345
 
        for uid, number in signers.items():
346
 
             result.append( i18n.ngettext(u"{0} signed {1} commit", 
347
 
                             u"{0} signed {1} commits",
348
 
                             number).format(uid, number) )
349
 
        return result
350
 
 
351
 
 
 
381
        return verbose_valid_message(result)
 
382
 
 
383
    @deprecated_method(deprecated_in((2, 6, 0)))
352
384
    def verbose_not_valid_message(self, result, repo):
353
385
        """takes a verify result and returns list of not valid commit info"""
354
 
        signers = {}
355
 
        for rev_id, validity, empty in result:
356
 
            if validity == SIGNATURE_NOT_VALID:
357
 
                revision = repo.get_revision(rev_id)
358
 
                authors = ', '.join(revision.get_apparent_authors())
359
 
                signers.setdefault(authors, 0)
360
 
                signers[authors] += 1
361
 
        result = []
362
 
        for authors, number in signers.items():
363
 
            result.append( i18n.ngettext(u"{0} commit by author {1}", 
364
 
                                 u"{0} commits by author {1}",
365
 
                                 number).format(number, authors) )
366
 
        return result
 
386
        return verbose_not_valid_message(result, repo)
367
387
 
 
388
    @deprecated_method(deprecated_in((2, 6, 0)))
368
389
    def verbose_not_signed_message(self, result, repo):
369
390
        """takes a verify result and returns list of not signed commit info"""
370
 
        signers = {}
371
 
        for rev_id, validity, empty in result:
372
 
            if validity == SIGNATURE_NOT_SIGNED:
373
 
                revision = repo.get_revision(rev_id)
374
 
                authors = ', '.join(revision.get_apparent_authors())
375
 
                signers.setdefault(authors, 0)
376
 
                signers[authors] += 1
377
 
        result = []
378
 
        for authors, number in signers.items():
379
 
            result.append( i18n.ngettext(u"{0} commit by author {1}", 
380
 
                                 u"{0} commits by author {1}",
381
 
                                 number).format(number, authors) )
382
 
        return result
 
391
        return verbose_not_valid_message(result, repo)
383
392
 
 
393
    @deprecated_method(deprecated_in((2, 6, 0)))
384
394
    def verbose_missing_key_message(self, result):
385
395
        """takes a verify result and returns list of missing key info"""
386
 
        signers = {}
387
 
        for rev_id, validity, fingerprint in result:
388
 
            if validity == SIGNATURE_KEY_MISSING:
389
 
                signers.setdefault(fingerprint, 0)
390
 
                signers[fingerprint] += 1
391
 
        result = []
392
 
        for fingerprint, number in signers.items():
393
 
            result.append( i18n.ngettext(u"Unknown key {0} signed {1} commit", 
394
 
                                 u"Unknown key {0} signed {1} commits",
395
 
                                 number).format(fingerprint, number) )
396
 
        return result
397
 
 
 
396
        return verbose_missing_key_message(result)
 
397
 
 
398
    @deprecated_method(deprecated_in((2, 6, 0)))
 
399
    def verbose_expired_key_message(self, result, repo):
 
400
        """takes a verify result and returns list of expired key info"""
 
401
        return verbose_expired_key_message(result, repo)
 
402
 
 
403
    @deprecated_method(deprecated_in((2, 6, 0)))
398
404
    def valid_commits_message(self, count):
399
405
        """returns message for number of commits"""
400
 
        return i18n.gettext(u"{0} commits with valid signatures").format(
401
 
                                        count[SIGNATURE_VALID])
 
406
        return valid_commits_message(count)
402
407
 
 
408
    @deprecated_method(deprecated_in((2, 6, 0)))
403
409
    def unknown_key_message(self, count):
404
410
        """returns message for number of commits"""
405
 
        return i18n.ngettext(u"{0} commit with unknown key",
406
 
                             u"{0} commits with unknown keys",
407
 
                             count[SIGNATURE_KEY_MISSING]).format(
408
 
                                        count[SIGNATURE_KEY_MISSING])
 
411
        return unknown_key_message(count)
409
412
 
 
413
    @deprecated_method(deprecated_in((2, 6, 0)))
410
414
    def commit_not_valid_message(self, count):
411
415
        """returns message for number of commits"""
412
 
        return i18n.ngettext(u"{0} commit not valid",
413
 
                             u"{0} commits not valid",
414
 
                             count[SIGNATURE_NOT_VALID]).format(
415
 
                                            count[SIGNATURE_NOT_VALID])
 
416
        return commit_not_valid_message(count)
416
417
 
 
418
    @deprecated_method(deprecated_in((2, 6, 0)))
417
419
    def commit_not_signed_message(self, count):
418
420
        """returns message for number of commits"""
419
 
        return i18n.ngettext(u"{0} commit not signed",
420
 
                             u"{0} commits not signed",
421
 
                             count[SIGNATURE_NOT_SIGNED]).format(
422
 
                                        count[SIGNATURE_NOT_SIGNED])
 
421
        return commit_not_signed_message(count)
 
422
 
 
423
    @deprecated_method(deprecated_in((2, 6, 0)))
 
424
    def expired_commit_message(self, count):
 
425
        """returns message for number of commits"""
 
426
        return expired_commit_message(count)
 
427
 
 
428
 
 
429
def valid_commits_message(count):
 
430
    """returns message for number of commits"""
 
431
    return gettext(u"{0} commits with valid signatures").format(
 
432
                                    count[SIGNATURE_VALID])
 
433
 
 
434
 
 
435
def unknown_key_message(count):
 
436
    """returns message for number of commits"""
 
437
    return ngettext(u"{0} commit with unknown key",
 
438
                    u"{0} commits with unknown keys",
 
439
                    count[SIGNATURE_KEY_MISSING]).format(
 
440
                                    count[SIGNATURE_KEY_MISSING])
 
441
 
 
442
 
 
443
def commit_not_valid_message(count):
 
444
    """returns message for number of commits"""
 
445
    return ngettext(u"{0} commit not valid",
 
446
                    u"{0} commits not valid",
 
447
                    count[SIGNATURE_NOT_VALID]).format(
 
448
                                        count[SIGNATURE_NOT_VALID])
 
449
 
 
450
 
 
451
def commit_not_signed_message(count):
 
452
    """returns message for number of commits"""
 
453
    return ngettext(u"{0} commit not signed",
 
454
                    u"{0} commits not signed",
 
455
                    count[SIGNATURE_NOT_SIGNED]).format(
 
456
                                    count[SIGNATURE_NOT_SIGNED])
 
457
 
 
458
 
 
459
def expired_commit_message(count):
 
460
    """returns message for number of commits"""
 
461
    return ngettext(u"{0} commit with key now expired",
 
462
                    u"{0} commits with key now expired",
 
463
                    count[SIGNATURE_EXPIRED]).format(
 
464
                                count[SIGNATURE_EXPIRED])
 
465
 
 
466
 
 
467
def verbose_expired_key_message(result, repo):
 
468
    """takes a verify result and returns list of expired key info"""
 
469
    signers = {}
 
470
    fingerprint_to_authors = {}
 
471
    for rev_id, validity, fingerprint in result:
 
472
        if validity == SIGNATURE_EXPIRED:
 
473
            revision = repo.get_revision(rev_id)
 
474
            authors = ', '.join(revision.get_apparent_authors())
 
475
            signers.setdefault(fingerprint, 0)
 
476
            signers[fingerprint] += 1
 
477
            fingerprint_to_authors[fingerprint] = authors
 
478
    result = []
 
479
    for fingerprint, number in signers.items():
 
480
        result.append(
 
481
            ngettext(u"{0} commit by author {1} with key {2} now expired",
 
482
                     u"{0} commits by author {1} with key {2} now expired",
 
483
                     number).format(
 
484
                number, fingerprint_to_authors[fingerprint], fingerprint))
 
485
    return result
 
486
 
 
487
 
 
488
def verbose_valid_message(result):
 
489
    """takes a verify result and returns list of signed commits strings"""
 
490
    signers = {}
 
491
    for rev_id, validity, uid in result:
 
492
        if validity == SIGNATURE_VALID:
 
493
            signers.setdefault(uid, 0)
 
494
            signers[uid] += 1
 
495
    result = []
 
496
    for uid, number in signers.items():
 
497
         result.append(ngettext(u"{0} signed {1} commit",
 
498
                                u"{0} signed {1} commits",
 
499
                                number).format(uid, number))
 
500
    return result
 
501
 
 
502
 
 
503
def verbose_not_valid_message(result, repo):
 
504
    """takes a verify result and returns list of not valid commit info"""
 
505
    signers = {}
 
506
    for rev_id, validity, empty in result:
 
507
        if validity == SIGNATURE_NOT_VALID:
 
508
            revision = repo.get_revision(rev_id)
 
509
            authors = ', '.join(revision.get_apparent_authors())
 
510
            signers.setdefault(authors, 0)
 
511
            signers[authors] += 1
 
512
    result = []
 
513
    for authors, number in signers.items():
 
514
        result.append(ngettext(u"{0} commit by author {1}",
 
515
                               u"{0} commits by author {1}",
 
516
                               number).format(number, authors))
 
517
    return result
 
518
 
 
519
 
 
520
def verbose_not_signed_message(result, repo):
 
521
    """takes a verify result and returns list of not signed commit info"""
 
522
    signers = {}
 
523
    for rev_id, validity, empty in result:
 
524
        if validity == SIGNATURE_NOT_SIGNED:
 
525
            revision = repo.get_revision(rev_id)
 
526
            authors = ', '.join(revision.get_apparent_authors())
 
527
            signers.setdefault(authors, 0)
 
528
            signers[authors] += 1
 
529
    result = []
 
530
    for authors, number in signers.items():
 
531
        result.append(ngettext(u"{0} commit by author {1}",
 
532
                               u"{0} commits by author {1}",
 
533
                               number).format(number, authors))
 
534
    return result
 
535
 
 
536
 
 
537
def verbose_missing_key_message(result):
 
538
    """takes a verify result and returns list of missing key info"""
 
539
    signers = {}
 
540
    for rev_id, validity, fingerprint in result:
 
541
        if validity == SIGNATURE_KEY_MISSING:
 
542
            signers.setdefault(fingerprint, 0)
 
543
            signers[fingerprint] += 1
 
544
    result = []
 
545
    for fingerprint, number in signers.items():
 
546
        result.append(ngettext(u"Unknown key {0} signed {1} commit",
 
547
                               u"Unknown key {0} signed {1} commits",
 
548
                               number).format(fingerprint, number))
 
549
    return result