-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathmodels.py
1377 lines (1109 loc) · 39.8 KB
/
models.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
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
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Patchwork - automated patch tracking system
# Copyright (C) 2008 Jeremy Kerr <[email protected]>
# Copyright (C) 2015 Intel Corporation
#
# SPDX-License-Identifier: GPL-2.0-or-later
from collections import Counter
from collections import OrderedDict
import datetime
import random
import re
from django.conf import settings
from django.contrib.auth.models import User
from django.core.exceptions import ValidationError
from django.core.validators import validate_unicode_slug
from django.db.models import Count
from django.db import models
from django.urls import reverse
from django.utils.functional import cached_property
from django.utils import timezone as tz_utils
from patchwork.fields import HashField
from patchwork.hasher import hash_diff
if settings.ENABLE_REST_API:
from rest_framework.authtoken.models import Token
def validate_regex_compiles(regex_string):
try:
re.compile(regex_string)
except Exception:
raise ValidationError('Invalid regular expression entered!')
class Person(models.Model):
# properties
email = models.CharField(max_length=255, unique=True)
name = models.CharField(max_length=255, null=True, blank=True)
user = models.ForeignKey(
User, null=True, blank=True, on_delete=models.SET_NULL
)
def link_to_user(self, user):
self.name = user.profile.name
self.user = user
def __str__(self):
if self.name:
return '%s <%s>' % (self.name, self.email)
else:
return self.email
class Meta:
verbose_name_plural = 'People'
class Project(models.Model):
# properties
linkname = models.CharField(
max_length=255, unique=True, validators=[validate_unicode_slug]
)
name = models.CharField(max_length=255, unique=True)
listid = models.CharField(max_length=255)
listemail = models.CharField(max_length=200)
subject_match = models.CharField(
max_length=64,
blank=True,
default='',
validators=[validate_regex_compiles],
help_text='Regex to match the '
'subject against if only part of emails sent to the list belongs to '
'this project. Will be used with IGNORECASE and MULTILINE flags. If '
'rules for more projects match the first one returned from DB is '
'chosen; empty field serves as a default for every email which has no '
'other match.',
)
# url metadata
web_url = models.CharField(max_length=2000, blank=True)
scm_url = models.CharField(max_length=2000, blank=True)
webscm_url = models.CharField(max_length=2000, blank=True)
list_archive_url = models.CharField(max_length=2000, blank=True)
list_archive_url_format = models.CharField(
max_length=2000,
blank=True,
help_text="URL format for the list archive's Message-ID redirector. "
'{} will be replaced by the Message-ID.',
)
commit_url_format = models.CharField(
max_length=2000,
blank=True,
help_text='URL format for a particular commit. '
'{} will be replaced by the commit SHA.',
)
# configuration options
send_notifications = models.BooleanField(default=False)
use_tags = models.BooleanField(default=True)
def is_editable(self, user):
if not user.is_authenticated:
return False
return self in user.profile.maintainer_projects.all()
@cached_property
def tags(self):
if not self.use_tags:
return []
return list(Tag.objects.all())
def __str__(self):
return self.name
class Meta:
unique_together = (('listid', 'subject_match'),)
ordering = ['linkname']
class DelegationRule(models.Model):
project = models.ForeignKey(Project, on_delete=models.CASCADE)
user = models.ForeignKey(
User,
on_delete=models.CASCADE,
help_text='A user to delegate the patch to.',
)
path = models.CharField(
max_length=255,
help_text='An fnmatch-style pattern to match filenames against.',
)
priority = models.IntegerField(
default=0,
help_text='The priority of the rule. Rules with a higher priority '
'will override rules with lower priorities',
)
def __str__(self):
return self.path
class Meta:
ordering = ['-priority', 'path']
unique_together = ('path', 'project')
class UserProfile(models.Model):
user = models.OneToOneField(
User, unique=True, related_name='profile', on_delete=models.CASCADE
)
# projects
maintainer_projects = models.ManyToManyField(
Project, related_name='maintainer_project', blank=True
)
# configuration options
send_email = models.BooleanField(
default=False,
help_text='Selecting this option allows patchwork to send email on'
' your behalf',
)
items_per_page = models.PositiveIntegerField(
default=100,
null=False,
blank=False,
help_text='Number of items to display per page',
)
show_ids = models.BooleanField(
default=False,
help_text='Show click-to-copy patch IDs in the list view',
)
@property
def name(self):
if self.user.first_name or self.user.last_name:
names = [self.user.first_name, self.user.last_name]
return ' '.join([x for x in names if x])
return self.user.username
@property
def contributor_projects(self):
submitters = Person.objects.filter(user=self.user)
return Project.objects.filter(
id__in=Patch.objects.filter(submitter__in=submitters)
.values('project_id')
.query
)
@property
def n_todo_patches(self):
return self.todo_patches().count()
@property
def token(self):
if not settings.ENABLE_REST_API:
return
try:
return Token.objects.get(user=self.user)
except Token.DoesNotExist:
return
def todo_patches(self, project=None):
# filter on project, if necessary
if project:
qs = Patch.objects.filter(project=project)
else:
qs = Patch.objects
qs = (
qs.filter(archived=False)
.filter(delegate=self.user)
.filter(
state__in=State.objects.filter(action_required=True)
.values('pk')
.query
)
)
return qs
def __str__(self):
return self.name
def _user_saved_callback(sender, created, instance, **kwargs):
try:
profile = instance.profile
profile.user = instance
except UserProfile.DoesNotExist:
profile = UserProfile(user=instance)
profile.save()
models.signals.post_save.connect(_user_saved_callback, sender=User)
class State(models.Model):
# Both of these fields should be unique
name = models.CharField(max_length=100, unique=True)
slug = models.SlugField(max_length=100, unique=True)
ordering = models.IntegerField(unique=True)
action_required = models.BooleanField(default=True)
def __str__(self):
return self.name
class Meta:
ordering = ['ordering']
class Tag(models.Model):
name = models.CharField(max_length=20)
pattern = models.CharField(
max_length=50,
validators=[validate_regex_compiles],
help_text='A simple regex to match the tag in the content of a '
'message. Will be used with MULTILINE and IGNORECASE flags. eg. '
'^Acked-by:',
)
abbrev = models.CharField(
max_length=2,
unique=True,
help_text='Short (one-or-two letter)'
' abbreviation for the tag, used in table column headers',
)
show_column = models.BooleanField(
help_text='Show a column displaying this'
" tag's count in the patch list view",
default=True,
)
@property
def attr_name(self):
return 'tag_%d_count' % self.id
def __str__(self):
return self.name
class Meta:
ordering = ['abbrev']
class PatchTag(models.Model):
patch = models.ForeignKey('Patch', on_delete=models.CASCADE)
tag = models.ForeignKey('Tag', on_delete=models.CASCADE)
count = models.IntegerField(default=1)
class Meta:
unique_together = [('patch', 'tag')]
def get_default_initial_patch_state():
return State.objects.get(ordering=0)
class PatchQuerySet(models.query.QuerySet):
def with_tag_counts(self, project=None):
if project and not project.use_tags:
return self
# We need the project's use_tags field loaded for Project.tags().
# Using prefetch_related means we'll share the one instance of
# Project, and share the project.tags cache between all patch.project
# references.
qs = self.prefetch_related('project')
select = OrderedDict()
select_params = []
# All projects have the same tags, so we're good to go here
if project:
tags = project.tags
else:
tags = Tag.objects.all()
for tag in tags:
select[tag.attr_name] = (
'coalesce('
'(SELECT count FROM patchwork_patchtag'
' WHERE patchwork_patchtag.patch_id=patchwork_patch.id'
' AND patchwork_patchtag.tag_id=%s), 0)'
)
select_params.append(tag.id)
return qs.extra(select=select, select_params=select_params)
class PatchManager(models.Manager):
def get_queryset(self):
return PatchQuerySet(self.model, using=self.db)
def with_tag_counts(self, project):
return self.get_queryset().with_tag_counts(project)
class EmailMixin(models.Model):
"""Mixin for models with an email-origin."""
# email metadata
msgid = models.CharField(max_length=255)
date = models.DateTimeField(default=tz_utils.now)
headers = models.TextField(blank=True)
# content
submitter = models.ForeignKey(Person, on_delete=models.CASCADE)
content = models.TextField(null=True, blank=True)
response_re = re.compile(
r'^(Tested|Reviewed|Acked|Signed-off|Nacked|Reported)-by:.*$',
re.M | re.I,
)
@property
def patch_responses(self):
if not self.content:
return ''
return ''.join(
[
match.group(0) + '\n'
for match in self.response_re.finditer(self.content)
]
)
@property
def url_msgid(self):
"""A trimmed Message ID, suitable for inclusion in URLs"""
if settings.DEBUG:
assert self.msgid[0] == '<' and self.msgid[-1] == '>'
return self.msgid.strip('<>')
@property
def encoded_msgid(self):
"""Like 'url_msgid' but with slashes percentage encoded."""
# We don't want to encode all characters (i.e. use urllib.parse.quote)
# because that would result in us encoding the '@' present in all
# message IDs. Instead we only percent-encode any slashes present [1].
# These are not common so this is very much expected to be an edge
# case.
#
# [1] https://datatracker.ietf.org/doc/html/rfc3986.html#section-2
return self.url_msgid.replace('/', '%2F')
@staticmethod
def decode_msgid(msgid):
"""Decode an encoded msgid.
Reverses :mod:`~url_msgid` and :mod:`~encoded_msgid` operations.
"""
return f"<{msgid.replace('%2F', '/')}>"
def save(self, *args, **kwargs):
# Modifying a submission via admin interface changes '\n' newlines in
# message content to '\r\n'. We need to fix them to avoid problems,
# especially as git complains about malformed patches when PW runs
if self.content:
# on PY2 TODO: is this still needed on PY3?
self.content = self.content.replace('\r\n', '\n')
super(EmailMixin, self).save(*args, **kwargs)
class Meta:
abstract = True
class FilenameMixin(object):
@property
def filename(self):
"""Return a sanitized filename without extension."""
fname_re = re.compile(r'[^-_A-Za-z0-9\.]+')
fname = fname_re.sub('-', str(self)).strip('-')
return fname
class SubmissionMixin(FilenameMixin, EmailMixin, models.Model):
# parent
project = models.ForeignKey(Project, on_delete=models.CASCADE)
# submission metadata
name = models.CharField(max_length=255)
@cached_property
def list_archive_url(self):
if not self.project.list_archive_url_format:
return None
if not self.msgid:
return None
return self.project.list_archive_url_format.format(
self.url_msgid,
)
# patchwork metadata
def is_editable(self, user):
return False
def __str__(self):
return self.name
class Meta:
abstract = True
class Cover(SubmissionMixin):
def get_absolute_url(self):
return reverse(
'cover-detail',
kwargs={
'project_id': self.project.linkname,
'msgid': self.encoded_msgid,
},
)
def get_mbox_url(self):
return reverse(
'cover-mbox',
kwargs={
'project_id': self.project.linkname,
'msgid': self.encoded_msgid,
},
)
class Meta:
ordering = ['date']
unique_together = [('msgid', 'project')]
indexes = [
# This is a covering index for the /list/ query
# Like what we have for Patch, but used for displaying what we want
# rather than for working out the count (of course, this all
# depends on the SQL optimiser of your DB engine)
models.Index(
fields=['date', 'project', 'submitter', 'name'],
name='cover_covering_idx',
),
]
class Patch(SubmissionMixin):
diff = models.TextField(null=True, blank=True)
commit_ref = models.CharField(max_length=255, null=True, blank=True)
pull_url = models.CharField(max_length=255, null=True, blank=True)
tags = models.ManyToManyField(Tag, through=PatchTag)
# patchwork metadata
delegate = models.ForeignKey(
User,
blank=True,
null=True,
on_delete=models.CASCADE,
)
state = models.ForeignKey(State, null=True, on_delete=models.CASCADE)
archived = models.BooleanField(default=False)
hash = HashField(null=True, blank=True, db_index=True)
# series metadata
series = models.ForeignKey(
'Series',
null=True,
blank=True,
on_delete=models.CASCADE,
related_name='patches',
related_query_name='patch',
)
number = models.PositiveSmallIntegerField(
default=None,
null=True,
help_text='The number assigned to this patch in the series',
)
# related patches metadata
related = models.ForeignKey(
'PatchRelation',
null=True,
blank=True,
on_delete=models.SET_NULL,
related_name='patches',
related_query_name='patch',
)
objects = PatchManager()
@staticmethod
def extract_tags(content, tags):
counts = Counter()
for tag in tags:
regex = re.compile(tag.pattern, re.MULTILINE | re.IGNORECASE)
counts[tag] = len(regex.findall(content))
return counts
def _set_tag(self, tag, count):
if count == 0:
self.patchtag_set.filter(tag=tag).delete()
return
patchtag, _ = PatchTag.objects.get_or_create(patch=self, tag=tag)
if patchtag.count != count:
patchtag.count = count
patchtag.save()
def refresh_tag_counts(self):
tags = self.project.tags
counter = Counter()
if self.content:
counter += self.extract_tags(self.content, tags)
for comment in self.comments.all():
counter = counter + self.extract_tags(comment.content, tags)
for tag in tags:
self._set_tag(tag, counter[tag])
def save(self, *args, **kwargs):
if not hasattr(self, 'state') or not self.state:
self.state = get_default_initial_patch_state()
if self.hash is None and self.diff is not None:
self.hash = hash_diff(self.diff)
super(Patch, self).save(**kwargs)
self.refresh_tag_counts()
def is_editable(self, user):
if not user.is_authenticated:
return False
if user in [self.submitter.user, self.delegate]:
self._edited_by = user
return True
if self.project.is_editable(user):
self._edited_by = user
return True
return False
@staticmethod
def filter_unique_checks(checks):
"""Filter the provided checks to generate the unique list."""
unique = {}
duplicates = []
for check in checks:
ctx = check.context
user = check.user_id
if user in unique and ctx in unique[user]:
# recheck condition - ignore the older result
if unique[user][ctx].date > check.date:
duplicates.append(check.id)
continue
duplicates.append(unique[user][ctx].id)
if user not in unique:
unique[user] = {}
unique[user][ctx] = check
# filter out the "duplicates" or older, now-invalid results
# Why don't we use filter or exclude here? Surprisingly, it's
# an optimisation in the common case. Where we're looking at
# checks in anything that uses a generic_list() in the view,
# we do a prefetch_related('check_set'). But, if we then do a
# .filter or a .exclude, that throws out the existing, cached
# information, and does another query. (See the Django docs on
# prefetch_related.) So, do it 'by hand' in Python. We can
# also be confident that this won't be worse, seeing as we've
# just iterated over self.check_set.all() *anyway*.
return [c for c in checks if c.id not in duplicates]
@property
def checks(self):
"""Return the list of unique checks.
Generate a list of checks associated with this patch for each
type of Check. Only "unique" checks are considered,
identified by their 'context' field. This means, given n
checks with the same 'context', the newest check is the only
one counted regardless of its value. The end result will be a
association of types to number of unique checks for said
type.
"""
return self.filter_unique_checks(self.check_set.all())
@property
def combined_check_state(self):
"""Return the combined state for all checks.
Generate the combined check's state for this patch. This check
is one of the following, based on the value of each unique
check:
* failure, if any context's latest check reports as failure
* warning, if any context's latest check reports as warning
* pending, if there are no checks, or a context's latest check reports
as pending
* success, if latest checks for all contexts reports as success
"""
state_names = dict(Check.STATE_CHOICES)
states = [check.state for check in self.checks]
if not states:
return state_names[Check.STATE_PENDING]
# order sensitive
for state in (
Check.STATE_FAIL,
Check.STATE_WARNING,
Check.STATE_PENDING,
):
if state in states:
return state_names[state]
return state_names[Check.STATE_SUCCESS]
@property
def check_count(self):
"""Generate a list of unique checks for each patch.
Compile a list of checks associated with this patch for each
type of check. Only "unique" checks are considered, identified
by their 'context' field. This means, given n checks with the
same 'context', the newest check is the only one counted
regardless of its value. The end result will be a association
of types to number of unique checks for said type.
"""
counts = {key: 0 for key, _ in Check.STATE_CHOICES}
for check in self.checks:
counts[check.state] += 1
return counts
def get_absolute_url(self):
return reverse(
'patch-detail',
kwargs={
'project_id': self.project.linkname,
'msgid': self.encoded_msgid,
},
)
def get_mbox_url(self):
return reverse(
'patch-mbox',
kwargs={
'project_id': self.project.linkname,
'msgid': self.encoded_msgid,
},
)
def __str__(self):
return self.name
class Meta:
verbose_name_plural = 'Patches'
ordering = ['date']
base_manager_name = 'objects'
unique_together = [('msgid', 'project'), ('series', 'number')]
indexes = [
# This is a covering index for the /list/ query
models.Index(
fields=[
'archived',
'state',
'delegate',
'date',
'project',
'submitter',
'name',
],
name='patch_covering_idx',
),
]
class CoverComment(EmailMixin, models.Model):
cover = models.ForeignKey(
Cover,
related_name='comments',
related_query_name='comment',
on_delete=models.CASCADE,
)
addressed = models.BooleanField(null=True)
@cached_property
def list_archive_url(self):
if not self.cover.project.list_archive_url_format:
return None
if not self.msgid:
return None
return self.cover.project.list_archive_url_format.format(
self.url_msgid,
)
def get_absolute_url(self):
return reverse('comment-redirect', kwargs={'comment_id': self.id})
def is_editable(self, user):
if not user.is_authenticated:
return False
# user submitted comment
if user == self.submitter.user:
return True
# user submitted cover letter
if user == self.cover.submitter.user:
return True
# user is project maintainer
if self.cover.project.is_editable(user):
return True
return False
class Meta:
ordering = ['date']
unique_together = [('msgid', 'cover')]
indexes = [
models.Index(name='cover_date_idx', fields=['cover', 'date']),
]
class PatchComment(EmailMixin, models.Model):
patch = models.ForeignKey(
Patch,
related_name='comments',
related_query_name='comment',
on_delete=models.CASCADE,
)
addressed = models.BooleanField(null=True)
@cached_property
def list_archive_url(self):
if not self.patch.project.list_archive_url_format:
return None
if not self.msgid:
return None
return self.patch.project.list_archive_url_format.format(
self.url_msgid,
)
def get_absolute_url(self):
return reverse('comment-redirect', kwargs={'comment_id': self.id})
def save(self, *args, **kwargs):
super(PatchComment, self).save(*args, **kwargs)
self.patch.refresh_tag_counts()
def delete(self, *args, **kwargs):
super(PatchComment, self).delete(*args, **kwargs)
self.patch.refresh_tag_counts()
def is_editable(self, user):
if user == self.submitter.user:
return True
return self.patch.is_editable(user)
class Meta:
ordering = ['date']
unique_together = [('msgid', 'patch')]
indexes = [
models.Index(name='patch_date_idx', fields=['patch', 'date']),
]
class Series(FilenameMixin, models.Model):
"""A collection of patches."""
# parent
project = models.ForeignKey(
Project,
related_name='series',
null=True,
blank=True,
on_delete=models.CASCADE,
)
# content
cover_letter = models.OneToOneField(
Cover, related_name='series', null=True, on_delete=models.CASCADE
)
# metadata
name = models.CharField(
max_length=255,
blank=True,
null=True,
help_text='An optional name to associate with '
'the series, e.g. "John\'s PCI series".',
)
date = models.DateTimeField()
submitter = models.ForeignKey(Person, on_delete=models.CASCADE)
version = models.IntegerField(
default=1,
help_text='Version of series as indicated '
'by the subject prefix(es)',
)
total = models.IntegerField(
help_text='Number of patches in series as '
'indicated by the subject prefix(es)'
)
@staticmethod
def _format_name(obj):
# The parser ensure 'Cover.name' will always take the form 'subject' or
# '[prefix_a,prefix_b,...] subject'. There will never be multiple
# prefixes (text inside brackets), thus, we don't need to account for
# multiple prefixes here.
prefix_re = re.compile(r'^\[([^\]]*)\]\s*(.*)$')
match = prefix_re.match(obj.name)
if match:
return match.group(2)
return obj.name.strip()
@property
def received_total(self):
return self.patches.count()
@property
def received_all(self):
return self.total <= self.received_total
@property
def interest_count(self):
count = self.patches.aggregate(
Count('planning_to_review', distinct=True)
)
return count['planning_to_review__count']
@property
def check_count(self):
"""Generate a list of unique checks for all patchs in the series.
Compile a list of checks associated with this series patches for each
type of check. Only "unique" checks are considered, identified by their
'context' field. This means, given n checks with the same 'context', the
newest check is the only one counted regardless of its value. The end
result will be a association of types to number of unique checks for
said type.
"""
counts = {key: 0 for key, _ in Check.STATE_CHOICES}
for p in self.patches.all():
for check in p.checks:
counts[check.state] += 1
return counts
def add_cover_letter(self, cover):
"""Add a cover letter to the series.
Helper method so we can use the same pattern to add both
patches and cover letters.
"""
if self.cover_letter:
# TODO(stephenfin): We may wish to raise an exception here in the
# future
return
self.cover_letter = cover
# we allow "upgrading of series names. Names from different
# sources are prioritized:
#
# 1. user-provided names
# 2. cover letter-based names
# 3. first patch-based (i.e. 01/nn) names
#
# Names are never "downgraded" - a cover letter received after
# the first patch will result in the name being upgraded to a
# cover letter-based name, but receiving the first patch after
# the cover letter will not change the name of the series.
#
# If none of the above are available, the name will be null.
if not self.name:
self.name = self._format_name(cover)
else:
try:
name = Patch.objects.get(series=self, number=1).name
except Patch.DoesNotExist:
name = None
if self.name == name:
self.name = self._format_name(cover)
self.save()
def add_patch(self, patch, number):
"""Add a patch to the series."""
# both user defined names and cover letter-based names take precedence
if not self.name and number == 1:
self.name = patch.name # keep the prefixes for patch-based names
self.save()
patch.series = self
patch.number = number
patch.save()
return patch
def get_absolute_url(self):
return reverse(
'series-detail',
kwargs={'project_id': self.project.linkname, 'series_id': self.id},
)
def get_mbox_url(self):
return reverse('series-mbox', kwargs={'series_id': self.id})
def __str__(self):
return self.name if self.name else 'Untitled series #%d' % self.id
class Meta:
verbose_name_plural = 'Series'
class SeriesReference(models.Model):
"""A reference found in a series.
Message IDs should be created for all patches in a series,
including those of patches that have not yet been received. This is
required to handle the case whereby one or more patches are
received before the cover letter.
"""
project = models.ForeignKey(Project, on_delete=models.CASCADE)
series = models.ForeignKey(
Series,
related_name='references',
related_query_name='reference',
on_delete=models.CASCADE,
)
msgid = models.CharField(max_length=255)
def __str__(self):
return self.msgid