2017-03-12 14:43:41 +00:00
|
|
|
from django.views.generic.detail import SingleObjectMixin
|
|
|
|
from django.shortcuts import redirect
|
|
|
|
from django.urls import reverse
|
|
|
|
from . import models
|
2017-03-12 18:06:03 +00:00
|
|
|
from django.contrib import messages
|
2017-03-17 18:40:47 +00:00
|
|
|
from django.http import Http404, HttpResponse
|
2018-03-04 14:48:57 +00:00
|
|
|
import sys
|
|
|
|
import mimetypes
|
2017-03-12 14:43:41 +00:00
|
|
|
|
|
|
|
|
2018-05-20 16:16:20 +00:00
|
|
|
class EnsureCFPOpenMixin(object):
|
2017-03-18 15:22:16 +00:00
|
|
|
def dispatch(self, request, *args, **kwargs):
|
2018-05-20 16:16:20 +00:00
|
|
|
# do not permit this action if call for participation is not open
|
|
|
|
if not self.camp.call_for_participation_open:
|
|
|
|
messages.error(request, "The Call for Participation is not open.")
|
2018-03-04 14:48:57 +00:00
|
|
|
return redirect(
|
2018-05-20 16:16:20 +00:00
|
|
|
reverse('program:proposal_list', kwargs={'camp_slug': self.camp.slug})
|
2018-03-04 14:48:57 +00:00
|
|
|
)
|
2017-03-18 15:22:16 +00:00
|
|
|
|
|
|
|
# alright, continue with the request
|
|
|
|
return super().dispatch(request, *args, **kwargs)
|
|
|
|
|
|
|
|
|
2017-03-12 19:54:33 +00:00
|
|
|
class EnsureUnapprovedProposalMixin(SingleObjectMixin):
|
2017-03-12 14:43:41 +00:00
|
|
|
def dispatch(self, request, *args, **kwargs):
|
2017-03-12 18:06:03 +00:00
|
|
|
# do not permit editing if the proposal is already approved
|
|
|
|
if self.get_object().proposal_status == models.UserSubmittedModel.PROPOSAL_APPROVED:
|
2017-03-15 23:30:59 +00:00
|
|
|
messages.error(request, "This proposal has already been approved. Please contact the organisers if you need to modify something.")
|
2018-05-20 16:16:20 +00:00
|
|
|
return redirect(reverse('program:proposal_list', kwargs={'camp_slug': self.camp.slug}))
|
2017-03-12 14:43:41 +00:00
|
|
|
|
|
|
|
# alright, continue with the request
|
|
|
|
return super().dispatch(request, *args, **kwargs)
|
|
|
|
|
|
|
|
|
2018-05-20 16:16:20 +00:00
|
|
|
class EnsureWritableCampMixin(object):
|
2017-03-12 14:43:41 +00:00
|
|
|
def dispatch(self, request, *args, **kwargs):
|
2017-03-12 18:06:03 +00:00
|
|
|
# do not permit view if camp is in readonly mode
|
|
|
|
if self.camp.read_only:
|
|
|
|
messages.error(request, "No thanks")
|
2018-05-20 16:16:20 +00:00
|
|
|
return redirect(reverse('program:proposal_list', kwargs={'camp_slug': self.camp.slug}))
|
2017-03-12 18:06:03 +00:00
|
|
|
|
|
|
|
# alright, continue with the request
|
|
|
|
return super().dispatch(request, *args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class EnsureUserOwnsProposalMixin(SingleObjectMixin):
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
# make sure that this proposal belongs to the logged in user
|
2017-03-12 14:43:41 +00:00
|
|
|
if self.get_object().user.username != request.user.username:
|
|
|
|
messages.error(request, "No thanks")
|
2018-03-04 14:48:57 +00:00
|
|
|
return redirect(
|
2018-05-20 16:16:20 +00:00
|
|
|
reverse('program:proposal_list', kwargs={'camp_slug': self.camp.slug})
|
2018-03-04 14:48:57 +00:00
|
|
|
)
|
2017-03-12 14:43:41 +00:00
|
|
|
|
|
|
|
# alright, continue with the request
|
|
|
|
return super().dispatch(request, *args, **kwargs)
|
|
|
|
|