diff --git a/comments/utils.py b/comments/utils.py index 8ffa2e4fcf1b09c19ee53965ef0eae64baaa71e0..3f04f17ed887b1b4e54aef374fdc5f26164527c4 100644 --- a/comments/utils.py +++ b/comments/utils.py @@ -25,8 +25,20 @@ class CommentUtils(BaseMailUtil): Requires loading: comment -- Comment """ + from submissions.models import Submission, Report + + comment = cls._context['comment'] + send_mail = True + if isinstance(comment.content_object, Submission): + send_mail = comment.author not in comment.content_object.authors.all() + elif isinstance(comment.content_object, Report): + send_mail = comment.author not in comment.content_object.submission.authors.all() + + if not send_mail: + return + cls._send_mail(cls, 'comment_vet_accepted', - [cls._context['comment'].author.user.email], + [comment.author.user.email], 'SciPost Comment published') @classmethod diff --git a/comments/views.py b/comments/views.py index f916794d000fccb427ea44366310c4a58e7b11ed..69f65864535d70908d3b47e16dbfd6d06b08f6c1 100644 --- a/comments/views.py +++ b/comments/views.py @@ -76,10 +76,6 @@ def vet_submitted_comment(request, comment_id): comment.vetted_by = request.user.contributor comment.save() - # Send emails - CommentUtils.load({'comment': comment}) - CommentUtils.email_comment_vet_accepted_to_author() - # Update `latest_activity` fields content_object = comment.content_object content_object.latest_activity = timezone.now() @@ -100,6 +96,10 @@ def vet_submitted_comment(request, comment_id): SubmissionUtils.load({'submission': content_object.submission}) SubmissionUtils.send_author_comment_received_email() + # Send emails + CommentUtils.load({'comment': comment}) + CommentUtils.email_comment_vet_accepted_to_author() + elif form.cleaned_data['action_option'] == '2': # The comment request is simply rejected comment.status = int(form.cleaned_data['refusal_reason']) diff --git a/submissions/models.py b/submissions/models.py index 7152bbec356f59dc5205e5ec592027ca642857aa..7b9e7a34859d4161ea1cb4d7386a19a67d3dd3f7 100644 --- a/submissions/models.py +++ b/submissions/models.py @@ -70,6 +70,8 @@ class Submission(models.Model): default=CYCLE_DEFAULT) fellows = models.ManyToManyField('colleges.Fellowship', blank=True, related_name='pool') + # visible_pool = models.BooleanField(default=True) + # visible_public = models.BooleanField(default=False) subject_area = models.CharField(max_length=10, choices=SCIPOST_SUBJECT_AREAS, verbose_name='Primary subject area', default='Phys:QP') submission_type = models.CharField(max_length=10, choices=SUBMISSION_TYPE)