1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 from datetime import date, datetime
6 from allauth.socialaccount.views import SignupView
8 from django.conf import settings
9 from django.contrib import auth
10 from django.contrib.auth.decorators import login_required
11 from django.contrib.auth.forms import AuthenticationForm
12 from django.core.cache import cache
13 from django.http import HttpResponse, HttpResponseRedirect
14 from django.shortcuts import render
15 from django.utils.http import urlquote_plus
16 from django.utils.translation import ugettext_lazy as _
17 from django.views.decorators.cache import never_cache
19 from ajaxable.utils import AjaxableFormView
20 from ajaxable.utils import placeholdized
21 from catalogue.models import Book, Collection, Tag, Fragment
23 from social.utils import get_or_choose_cite
24 from wolnelektury.forms import RegistrationForm, SocialSignupForm
28 def main_page(request):
30 'last_published': Book.objects.exclude(cover_thumb='').filter(findable=True, parent=None).order_by('-created_at')[:6],
34 # FIXME: find this theme and books properly.
35 if Fragment.objects.exists():
37 ctx['theme'] = Tag.objects.filter(category='theme').order_by('?')[:1][0]
38 tf = Fragment.tagged.with_any([ctx['theme']]).select_related('book').filter(book__findable=True).order_by('?')[:100]
41 ctx['theme_fragment'] = tf[0]
43 if f.book not in ctx['theme_books']:
44 ctx['theme_books'].append(f.book)
45 if len(ctx['theme_books']) == 3:
49 # Choose collections for main.
50 ctx['collections'] = Collection.objects.filter(listed=True).order_by('?')[:4]
54 for recommended in Collection.objects.filter(listed=True, role='recommend').order_by('?'):
55 books = list(recommended.get_books().exclude(id__in=[b.id for b in best]).order_by('?')[:best_places])
57 best_places -= len(books)
63 Book.objects.filter(findable=True).exclude(id__in=[b.id for b in best]).order_by('?')[:best_places]
68 return render(request, "main_page.html", ctx)
71 class LoginFormView(AjaxableFormView):
72 form_class = AuthenticationForm
73 template = "auth/login.html"
79 def __call__(self, request):
80 if request.user.is_authenticated:
81 return self.redirect_or_refresh(
83 message=_('Already logged in as user %(user)s', ) % {'user': request.user.username})
84 return super(LoginFormView, self).__call__(request)
86 def success(self, form, request):
87 auth.login(request, form.get_user())
90 class RegisterFormView(AjaxableFormView):
91 form_class = RegistrationForm
92 template = "auth/register.html"
95 submit = _('Register')
97 form_prefix = 'register'
100 def __call__(self, request):
101 if request.user.is_authenticated:
102 return self.redirect_or_refresh(
104 message=_('Already logged in as user %(user)s', ) % {'user': request.user.username})
105 return super(RegisterFormView, self).__call__(request)
107 def success(self, form, request):
109 user = auth.authenticate(
110 username=form.cleaned_data['username'],
111 password=form.cleaned_data['password1']
113 auth.login(request, user)
116 class LoginRegisterFormView(LoginFormView):
117 template = 'auth/login_register.html'
118 title = _('You have to be logged in to continue')
120 def extra_context(self, request, obj):
122 "register_form": placeholdized(RegistrationForm(prefix='register')),
123 "register_submit": _('Register'),
128 def logout_then_redirect(request):
130 return HttpResponseRedirect(urlquote_plus(request.GET.get('next', '/'), safe='/?='))
135 """ Provides server UTC time for jquery.countdown,
136 in a format suitable for Date.parse()
138 return HttpResponse(datetime.utcnow().strftime('%Y/%m/%d %H:%M:%S UTC'))
141 def publish_plan(request):
142 cache_key = "publish_plan"
143 plan = cache.get(cache_key)
148 feed = feedparser.parse(settings.PUBLISH_PLAN_FEED)
152 for i in range(len(feed['entries'])):
154 'title': feed['entries'][i].title,
155 'link': feed['entries'][i].link,
157 cache.set(cache_key, plan, 1800)
159 return render(request, "publish_plan.html", {'plan': plan})
163 def user_settings(request):
164 return render(request, "user.html")
168 return render(request, 'widget.html')
171 class SocialSignupView(SignupView):
172 form_class = SocialSignupForm
175 def exception_test(request):
176 msg = request.GET.get('msg')
178 raise Exception('Exception test: %s' % msg)
180 raise Exception('Exception test')
183 def post_test(request):
184 return render(request, 'post_test.html', {'action': '/api/reading/jego-zasady/complete/'})