Newer
Older
__copyright__ = "Copyright 2016-2018, Stichting SciPost (SciPost Foundation)"
__license__ = "AGPL v3"
from django.db import models
from django.db.models import Q
now = timezone.now()
def _newest_version_only(self, queryset):
"""
The current Queryset should return only the latest version
of the Arxiv submissions known to SciPost.
Method only compatible with PostGresQL
"""
# This method used a double query, which is a consequence of the complex distinct()
# filter combined with the PostGresQL engine. Without the double query, ordering
# on a specific field after filtering seems impossible.
ids = (queryset
.order_by('arxiv_identifier_wo_vn_nr', '-arxiv_vn_nr')
.distinct('arxiv_identifier_wo_vn_nr')
.values_list('id', flat=True))
return queryset.filter(id__in=ids)
def user_filter(self, user):
Prevent conflict of interest by filtering submissions possibly related to user.
This filter should be inherited by other filters.
"""
try:
return (self.exclude(authors=user.contributor)
.exclude(Q(author_list__icontains=user.last_name),
~Q(authors_false_claims=user.contributor)))
except AttributeError:
return self.none()
This filter creates 'the complete pool' for a user. This new-style pool does
explicitly not have the author filter anymore, but registered pools for every Submission.
!!! IMPORTANT SECURITY NOTICE !!!
All permissions regarding Editorial College actions are implicitly taken care
of in this filter method! ALWAYS use this filter method in your Editorial College
related view/action.
"""
if not hasattr(user, 'contributor'):
return self.none()
if user.has_perm('scipost.can_oversee_refereeing'):
# Editorial Administators do have permission to see all submissions
# without being one of the College Fellows. Therefore, use the 'old' author
# filter to still filter out their conflicts of interests.
return self.user_filter(user)
else:
qs = user.contributor.fellowships.active()
return self.filter(fellows__in=qs)
def pool(self, user):
"""Return the user-dependent pool of Submissions in active referee phase."""
return self.pool_editable(user).filter(is_current=True, status__in=[
constants.STATUS_UNASSIGNED,
constants.STATUS_EIC_ASSIGNED,
def pool_editable(self, user):
"""Return the editable pool for a certain user.
This is similar to the regular pool, however it also contains submissions that are
hidden in the regular pool, but should still be able to be opened by for example
the Editor-in-charge.
"""
qs = self._pool(user)
"""Return the set of Submissions the user is Editor-in-charge for.
If user is an Editorial Administrator: return the full pool.
if not user.has_perm('scipost.can_oversee_refereeing'):
qs = qs.filter(editor_in_charge__user=user)
"""Return the set of Submissions for which the user is a registered author."""
if not hasattr(user, 'contributor'):
return self.none()
return self.filter(authors=user.contributor)
"""Return submissions just coming in and going through pre-screening."""
return self.filter(status=constants.STATUS_INCOMING)
def unassigned(self):
"""Return submissions passed pre-screening, but unassigned."""
def without_eic(self):
"""Return Submissions that still need Editorial Assignment."""
return self.filter(status__in=[constants.STATUS_INCOMING, constants.STATUS_UNASSIGNED])
def actively_refereeing(self):
"""Return submission currently in some point of the refereeing round."""
return self.filter(status=constants.STATUS_EIC_ASSIGNED).exclude(
eicrecommendations__status=constants.DECISION_FIXED)
"""Return all publicly available Submissions."""
return self.filter(visible_public=True)
def public_listed(self):
"""List all public Submissions if not published and submitted.
Implement: Use this filter to also determine, using a optional user argument,
if the query should be filtered or not as a logged in EdCol Admin
should be able to view *all* submissions.
"""
This query contains set of public() submissions, filtered to only the newest available
version.
"""This query returns all Submissions that are presumed to be 'done'."""
return self.filter(status__in=[
constants.STATUS_ACCEPTED,
constants.STATUS_REJECTED,
constants.STATUS_PUBLISHED,
constants.STATUS_RESUBMITTED])
def originally_submitted(self, from_date, until_date):
"""
Returns the submissions originally received between from_date and until_date
(including subsequent resubmissions, even if those came in later).
"""
identifiers = []
for sub in self.filter(is_resubmission=False,
submission_date__range=(from_date, until_date)):
identifiers.append(sub.arxiv_identifier_wo_vn_nr)
return self.filter(arxiv_identifier_wo_vn_nr__in=identifiers)
"""Return accepted Submissions."""
return self.filter(status=constants.STATUS_ACCEPTED)
"""Return Submissions with a fixed EICRecommendation: minor or major revision."""
return self.filter(
eicrecommendations__status=constants.DECISION_FIXED,
eicrecommendations__recommendation__in=[
constants.REPORT_MINOR_REV, constants.REPORT_MAJOR_REV])
"""Return published Submissions."""
return self.filter(status=constants.STATUS_PUBLISHED)
"""Return Submissions which have failed assignment."""
return self.filter(status=constants.STATUS_ASSIGNMENT_FAILED)
"""Return rejected Submissions."""
return self._newest_version_only(self.filter(status=constants.STATUS_REJECTED))
"""Return withdrawn Submissions."""
return self._newest_version_only(self.filter(status=constants.STATUS_WITHDRAWN))
def open_for_reporting(self):
"""Return Submission that allow for reporting."""
return self.filter(open_for_reporting=True)
def open_for_commenting(self):
return self.filter(open_for_commenting=True)
class SubmissionEventQuerySet(models.QuerySet):
def for_author(self):
"""
Return all events that are meant to be for the author(s) of a submission.
"""
return self.filter(event__in=[constants.EVENT_FOR_AUTHOR, constants.EVENT_GENERAL])
def for_eic(self):
"""
Return all events that are meant to be for the Editor-in-charge of a submission.
"""
return self.filter(event__in=[constants.EVENT_FOR_EIC, constants.EVENT_GENERAL])
def last_hours(self, hours=24):
"""
Return all events of the last `hours` hours.
"""
return self.filter(created__gte=timezone.now() - datetime.timedelta(hours=hours))
class EditorialAssignmentQuerySet(models.QuerySet):
def get_for_user_in_pool(self, user):
return self.exclude(submission__authors=user.contributor)\
.exclude(Q(submission__author_list__icontains=user.last_name),
~Q(submission__authors_false_claims=user.contributor))
def last_year(self):
return self.filter(date_created__gt=timezone.now() - timezone.timedelta(days=365))
def accepted(self):
return self.filter(accepted=True)
def refused(self):
return self.filter(accepted=False)
def ignored(self):
return self.filter(accepted=None)
def completed(self):
return self.filter(completed=True)
def ongoing(self):
return self.filter(completed=False, deprecated=False).accepted()
def open(self):
return self.filter(accepted=None, deprecated=False)
def refereeing_deadline_within(self, days=7):
return self.exclude(
submission__reporting_deadline__gt=timezone.now() + timezone.timedelta(days=days)
).exclude(submission__reporting_deadline__lt=timezone.now())
class EICRecommendationQuerySet(models.QuerySet):
"""Return the subset of EICRecommendation the User is eligable to vote on."""
if not hasattr(user, 'contributor'):
return self.none()
return self.put_to_voting().filter(eligible_to_vote=user.contributor).exclude(
recommendation__in=[-1, -2]).exclude(
models.Q(voted_for=user.contributor) | models.Q(voted_against=user.contributor) |
models.Q(voted_abstain=user.contributor)).exclude(submission__status__in=[
constants.STATUS_REJECTED,
constants.STATUS_PUBLISHED,
constants.STATUS_WITHDRAWN])
"""Return the subset of EICRecommendation currently undergoing voting."""
return self.filter(status=constants.PUT_TO_VOTING)
"""Return the subset of EICRecommendation currently undergoing preparation for voting."""
return self.filter(status=constants.VOTING_IN_PREP)
"""Return the subset of EICRecommendation most recent, valid versions."""
def fixed(self):
"""Return the subset of fixed EICRecommendations."""
return self.filter(status=constants.DECISION_FIXED)
def asking_revision(self):
"""Return EICRecommendation asking for a minor or major revision."""
return self.filter(recommendation__in=[-1, -2])
class ReportQuerySet(models.QuerySet):
def awaiting_vetting(self):
return self.filter(status__in=[
constants.STATUS_UNCLEAR, constants.STATUS_INCORRECT, constants.STATUS_NOT_USEFUL,
constants.STATUS_NOT_ACADEMIC])
def non_draft(self):
def contributed(self):
return self.filter(invited=False)
def invited(self):
return self.filter(invited=True)
class RefereeInvitationQuerySet(models.QuerySet):
def awaiting_response(self):
return self.pending().open()
def pending(self):
return self.filter(accepted=None)
def accepted(self):
return self.filter(accepted=True)
def declined(self):
return self.filter(accepted=False)
return self.pending().filter(cancelled=False)
def in_process(self):
return self.accepted().filter(fulfilled=False)
def approaching_deadline(self, days=2):
pseudo_deadline = now + datetime.timedelta(days)
qs = qs.filter(submission__reporting_deadline__lte=pseudo_deadline,
return self.in_process().filter(submission__reporting_deadline__lte=now)
class EditorialCommunicationQueryset(models.QuerySet):
def for_referees(self):
return self.filter(comtype__in=['EtoR', 'RtoE'])