from django.contrib import auth
from django.contrib.auth.decorators import login_required
from django.contrib.auth.forms import AuthenticationForm
+from django.contrib.auth.views import LoginView
from django.core.cache import cache
+from django.views.generic import FormView
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts import render
from django.utils.translation import gettext_lazy as _
from ajaxable.utils import AjaxableFormView
from ajaxable.utils import placeholdized
from catalogue.models import Book, Collection, Tag, Fragment
-
+import club.models
from social.utils import get_or_choose_cite
-from wolnelektury.forms import RegistrationForm, SocialSignupForm
+from wolnelektury.forms import RegistrationForm, SocialSignupForm, WLAuthenticationForm
+
+def main_page_2022(request):
+ ctx = {}
+ ctx['last_published'] = Book.objects.exclude(cover_clean='').filter(findable=True, parent=None).order_by('-created_at')[:10]
+ ctx['recommended_collection'] = Collection.objects.filter(listed=True, role='recommend').order_by('?').first()
+ ctx['ambassadors'] = club.models.Ambassador.objects.all().order_by('?')
+ return render(request, '2022/main_page.html', ctx)
@never_cache
def main_page(request):
+ if request.EXPERIMENTS['layout'].value:
+ return main_page_2022(request)
+
ctx = {
'last_published': Book.objects.exclude(cover_thumb='').filter(findable=True, parent=None).order_by('-created_at')[:6],
'theme_books': [],
return render(request, "main_page.html", ctx)
+class WLLoginView(LoginView):
+ form_class = WLAuthenticationForm
+
+
+wl_login_view = WLLoginView.as_view()
+
+
class LoginFormView(AjaxableFormView):
form_class = AuthenticationForm
template = "auth/login.html"
ajax_redirect = True
def __call__(self, request):
+ if request.EXPERIMENTS['layout'].value:
+ return wl_login_view(request)
+
if request.user.is_authenticated:
return self.redirect_or_refresh(
request, '/',
auth.login(request, form.get_user())
+class WLRegisterView(FormView):
+ form_class = RegistrationForm
+ template_name = 'registration/register.html'
+
+wl_register_view = WLRegisterView.as_view()
+
+
class RegisterFormView(AjaxableFormView):
form_class = RegistrationForm
template = "auth/register.html"
honeypot = True
def __call__(self, request):
+ if request.EXPERIMENTS['layout'].value:
+ return wl_register_view(request)
+
if request.user.is_authenticated:
return self.redirect_or_refresh(
request, '/',