2017-05-09 21:42:01 +00:00
|
|
|
# -*- coding:utf-8 -*
|
|
|
|
#
|
|
|
|
# Copyright 2017
|
|
|
|
# - Skia <skia@libskia.so>
|
|
|
|
#
|
|
|
|
# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM,
|
|
|
|
# http://ae.utbm.fr.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify it under
|
|
|
|
# the terms of the GNU General Public License a 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 General Public License for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple
|
|
|
|
# Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2017-07-30 09:51:36 +00:00
|
|
|
from django.http import Http404, HttpResponseRedirect
|
2017-06-12 08:10:52 +00:00
|
|
|
from django.shortcuts import get_object_or_404, redirect
|
2017-05-10 17:14:52 +00:00
|
|
|
from django.core.urlresolvers import reverse_lazy, reverse
|
2017-06-12 08:10:52 +00:00
|
|
|
from django.views.generic import DetailView, RedirectView, TemplateView
|
2017-06-13 08:48:04 +00:00
|
|
|
from django.views.generic.edit import UpdateView, CreateView, DeleteView
|
2017-05-09 21:42:01 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from django import forms
|
2017-05-12 16:30:06 +00:00
|
|
|
from django.conf import settings
|
2017-05-10 17:14:52 +00:00
|
|
|
from django.forms.models import modelform_factory
|
2017-05-09 21:42:01 +00:00
|
|
|
|
2017-07-05 19:40:45 +00:00
|
|
|
from ajax_select.fields import AutoCompleteSelectField
|
|
|
|
|
2017-05-11 16:33:45 +00:00
|
|
|
from datetime import date
|
|
|
|
|
2017-06-12 21:52:59 +00:00
|
|
|
from trombi.models import Trombi, TrombiUser, TrombiComment, TrombiClubMembership
|
2017-06-12 08:10:52 +00:00
|
|
|
from core.views.forms import SelectDate
|
2017-06-13 09:45:06 +00:00
|
|
|
from core.views import CanViewMixin, CanEditMixin, CanEditPropMixin, TabedViewMixin, CanCreateMixin, QuickNotifMixin
|
2017-05-09 21:42:01 +00:00
|
|
|
from core.models import User
|
|
|
|
from club.models import Club
|
|
|
|
|
2017-06-12 08:10:52 +00:00
|
|
|
|
2017-06-12 22:23:56 +00:00
|
|
|
class TrombiTabsMixin(TabedViewMixin):
|
|
|
|
def get_tabs_title(self):
|
|
|
|
return _("Trombi")
|
|
|
|
|
|
|
|
def get_list_of_tabs(self):
|
|
|
|
tab_list = []
|
|
|
|
tab_list.append({
|
2017-06-12 08:10:52 +00:00
|
|
|
'url': reverse('trombi:user_tools'),
|
|
|
|
'slug': 'tools',
|
2017-06-12 22:23:56 +00:00
|
|
|
'name': _("Tools"),
|
2017-06-12 08:10:52 +00:00
|
|
|
})
|
2017-06-12 22:23:56 +00:00
|
|
|
tab_list.append({
|
2017-06-12 08:10:52 +00:00
|
|
|
'url': reverse('trombi:profile'),
|
|
|
|
'slug': 'profile',
|
2017-06-12 22:23:56 +00:00
|
|
|
'name': _("My profile"),
|
2017-06-12 08:10:52 +00:00
|
|
|
})
|
2017-06-12 22:23:56 +00:00
|
|
|
tab_list.append({
|
2017-06-12 08:10:52 +00:00
|
|
|
'url': reverse('trombi:pictures'),
|
|
|
|
'slug': 'pictures',
|
2017-06-12 22:23:56 +00:00
|
|
|
'name': _("My pictures"),
|
2017-06-12 08:10:52 +00:00
|
|
|
})
|
2017-06-12 22:23:56 +00:00
|
|
|
try:
|
|
|
|
trombi = self.request.user.trombi_user.trombi
|
|
|
|
if self.request.user.is_owner(trombi):
|
|
|
|
tab_list.append({
|
2017-06-12 08:10:52 +00:00
|
|
|
'url': reverse('trombi:detail', kwargs={'trombi_id': trombi.id}),
|
|
|
|
'slug': 'admin_tools',
|
|
|
|
'name': _("Admin tools"),
|
|
|
|
})
|
|
|
|
except:
|
|
|
|
pass
|
2017-06-12 22:23:56 +00:00
|
|
|
return tab_list
|
|
|
|
|
2017-06-12 08:10:52 +00:00
|
|
|
|
2017-05-10 20:17:05 +00:00
|
|
|
class TrombiForm(forms.ModelForm):
|
2017-05-09 21:42:01 +00:00
|
|
|
class Meta:
|
2017-05-10 20:17:05 +00:00
|
|
|
model = Trombi
|
2017-05-12 08:25:26 +00:00
|
|
|
fields = ['subscription_deadline', 'comments_deadline', 'max_chars', 'show_profiles']
|
2017-05-09 21:42:01 +00:00
|
|
|
widgets = {
|
2017-06-12 08:10:52 +00:00
|
|
|
'subscription_deadline': SelectDate,
|
|
|
|
'comments_deadline': SelectDate,
|
|
|
|
}
|
|
|
|
|
2017-05-09 21:42:01 +00:00
|
|
|
|
2017-06-13 08:55:12 +00:00
|
|
|
class TrombiCreateView(CanCreateMixin, CreateView):
|
2017-05-09 21:42:01 +00:00
|
|
|
"""
|
2017-05-10 20:17:05 +00:00
|
|
|
Create a trombi for a club
|
2017-05-09 21:42:01 +00:00
|
|
|
"""
|
2017-05-10 20:17:05 +00:00
|
|
|
model = Trombi
|
|
|
|
form_class = TrombiForm
|
2017-05-09 21:42:01 +00:00
|
|
|
template_name = 'core/create.jinja'
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Affect club
|
|
|
|
"""
|
|
|
|
form = self.get_form()
|
|
|
|
if form.is_valid():
|
|
|
|
club = get_object_or_404(Club, id=self.kwargs['club_id'])
|
|
|
|
form.instance.club = club
|
|
|
|
ret = self.form_valid(form)
|
|
|
|
return ret
|
|
|
|
else:
|
|
|
|
return self.form_invalid(form)
|
|
|
|
|
2017-06-12 08:10:52 +00:00
|
|
|
|
2017-06-12 22:23:56 +00:00
|
|
|
class TrombiEditView(CanEditPropMixin, TrombiTabsMixin, UpdateView):
|
2017-05-10 20:17:05 +00:00
|
|
|
model = Trombi
|
|
|
|
form_class = TrombiForm
|
2017-05-09 21:42:01 +00:00
|
|
|
template_name = 'core/edit.jinja'
|
2017-05-10 20:17:05 +00:00
|
|
|
pk_url_kwarg = 'trombi_id'
|
2017-06-12 22:23:56 +00:00
|
|
|
current_tab = "admin_tools"
|
2017-05-09 21:42:01 +00:00
|
|
|
|
2017-05-10 21:30:20 +00:00
|
|
|
def get_success_url(self):
|
2017-06-12 08:10:52 +00:00
|
|
|
return super(TrombiEditView, self).get_success_url() + "?qn_success"
|
|
|
|
|
2017-05-10 21:30:20 +00:00
|
|
|
|
2017-07-05 19:40:45 +00:00
|
|
|
class AddUserForm(forms.Form):
|
|
|
|
user = AutoCompleteSelectField('users', required=True, label=_("Select user"), help_text=None)
|
|
|
|
|
2017-06-12 22:23:56 +00:00
|
|
|
class TrombiDetailView(CanEditMixin, QuickNotifMixin, TrombiTabsMixin, DetailView):
|
2017-05-10 20:17:05 +00:00
|
|
|
model = Trombi
|
|
|
|
template_name = 'trombi/detail.jinja'
|
|
|
|
pk_url_kwarg = 'trombi_id'
|
2017-06-12 22:23:56 +00:00
|
|
|
current_tab = "admin_tools"
|
2017-05-09 21:42:01 +00:00
|
|
|
|
2017-07-05 19:40:45 +00:00
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
form = AddUserForm(request.POST)
|
|
|
|
if form.is_valid():
|
|
|
|
try:
|
|
|
|
TrombiUser(user=form.cleaned_data['user'], trombi=self.object).save()
|
2017-07-05 19:54:32 +00:00
|
|
|
self.quick_notif_list.append("qn_success")
|
|
|
|
except: # We don't care about duplicate keys
|
|
|
|
self.quick_notif_list.append("qn_fail")
|
2017-07-05 19:40:45 +00:00
|
|
|
return super(TrombiDetailView, self).get(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(TrombiDetailView, self).get_context_data(**kwargs)
|
|
|
|
kwargs['form'] = AddUserForm()
|
|
|
|
return kwargs
|
|
|
|
|
2017-08-01 09:12:21 +00:00
|
|
|
class TrombiExportView(CanEditMixin, TrombiTabsMixin, DetailView):
|
|
|
|
model = Trombi
|
|
|
|
template_name = 'trombi/export.jinja'
|
|
|
|
pk_url_kwarg = 'trombi_id'
|
|
|
|
current_tab = "admin_tools"
|
2017-06-12 08:10:52 +00:00
|
|
|
|
2017-06-12 22:35:49 +00:00
|
|
|
class TrombiDeleteUserView(CanEditPropMixin, TrombiTabsMixin, DeleteView):
|
|
|
|
model = TrombiUser
|
|
|
|
pk_url_kwarg = 'user_id'
|
|
|
|
template_name = 'core/delete_confirm.jinja'
|
|
|
|
current_tab = "admin_tools"
|
2017-05-09 21:42:01 +00:00
|
|
|
|
2017-06-12 22:35:49 +00:00
|
|
|
def get_success_url(self):
|
|
|
|
return reverse('trombi:detail', kwargs={'trombi_id': self.object.trombi.id}) + "?qn_success"
|
2017-05-09 21:42:01 +00:00
|
|
|
|
2017-06-12 08:10:52 +00:00
|
|
|
|
2017-06-12 22:23:56 +00:00
|
|
|
class TrombiModerateCommentsView(CanEditPropMixin, QuickNotifMixin, TrombiTabsMixin, DetailView):
|
2017-05-12 16:30:06 +00:00
|
|
|
model = Trombi
|
|
|
|
template_name = 'trombi/comment_moderation.jinja'
|
|
|
|
pk_url_kwarg = 'trombi_id'
|
2017-06-12 22:23:56 +00:00
|
|
|
current_tab = "admin_tools"
|
2017-05-12 16:30:06 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(TrombiModerateCommentsView, self).get_context_data(**kwargs)
|
|
|
|
kwargs['comments'] = TrombiComment.objects.filter(is_moderated=False,
|
2017-06-12 08:10:52 +00:00
|
|
|
author__trombi__id=self.object.id).exclude(target__user__id=self.request.user.id)
|
2017-05-12 16:30:06 +00:00
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 08:10:52 +00:00
|
|
|
|
2017-05-12 16:30:06 +00:00
|
|
|
class TrombiModerateForm(forms.Form):
|
|
|
|
reason = forms.CharField(help_text=_("Explain why you rejected the comment"))
|
|
|
|
action = forms.CharField(initial="delete", widget=forms.widgets.HiddenInput)
|
|
|
|
|
2017-06-12 08:10:52 +00:00
|
|
|
|
2017-05-12 16:30:06 +00:00
|
|
|
class TrombiModerateCommentView(DetailView):
|
|
|
|
model = TrombiComment
|
|
|
|
template_name = 'core/edit.jinja'
|
|
|
|
pk_url_kwarg = 'comment_id'
|
|
|
|
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
if not request.user.is_owner(self.object.author.trombi):
|
|
|
|
raise Http404()
|
|
|
|
return super(TrombiModerateCommentView, self).dispatch(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
if "action" in request.POST:
|
|
|
|
if request.POST['action'] == "accept":
|
|
|
|
self.object.is_moderated = True
|
|
|
|
self.object.save()
|
2017-06-12 08:10:52 +00:00
|
|
|
return redirect(reverse('trombi:moderate_comments', kwargs={'trombi_id': self.object.author.trombi.id}) + "?qn_success")
|
2017-05-12 16:30:06 +00:00
|
|
|
elif request.POST['action'] == "reject":
|
|
|
|
return super(TrombiModerateCommentView, self).get(request, *args, **kwargs)
|
|
|
|
elif request.POST['action'] == "delete" and "reason" in request.POST.keys():
|
|
|
|
self.object.author.user.email_user(
|
2017-06-12 08:10:52 +00:00
|
|
|
subject="[%s] %s" % (settings.SITH_NAME, _("Rejected comment")),
|
|
|
|
message=_("Your comment to %(target)s on the Trombi \"%(trombi)s\" was rejected for the following "
|
|
|
|
"reason: %(reason)s\n\n"
|
|
|
|
"Your comment was:\n\n%(content)s"
|
|
|
|
) % {
|
|
|
|
'target': self.object.target.user.get_display_name(),
|
|
|
|
'trombi': self.object.author.trombi,
|
|
|
|
'reason': request.POST["reason"],
|
|
|
|
'content': self.object.content,
|
|
|
|
},
|
|
|
|
)
|
2017-05-12 16:30:06 +00:00
|
|
|
self.object.delete()
|
2017-06-12 08:10:52 +00:00
|
|
|
return redirect(reverse('trombi:moderate_comments', kwargs={'trombi_id': self.object.author.trombi.id}) + "?qn_success")
|
2017-05-12 16:30:06 +00:00
|
|
|
raise Http404
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(TrombiModerateCommentView, self).get_context_data(**kwargs)
|
|
|
|
kwargs['form'] = TrombiModerateForm()
|
|
|
|
return kwargs
|
|
|
|
|
2017-05-09 21:42:01 +00:00
|
|
|
# User side
|
2017-06-12 08:10:52 +00:00
|
|
|
|
|
|
|
|
2017-05-11 16:33:45 +00:00
|
|
|
class TrombiModelChoiceField(forms.ModelChoiceField):
|
|
|
|
def label_from_instance(self, obj):
|
|
|
|
return _("%(name)s (deadline: %(date)s)") % {'name': str(obj), 'date': str(obj.subscription_deadline)}
|
|
|
|
|
2017-06-12 08:10:52 +00:00
|
|
|
|
2017-05-10 20:17:05 +00:00
|
|
|
class UserTrombiForm(forms.Form):
|
2017-05-11 16:33:45 +00:00
|
|
|
trombi = TrombiModelChoiceField(Trombi.availables.all(), required=False, label=_("Select trombi"),
|
2017-06-12 08:10:52 +00:00
|
|
|
help_text=_("This allows you to subscribe to a Trombi. "
|
|
|
|
"Be aware that you can subscribe only once, so don't play with that, "
|
|
|
|
"or you will expose yourself to the admins' wrath!"))
|
|
|
|
|
2017-05-09 21:42:01 +00:00
|
|
|
|
2017-06-12 22:23:56 +00:00
|
|
|
class UserTrombiToolsView(QuickNotifMixin, TrombiTabsMixin, TemplateView):
|
2017-05-09 21:42:01 +00:00
|
|
|
"""
|
2017-05-10 20:17:05 +00:00
|
|
|
Display a user's trombi tools
|
2017-05-09 21:42:01 +00:00
|
|
|
"""
|
2017-05-10 20:17:05 +00:00
|
|
|
template_name = "trombi/user_tools.jinja"
|
2017-06-12 22:23:56 +00:00
|
|
|
current_tab = "tools"
|
2017-05-09 21:42:01 +00:00
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
2017-05-10 20:17:05 +00:00
|
|
|
self.form = UserTrombiForm(request.POST)
|
2017-05-09 21:42:01 +00:00
|
|
|
if self.form.is_valid():
|
2017-05-10 20:17:05 +00:00
|
|
|
trombi_user = TrombiUser(user=request.user,
|
2017-06-12 08:10:52 +00:00
|
|
|
trombi=self.form.cleaned_data['trombi'])
|
2017-05-10 20:17:05 +00:00
|
|
|
trombi_user.save()
|
2017-05-09 21:42:01 +00:00
|
|
|
self.quick_notif_list += ['qn_success']
|
2017-05-10 20:17:05 +00:00
|
|
|
return super(UserTrombiToolsView, self).get(request, *args, **kwargs)
|
2017-05-09 21:42:01 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2017-05-10 20:17:05 +00:00
|
|
|
kwargs = super(UserTrombiToolsView, self).get_context_data(**kwargs)
|
2017-05-09 21:42:01 +00:00
|
|
|
kwargs['user'] = self.request.user
|
2017-05-10 20:17:05 +00:00
|
|
|
if not hasattr(self.request.user, 'trombi_user'):
|
|
|
|
kwargs['subscribe_form'] = UserTrombiForm()
|
2017-05-11 16:33:45 +00:00
|
|
|
else:
|
|
|
|
kwargs['trombi'] = self.request.user.trombi_user.trombi
|
|
|
|
kwargs['date'] = date
|
2017-05-09 21:42:01 +00:00
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 08:10:52 +00:00
|
|
|
|
2017-06-12 22:23:56 +00:00
|
|
|
class UserTrombiEditPicturesView(TrombiTabsMixin, UpdateView):
|
2017-05-10 21:03:49 +00:00
|
|
|
model = TrombiUser
|
|
|
|
fields = ['profile_pict', 'scrub_pict']
|
|
|
|
template_name = "core/edit.jinja"
|
2017-06-12 22:23:56 +00:00
|
|
|
current_tab = "pictures"
|
2017-05-10 21:03:49 +00:00
|
|
|
|
|
|
|
def get_object(self):
|
|
|
|
return self.request.user.trombi_user
|
|
|
|
|
|
|
|
def get_success_url(self):
|
2017-06-12 08:10:52 +00:00
|
|
|
return reverse('trombi:user_tools') + "?qn_success"
|
|
|
|
|
2017-05-10 21:03:49 +00:00
|
|
|
|
2017-06-12 22:23:56 +00:00
|
|
|
class UserTrombiEditProfileView(QuickNotifMixin, TrombiTabsMixin, UpdateView):
|
2017-05-10 19:59:22 +00:00
|
|
|
model = User
|
|
|
|
form_class = modelform_factory(User,
|
2017-06-12 08:10:52 +00:00
|
|
|
fields=['second_email', 'phone', 'department', 'dpt_option',
|
|
|
|
'quote', 'parent_address'],
|
2017-06-13 08:48:04 +00:00
|
|
|
labels={
|
|
|
|
'second_email': _("Personal email (not UTBM)"),
|
|
|
|
'phone': _("Phone"),
|
|
|
|
'parent_address': _("Native town"),
|
|
|
|
})
|
2017-06-12 21:52:59 +00:00
|
|
|
template_name = "trombi/edit_profile.jinja"
|
2017-06-12 22:23:56 +00:00
|
|
|
current_tab = "profile"
|
2017-05-10 19:59:22 +00:00
|
|
|
|
|
|
|
def get_object(self):
|
|
|
|
return self.request.user
|
|
|
|
|
2017-05-10 21:03:49 +00:00
|
|
|
def get_success_url(self):
|
2017-06-12 08:10:52 +00:00
|
|
|
return reverse('trombi:user_tools') + "?qn_success"
|
|
|
|
|
2017-05-10 21:03:49 +00:00
|
|
|
|
2017-06-12 21:52:59 +00:00
|
|
|
class UserTrombiResetClubMembershipsView(RedirectView):
|
|
|
|
permanent = False
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
user = self.request.user.trombi_user
|
|
|
|
user.make_memberships()
|
|
|
|
return redirect(self.get_success_url())
|
|
|
|
|
|
|
|
def get_success_url(self):
|
2017-06-12 08:10:52 +00:00
|
|
|
return reverse('trombi:profile') + "?qn_success"
|
|
|
|
|
2017-06-12 21:52:59 +00:00
|
|
|
|
2017-06-12 22:23:56 +00:00
|
|
|
class UserTrombiDeleteMembershipView(TrombiTabsMixin, CanEditMixin, DeleteView):
|
2017-06-12 21:52:59 +00:00
|
|
|
model = TrombiClubMembership
|
|
|
|
pk_url_kwarg = "membership_id"
|
|
|
|
template_name = "core/delete_confirm.jinja"
|
|
|
|
success_url = reverse_lazy('trombi:profile')
|
2017-06-12 22:23:56 +00:00
|
|
|
current_tab = "profile"
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return super(UserTrombiDeleteMembershipView, self).get_success_url() + "?qn_success"
|
2017-06-12 21:52:59 +00:00
|
|
|
|
2017-06-12 08:10:52 +00:00
|
|
|
|
2017-06-12 22:23:56 +00:00
|
|
|
class UserTrombiEditMembershipView(CanEditMixin, TrombiTabsMixin, UpdateView):
|
2017-06-12 21:52:59 +00:00
|
|
|
model = TrombiClubMembership
|
|
|
|
pk_url_kwarg = "membership_id"
|
|
|
|
fields = ['role', 'start', 'end']
|
|
|
|
template_name = "core/edit.jinja"
|
2017-06-12 22:23:56 +00:00
|
|
|
current_tab = "profile"
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return super(UserTrombiEditMembershipView, self).get_success_url() + "?qn_success"
|
|
|
|
|
2017-06-12 21:52:59 +00:00
|
|
|
|
2017-06-12 22:23:56 +00:00
|
|
|
class UserTrombiProfileView(TrombiTabsMixin, DetailView):
|
2017-05-12 08:25:26 +00:00
|
|
|
model = TrombiUser
|
|
|
|
pk_url_kwarg = "user_id"
|
|
|
|
template_name = "trombi/user_profile.jinja"
|
|
|
|
context_object_name = "trombi_user"
|
2017-06-12 22:23:56 +00:00
|
|
|
current_tab = "tools"
|
2017-05-12 08:25:26 +00:00
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
if (self.object.trombi.id != request.user.trombi_user.trombi.id or
|
|
|
|
self.object.user.id == request.user.id or
|
|
|
|
not self.object.trombi.show_profiles):
|
|
|
|
raise Http404()
|
|
|
|
return super(UserTrombiProfileView, self).get(request, *args, **kwargs)
|
|
|
|
|
2017-06-12 08:10:52 +00:00
|
|
|
|
2017-05-10 20:17:05 +00:00
|
|
|
class TrombiCommentFormView():
|
2017-05-10 17:14:52 +00:00
|
|
|
"""
|
2017-05-10 20:17:05 +00:00
|
|
|
Create/edit a trombi comment
|
2017-05-10 17:14:52 +00:00
|
|
|
"""
|
2017-05-10 20:17:05 +00:00
|
|
|
model = TrombiComment
|
2017-05-10 17:14:52 +00:00
|
|
|
fields = ['content']
|
2017-05-10 21:03:49 +00:00
|
|
|
template_name = 'trombi/comment.jinja'
|
2017-05-10 17:14:52 +00:00
|
|
|
|
|
|
|
def get_form_class(self):
|
2017-05-10 20:17:05 +00:00
|
|
|
self.trombi = self.request.user.trombi_user.trombi
|
2017-05-11 16:33:45 +00:00
|
|
|
if date.today() <= self.trombi.subscription_deadline:
|
|
|
|
raise Http404(_("You can not yet write comment, you must wait for "
|
2017-06-12 08:10:52 +00:00
|
|
|
"the subscription deadline to be passed."))
|
2017-05-11 16:33:45 +00:00
|
|
|
if self.trombi.comments_deadline < date.today():
|
|
|
|
raise Http404(_("You can not write comment anymore, the deadline is "
|
2017-06-12 08:10:52 +00:00
|
|
|
"already passed."))
|
2017-05-10 17:14:52 +00:00
|
|
|
return modelform_factory(self.model, fields=self.fields,
|
2017-06-12 08:10:52 +00:00
|
|
|
widgets={
|
|
|
|
'content': forms.widgets.Textarea(attrs={'maxlength': self.trombi.max_chars})
|
|
|
|
},
|
|
|
|
help_texts={
|
|
|
|
'content': _("Maximum characters: %(max_length)s") % {'max_length': self.trombi.max_chars}
|
|
|
|
})
|
2017-05-10 17:14:52 +00:00
|
|
|
|
|
|
|
def get_success_url(self):
|
2017-06-12 08:10:52 +00:00
|
|
|
return reverse('trombi:user_tools') + "?qn_success"
|
2017-05-10 17:14:52 +00:00
|
|
|
|
2017-05-10 21:03:49 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(TrombiCommentFormView, self).get_context_data(**kwargs)
|
|
|
|
if 'user_id' in self.kwargs.keys():
|
|
|
|
kwargs['target'] = get_object_or_404(TrombiUser, id=self.kwargs['user_id'])
|
|
|
|
else:
|
|
|
|
kwargs['target'] = self.object.target
|
|
|
|
return kwargs
|
2017-05-10 17:14:52 +00:00
|
|
|
|
2017-06-12 08:10:52 +00:00
|
|
|
|
2017-05-10 21:03:49 +00:00
|
|
|
class TrombiCommentCreateView(TrombiCommentFormView, CreateView):
|
2017-05-10 17:14:52 +00:00
|
|
|
def form_valid(self, form):
|
2017-05-10 20:17:05 +00:00
|
|
|
target = get_object_or_404(TrombiUser, id=self.kwargs['user_id'])
|
2017-07-30 09:51:36 +00:00
|
|
|
author = self.request.user.trombi_user
|
|
|
|
form.instance.author = author
|
2017-05-10 17:14:52 +00:00
|
|
|
form.instance.target = target
|
2017-07-30 09:51:36 +00:00
|
|
|
# Check that this combination does not already have a comment
|
|
|
|
old = TrombiComment.objects.filter(author=author, target=target).first()
|
|
|
|
if old:
|
|
|
|
old.content = form.instance.content
|
|
|
|
old.save()
|
|
|
|
return HttpResponseRedirect(self.get_success_url())
|
2017-05-10 20:17:05 +00:00
|
|
|
return super(TrombiCommentCreateView, self).form_valid(form)
|
2017-05-10 17:14:52 +00:00
|
|
|
|
2017-06-12 08:10:52 +00:00
|
|
|
|
2017-05-10 20:17:05 +00:00
|
|
|
class TrombiCommentEditView(TrombiCommentFormView, CanViewMixin, UpdateView):
|
2017-05-10 17:14:52 +00:00
|
|
|
pk_url_kwarg = "comment_id"
|
|
|
|
|
2017-06-11 21:16:35 +00:00
|
|
|
def form_valid(self, form):
|
|
|
|
form.instance.is_moderated = False
|
|
|
|
return super(TrombiCommentEditView, self).form_valid(form)
|