2017-12-28 10:39:02 +00:00
|
|
|
# Episodes.Community - Community-Driven TV Show Episode Link Sharing Site
|
|
|
|
# Copyright (C) 2017 Evert "Diamond" Prants <evert@lunasqu.ee>, Taizo "Tsa6" Simpson <taizo@tsa6.net>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2017-11-11 12:57:52 +00:00
|
|
|
from django.template import RequestContext
|
2018-03-02 09:59:44 +00:00
|
|
|
from django.shortcuts import render, get_list_or_404, get_object_or_404, redirect
|
2017-11-10 13:55:39 +00:00
|
|
|
from django.views import View
|
|
|
|
from django.views.generic.base import TemplateView
|
2017-11-13 17:42:10 +00:00
|
|
|
from django.contrib.auth.decorators import login_required
|
2017-11-10 13:55:39 +00:00
|
|
|
from django.conf import settings
|
2017-12-27 15:01:39 +00:00
|
|
|
from django.http import Http404, HttpResponseForbidden, HttpResponse, HttpResponseRedirect
|
|
|
|
from django.db.models import Case, When, Value, IntegerField, Count, F, Q
|
2017-11-13 17:42:10 +00:00
|
|
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
2017-11-10 13:55:39 +00:00
|
|
|
|
2017-12-15 11:33:01 +00:00
|
|
|
from guardian.decorators import permission_required_or_403
|
|
|
|
|
2018-03-01 13:48:20 +00:00
|
|
|
from LandingPage.models import User, Show, Season, Episode, Submission, SubmissionVote, Ban, Report
|
2017-08-25 18:03:37 +00:00
|
|
|
|
2017-11-11 12:57:52 +00:00
|
|
|
from . import forms
|
|
|
|
|
|
|
|
import datetime
|
|
|
|
|
2017-08-25 18:03:37 +00:00
|
|
|
# Create your views here.
|
2017-11-10 13:55:39 +00:00
|
|
|
|
2017-11-11 08:03:06 +00:00
|
|
|
# Index page of a show
|
2017-11-10 15:21:21 +00:00
|
|
|
class IndexView(TemplateView):
|
2017-11-10 13:55:39 +00:00
|
|
|
template_name = "show.html"
|
|
|
|
|
2017-12-15 11:33:01 +00:00
|
|
|
def get_context_data(self, abbr, **kwargs):
|
2017-11-10 13:55:39 +00:00
|
|
|
ctx = super().get_context_data()
|
2017-11-11 08:03:06 +00:00
|
|
|
|
2017-12-15 11:33:01 +00:00
|
|
|
# Get show by abbr, add episode count to the show and return only the first object
|
|
|
|
show = get_object_or_404(Show, abbr=abbr)
|
2017-11-11 08:03:06 +00:00
|
|
|
|
|
|
|
# Get all seasons of the show and annotate episode counts onto them
|
2017-11-11 08:12:39 +00:00
|
|
|
seasons = show.seasons.all()
|
2017-11-11 08:03:06 +00:00
|
|
|
|
|
|
|
# Add fields to context
|
|
|
|
ctx['show'] = show
|
|
|
|
ctx['seasons'] = seasons
|
|
|
|
|
2017-11-10 15:21:21 +00:00
|
|
|
return ctx
|
|
|
|
|
2017-11-11 08:03:06 +00:00
|
|
|
# Episodes page of a show
|
2017-11-10 15:21:21 +00:00
|
|
|
class EpisodeView(TemplateView):
|
|
|
|
template_name = "episode.html"
|
|
|
|
|
2017-12-15 11:33:01 +00:00
|
|
|
def get_context_data(self, abbr, season, episode, **kwargs):
|
2017-11-10 15:21:21 +00:00
|
|
|
ctx = super().get_context_data()
|
|
|
|
|
2017-12-29 14:22:58 +00:00
|
|
|
highlight = self.request.GET.get('submission', None)
|
|
|
|
if not highlight == None:
|
|
|
|
highlight = int(highlight)
|
|
|
|
|
2017-12-15 11:33:01 +00:00
|
|
|
# Get show by abbr
|
|
|
|
show = get_object_or_404(Show, abbr=abbr)
|
2018-03-02 09:59:44 +00:00
|
|
|
|
|
|
|
# Check next or previous
|
|
|
|
season_number = int(season)
|
|
|
|
episode_number = int(episode)
|
|
|
|
|
|
|
|
lastep = Episode.objects.filter(season__number=season_number,show=show).order_by('episode').last()
|
|
|
|
season_count = Season.objects.filter(show=show).count()
|
|
|
|
|
|
|
|
if season_count == 0:
|
|
|
|
raise Http404('This show has no episodes.')
|
|
|
|
|
|
|
|
if episode_number == 0 and season_number > 1:
|
|
|
|
season_number -= 1
|
|
|
|
epobj = Episode.objects.filter(season__number=season_number,show=show).order_by('episode').last()
|
|
|
|
|
|
|
|
if not epobj:
|
|
|
|
raise Http404('No Episode matches the given query.')
|
|
|
|
|
|
|
|
episode_number = int(epobj.episode)
|
2018-03-02 13:46:25 +00:00
|
|
|
ctx['url'] = '%s/episode/%d/%d'%(show.url(), season_number, episode_number)
|
2018-03-02 09:59:44 +00:00
|
|
|
elif episode_number > int(lastep.episode):
|
|
|
|
season_number += 1
|
|
|
|
episode_number = 1
|
2018-03-02 13:46:25 +00:00
|
|
|
ctx['url'] = '%s/episode/%d/%d'%(show.url(), season_number, episode_number)
|
2018-03-02 09:59:44 +00:00
|
|
|
|
|
|
|
if 'url' in ctx:
|
|
|
|
return ctx
|
|
|
|
|
2017-12-15 11:33:01 +00:00
|
|
|
episode = get_object_or_404(Episode, show=show,season__number=season,episode=episode)
|
2017-11-10 15:21:21 +00:00
|
|
|
|
2017-11-11 13:33:27 +00:00
|
|
|
# I acknowledge that this is a mess. A functional mess. But a mess nonetheless. Hey, that rhymed!
|
2017-11-11 08:03:06 +00:00
|
|
|
submissions = episode.submissions.annotate(
|
|
|
|
positives=Count(
|
|
|
|
Case(
|
|
|
|
When(
|
|
|
|
votes__positive=True,
|
|
|
|
then=Value(1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
),
|
|
|
|
negatives=Count('votes') - F('positives'),
|
|
|
|
score=F('positives') - F('negatives')
|
2017-12-28 15:34:58 +00:00
|
|
|
).order_by('-pinned', '-score')
|
2017-11-10 15:21:21 +00:00
|
|
|
|
2017-11-11 08:03:06 +00:00
|
|
|
# Add fields to context
|
|
|
|
ctx['show'] = show
|
|
|
|
ctx['episode'] = episode
|
|
|
|
ctx['submissions'] = submissions
|
2017-12-29 14:22:58 +00:00
|
|
|
ctx['highlight'] = highlight
|
2018-03-02 09:59:44 +00:00
|
|
|
ctx['has_previous'] = episode_number > 1 or season_number > 1
|
|
|
|
ctx['has_next'] = episode_number < int(lastep.episode) or season_number < season_count
|
2017-11-10 15:21:21 +00:00
|
|
|
|
2017-11-10 13:55:39 +00:00
|
|
|
return ctx
|
2017-11-11 09:24:39 +00:00
|
|
|
|
2018-03-02 09:59:44 +00:00
|
|
|
def render_to_response(self, context):
|
|
|
|
if 'url' in context:
|
|
|
|
return redirect(context['url'])
|
|
|
|
|
|
|
|
return super(EpisodeView, self).render_to_response(context)
|
|
|
|
|
2017-12-29 14:27:26 +00:00
|
|
|
def EpisodeFindSubmission(req, abbr, submission):
|
|
|
|
show = get_object_or_404(Show, abbr=abbr)
|
|
|
|
submission = int(submission)
|
|
|
|
|
|
|
|
episode = get_object_or_404(Episode, submissions__id=submission)
|
|
|
|
|
2018-03-02 13:46:25 +00:00
|
|
|
return HttpResponseRedirect('%s/episode/%d/%d?submission=%d'%(show.url(), episode.season.number, episode.episode, submission))
|
2017-12-29 14:27:26 +00:00
|
|
|
|
2017-11-11 12:57:52 +00:00
|
|
|
# Submission form GET and POST
|
2017-11-13 17:42:10 +00:00
|
|
|
@login_required
|
2017-12-15 11:33:01 +00:00
|
|
|
def SubmissionForm(req, abbr, season, episode):
|
|
|
|
show = get_object_or_404(Show, abbr=abbr)
|
|
|
|
episode = get_object_or_404(Episode, show=show,season__number=season,episode=episode)
|
2017-11-13 17:42:10 +00:00
|
|
|
user = req.user
|
2017-11-11 12:57:52 +00:00
|
|
|
|
|
|
|
form = forms.SubmissionForm()
|
|
|
|
|
|
|
|
# Request context
|
|
|
|
ctx = {
|
|
|
|
'form': form,
|
|
|
|
'show': show,
|
2018-03-02 13:46:25 +00:00
|
|
|
'episode': episode
|
2017-11-11 12:57:52 +00:00
|
|
|
}
|
|
|
|
|
2017-12-27 15:01:39 +00:00
|
|
|
# Get bans for this user regarding this show
|
|
|
|
bans = Ban.objects.filter(Q(scope=show) | Q(site_wide=True), Q(expiration__gte=datetime.datetime.now()) | Q(permanent=True), user=user)
|
|
|
|
|
|
|
|
if bans.count() > 0:
|
|
|
|
return HttpResponseForbidden('You are banned from submitting links to this show.<br>Reason: %s'%(bans.first().reason))
|
|
|
|
|
2017-11-11 12:57:52 +00:00
|
|
|
# Handle POST
|
|
|
|
if req.method == 'POST':
|
|
|
|
form = forms.SubmissionForm(req.POST)
|
|
|
|
ctx['form'] = form
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
form_data = form.cleaned_data
|
|
|
|
|
|
|
|
# Check if the URL has already been submitted
|
|
|
|
if Submission.objects.filter(episode=episode,url=form_data['url']).count() > 0:
|
|
|
|
ctx['error'] = 'This URL has already been submitted!'
|
|
|
|
return render(req, "submit.html", ctx)
|
|
|
|
|
2017-12-27 15:01:39 +00:00
|
|
|
if not user.has_perm('LandingPage.can_moderate_show', show):
|
2017-12-15 11:33:01 +00:00
|
|
|
# Check if there has been a submission by this user for this episode within the last 24 hours
|
|
|
|
if Submission.objects.filter(user=user,episode=episode,timestamp__gte=datetime.datetime.now() - datetime.timedelta(hours=24)).count() > 0:
|
|
|
|
ctx['error'] = 'You can only submit one link for an episode in 24 hours!'
|
|
|
|
return render(req, "submit.html", ctx)
|
2017-11-11 12:57:52 +00:00
|
|
|
|
|
|
|
new_submission = form.save(commit=False)
|
|
|
|
new_submission.user = user
|
|
|
|
new_submission.episode = episode
|
|
|
|
new_submission.save()
|
|
|
|
|
2018-03-02 13:46:25 +00:00
|
|
|
return HttpResponseRedirect('%s/episode/%d/%d'%(show.url(), episode.season.number, episode.episode))
|
2017-11-11 12:57:52 +00:00
|
|
|
else:
|
|
|
|
ctx['error'] = 'Invalid fields!'
|
|
|
|
|
|
|
|
return render(req, "submit.html", ctx)
|
|
|
|
|
2017-12-15 11:33:01 +00:00
|
|
|
# Edit a submission - for moderators
|
2017-12-27 15:01:39 +00:00
|
|
|
@permission_required_or_403('LandingPage.can_moderate_show', (Show, 'abbr', 'abbr'), accept_global_perms=True)
|
2017-12-15 11:33:01 +00:00
|
|
|
def SubmissionModForm(req, abbr, submission):
|
|
|
|
show = get_object_or_404(Show, abbr=abbr)
|
|
|
|
submission = get_object_or_404(Submission, pk=submission)
|
|
|
|
episode = submission.episode
|
|
|
|
user = req.user
|
|
|
|
|
2017-12-28 15:41:02 +00:00
|
|
|
form = forms.SubmissionFormAdmin(instance=submission)
|
2017-12-15 11:33:01 +00:00
|
|
|
|
|
|
|
# Request context
|
|
|
|
ctx = {
|
|
|
|
'form': form,
|
|
|
|
'show': show,
|
2018-03-02 13:46:25 +00:00
|
|
|
'episode': episode
|
2017-12-15 11:33:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Handle POST
|
|
|
|
if req.method == 'POST':
|
|
|
|
if 'delete' in req.POST:
|
|
|
|
submission.delete()
|
2018-03-02 13:46:25 +00:00
|
|
|
return HttpResponseRedirect('%s/episode/%d/%d'%(show.url(), episode.season.number, episode.episode))
|
2017-12-15 11:33:01 +00:00
|
|
|
|
|
|
|
if 'delete_ban' in req.POST:
|
|
|
|
submission.delete()
|
2018-03-02 13:46:25 +00:00
|
|
|
return HttpResponseRedirect('%s/create_ban?user=%s'%(show.url(),submission.user.username))
|
2017-12-15 11:33:01 +00:00
|
|
|
|
2017-12-28 15:41:02 +00:00
|
|
|
form = forms.SubmissionFormAdmin(req.POST, instance=submission)
|
2017-12-15 11:33:01 +00:00
|
|
|
ctx['form'] = form
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
form_data = form.cleaned_data
|
|
|
|
form.save()
|
|
|
|
|
2018-03-02 13:46:25 +00:00
|
|
|
return HttpResponseRedirect('%s/episode/%d/%d'%(show.url(), episode.season.number, episode.episode))
|
2017-12-15 11:33:01 +00:00
|
|
|
else:
|
|
|
|
ctx['error'] = 'Invalid fields!'
|
|
|
|
|
|
|
|
return render(req, "submit_mod.html", ctx)
|
|
|
|
|
|
|
|
# Season form GET and POST
|
2017-12-27 15:01:39 +00:00
|
|
|
@permission_required_or_403('LandingPage.can_moderate_show', (Show, 'abbr', 'abbr'), accept_global_perms=True)
|
2017-12-15 11:33:01 +00:00
|
|
|
def SeasonSubmitForm(req, abbr):
|
|
|
|
show = get_object_or_404(Show, abbr=abbr)
|
|
|
|
user = req.user
|
|
|
|
|
|
|
|
form = forms.SeasonForm()
|
|
|
|
|
|
|
|
# Request context
|
|
|
|
ctx = {
|
|
|
|
'form': form,
|
2018-03-02 13:46:25 +00:00
|
|
|
'show': show
|
2017-12-15 11:33:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Handle POST
|
|
|
|
if req.method == 'POST':
|
|
|
|
form = forms.SeasonForm(req.POST)
|
|
|
|
ctx['form'] = form
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
form_data = form.cleaned_data
|
|
|
|
|
|
|
|
# Check if the URL has already been submitted
|
|
|
|
if Season.objects.filter(show=show,number=form_data['number']).count() > 0:
|
|
|
|
ctx['error'] = 'This season has already been submitted!'
|
|
|
|
return render(req, "season_add.html", ctx)
|
|
|
|
|
|
|
|
new_season = form.save(commit=False)
|
|
|
|
new_season.show = show
|
|
|
|
new_season.save()
|
|
|
|
|
2018-03-02 13:46:25 +00:00
|
|
|
return HttpResponseRedirect(show.url())
|
2017-12-15 11:33:01 +00:00
|
|
|
else:
|
|
|
|
ctx['error'] = 'Invalid fields!'
|
|
|
|
|
|
|
|
return render(req, "season_add.html", ctx)
|
|
|
|
|
|
|
|
# Episode form GET and POST
|
2017-12-27 15:01:39 +00:00
|
|
|
@permission_required_or_403('LandingPage.can_moderate_show', (Show, 'abbr', 'abbr'), accept_global_perms=True)
|
2017-12-15 11:33:01 +00:00
|
|
|
def EpisodeSubmitForm(req, abbr, season):
|
|
|
|
show = get_object_or_404(Show, abbr=abbr)
|
|
|
|
season = get_object_or_404(Season, show=show,number=season)
|
|
|
|
user = req.user
|
|
|
|
|
|
|
|
form = forms.EpisodeForm()
|
|
|
|
|
|
|
|
# Request context
|
|
|
|
ctx = {
|
|
|
|
'form': form,
|
|
|
|
'season': season,
|
2018-03-02 13:46:25 +00:00
|
|
|
'show': show
|
2017-12-15 11:33:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Handle POST
|
|
|
|
if req.method == 'POST':
|
|
|
|
form = forms.EpisodeForm(req.POST)
|
|
|
|
ctx['form'] = form
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
form_data = form.cleaned_data
|
|
|
|
|
|
|
|
# Check if the URL has already been submitted
|
|
|
|
if Episode.objects.filter(show=show,episode=form_data['episode'],season=season).count() > 0:
|
|
|
|
ctx['error'] = 'This episode has already been submitted!'
|
|
|
|
return render(req, "episode_add.html", ctx)
|
|
|
|
|
|
|
|
new_episode = form.save(commit=False)
|
|
|
|
new_episode.show = show
|
|
|
|
new_episode.season = season
|
|
|
|
new_episode.save()
|
|
|
|
|
2018-03-02 13:46:25 +00:00
|
|
|
return HttpResponseRedirect(show.url())
|
2017-12-15 11:33:01 +00:00
|
|
|
else:
|
|
|
|
ctx['error'] = 'Invalid fields!'
|
|
|
|
|
|
|
|
return render(req, "episode_add.html", ctx)
|
|
|
|
|
2017-11-11 09:24:39 +00:00
|
|
|
# Vote request
|
|
|
|
# /show/{{abbr}}/vote/{{submission id}}/{{positive == 1}}
|
2017-11-13 17:42:10 +00:00
|
|
|
class SubmissionVoteSubmit(LoginRequiredMixin, View):
|
2017-12-15 11:33:01 +00:00
|
|
|
def post (self, req, abbr, subid, positive):
|
2017-11-11 09:26:26 +00:00
|
|
|
# Convert positive parameter into a boolean
|
|
|
|
pos_bool = int(positive) == 1
|
|
|
|
|
2017-11-13 17:42:10 +00:00
|
|
|
user = req.user
|
2017-11-11 09:24:39 +00:00
|
|
|
|
|
|
|
# Get the submission from the database
|
2017-12-15 11:33:01 +00:00
|
|
|
submission = get_object_or_404(Submission, id=subid)
|
2017-11-11 09:24:39 +00:00
|
|
|
|
|
|
|
# Prevent voting for own submission
|
|
|
|
if submission.user == user:
|
2017-11-11 10:41:41 +00:00
|
|
|
return HttpResponse('<h1>Error</h1><p>You cannot vote for your own submission.</p>', status=400)
|
2017-11-11 09:24:39 +00:00
|
|
|
|
2017-12-27 15:01:39 +00:00
|
|
|
show = submission.episode.show
|
|
|
|
|
|
|
|
# Get bans for this user regarding this show
|
|
|
|
bans = Ban.objects.filter(Q(scope=show) | Q(site_wide=True), Q(expiration__gte=datetime.datetime.now()) | Q(permanent=True), user=user)
|
|
|
|
|
|
|
|
if bans.count() > 0:
|
|
|
|
return HttpResponseForbidden('You are banned from voting on this show.<br>Reason: %s'%(bans.first().reason))
|
|
|
|
|
2017-11-11 09:24:39 +00:00
|
|
|
# Allow changing a vote from positive to negative or vice-versa. Delete vote if its a re-vote
|
|
|
|
vote = submission.votes.filter(user=user,submission__id=submission.id).first()
|
|
|
|
if vote:
|
2017-11-11 09:26:26 +00:00
|
|
|
if not vote.positive == pos_bool:
|
|
|
|
vote.positive = pos_bool
|
2017-11-11 09:24:39 +00:00
|
|
|
vote.save()
|
|
|
|
else:
|
|
|
|
vote.delete()
|
|
|
|
else:
|
|
|
|
new_vote = SubmissionVote(
|
|
|
|
user=user,
|
|
|
|
submission=submission,
|
2017-11-11 09:26:26 +00:00
|
|
|
positive=pos_bool
|
2017-11-11 09:24:39 +00:00
|
|
|
)
|
|
|
|
new_vote.save()
|
|
|
|
|
2018-03-02 13:46:25 +00:00
|
|
|
return HttpResponseRedirect('%s/episode/%d/%d'%(show.url(), submission.episode.season.number, submission.episode.episode))
|
2017-11-11 09:24:39 +00:00
|
|
|
|
2017-12-27 15:01:39 +00:00
|
|
|
# Episode form GET and POST
|
|
|
|
@permission_required_or_403('LandingPage.can_create_show_ban', (Show, 'abbr', 'abbr'), accept_global_perms=True)
|
|
|
|
def BanFromShowForm(req, abbr):
|
|
|
|
show = get_object_or_404(Show, abbr=abbr)
|
|
|
|
user = req.user
|
|
|
|
|
|
|
|
banTarget = get_object_or_404(User, username=req.GET.get('user', None))
|
|
|
|
|
|
|
|
if banTarget == user:
|
|
|
|
return HttpResponseForbidden('You cannot ban yourself!')
|
|
|
|
|
|
|
|
if banTarget.is_staff:
|
|
|
|
return HttpResponseForbidden('You cannot ban a staff member!')
|
|
|
|
|
|
|
|
if banTarget.has_perm('LandingPage.can_moderate_show', show):
|
|
|
|
return HttpResponseForbidden('You cannot ban another moderator!')
|
|
|
|
|
|
|
|
form = forms.BanForm()
|
|
|
|
|
|
|
|
# Request context
|
|
|
|
ctx = {
|
|
|
|
'form': form,
|
|
|
|
'show': show,
|
2018-03-01 17:45:45 +00:00
|
|
|
'target': banTarget,
|
|
|
|
'showurl': get_show_url(abbr)
|
2017-12-27 15:01:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Handle POST
|
|
|
|
if req.method == 'POST':
|
|
|
|
form = forms.BanForm(req.POST)
|
|
|
|
ctx['form'] = form
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
form_data = form.cleaned_data
|
|
|
|
|
|
|
|
# Save
|
|
|
|
new_ban = form.save(commit=False)
|
|
|
|
|
|
|
|
if form_data['permanent']:
|
|
|
|
new_ban.expiration = datetime.datetime.now()
|
|
|
|
|
|
|
|
new_ban.site_wide = False
|
|
|
|
new_ban.user = banTarget
|
|
|
|
new_ban.admin = user
|
|
|
|
new_ban.save()
|
|
|
|
|
|
|
|
# Add show to scope
|
|
|
|
new_ban.scope.add(show)
|
|
|
|
|
2017-12-27 15:20:20 +00:00
|
|
|
# Delete all of the user's submissions for this show
|
|
|
|
if 'delete' in req.POST:
|
|
|
|
Submission.objects.filter(episode__show=show,user=banTarget).delete()
|
|
|
|
|
2018-03-02 13:46:25 +00:00
|
|
|
return HttpResponseRedirect(show.url())
|
2017-12-27 15:01:39 +00:00
|
|
|
else:
|
|
|
|
ctx['error'] = 'Invalid fields!'
|
|
|
|
|
|
|
|
return render(req, "create_ban.html", ctx)
|
2017-12-29 14:22:58 +00:00
|
|
|
|
|
|
|
@login_required
|
|
|
|
def ReportSubmission(req, abbr, submission):
|
|
|
|
show = get_object_or_404(Show, abbr=abbr)
|
|
|
|
submission = get_object_or_404(Submission, pk=submission,episode__show=show)
|
|
|
|
episode = submission.episode
|
|
|
|
user = req.user
|
|
|
|
|
|
|
|
form = forms.ReportForm()
|
|
|
|
|
|
|
|
# Get bans for this user regarding this show
|
|
|
|
bans = Ban.objects.filter(Q(expiration__gte=datetime.datetime.now()) | Q(permanent=True), user=user, site_wide=True)
|
|
|
|
|
|
|
|
if bans.count() > 0:
|
|
|
|
return HttpResponseForbidden('You are banned from the site and therefor not allowed to create reports.<br>Reason: %s'%(bans.first().reason))
|
|
|
|
|
|
|
|
# Request context
|
|
|
|
ctx = {
|
|
|
|
'form': form,
|
|
|
|
'show': show,
|
|
|
|
'episode': episode,
|
2018-03-01 17:45:45 +00:00
|
|
|
'submission': submission,
|
|
|
|
'showurl': get_show_url(abbr)
|
2017-12-29 14:22:58 +00:00
|
|
|
}
|
|
|
|
|
2018-03-02 13:46:25 +00:00
|
|
|
url = '%s/episode/%d/%d?submission=%s'%(show.url(), episode.season.number, episode.episode, submission.pk)
|
2018-03-01 13:48:20 +00:00
|
|
|
|
2017-12-29 14:22:58 +00:00
|
|
|
# Handle POST
|
|
|
|
if req.method == 'POST':
|
|
|
|
form = forms.ReportForm(req.POST)
|
|
|
|
ctx['form'] = form
|
|
|
|
|
|
|
|
if form.is_valid():
|
|
|
|
form_data = form.cleaned_data
|
|
|
|
|
2018-03-01 13:48:20 +00:00
|
|
|
if not user.has_perm('LandingPage.can_moderate_show', show):
|
|
|
|
# Check if there have been many reports by this user within the last 12 hours
|
|
|
|
if Report.objects.filter(user=user,timestamp__gte=datetime.datetime.now() - datetime.timedelta(hours=12)).count() > 5:
|
|
|
|
ctx['error'] = 'You\'ve created too many reports recently!'
|
|
|
|
return render(req, "report_reply.html", ctx)
|
|
|
|
|
|
|
|
if Report.objects.filter(url=url).count() > 1:
|
|
|
|
ctx['error'] = 'This submission has already been brought to our attention! Thank you for reporting.'
|
|
|
|
return render(req, "report_reply.html", ctx)
|
|
|
|
|
2017-12-29 14:22:58 +00:00
|
|
|
# Save
|
|
|
|
new_report = form.save(commit=False)
|
|
|
|
new_report.reporter = user
|
2018-03-01 13:48:20 +00:00
|
|
|
new_report.url = url
|
2017-12-29 14:22:58 +00:00
|
|
|
new_report.save()
|
|
|
|
|
2018-03-02 13:46:25 +00:00
|
|
|
return HttpResponseRedirect('%s/episode/%d/%d'%(show.url(), episode.season.number, episode.episode))
|
2017-12-29 14:22:58 +00:00
|
|
|
else:
|
|
|
|
ctx['error'] = 'Invalid fields!'
|
|
|
|
|
|
|
|
return render(req, "report.html", ctx)
|