2015-03-09 00:54:05 +00:00
|
|
|
from conservancy.apps.blog.models import Entry, EntryTag # relative import
|
2015-03-03 18:40:18 +00:00
|
|
|
# from django.views.generic.list_detail import object_list
|
|
|
|
from django.views.generic import ListView
|
|
|
|
from django.views.generic.dates import YearArchiveView, MonthArchiveView, DayArchiveView, DateDetailView
|
2015-03-04 23:06:13 +00:00
|
|
|
from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger
|
2010-09-26 21:54:29 +00:00
|
|
|
from conservancy.apps.staff.models import Person
|
2017-11-03 15:58:24 +00:00
|
|
|
from django.shortcuts import get_object_or_404, render
|
2010-09-26 21:32:53 +00:00
|
|
|
from datetime import datetime
|
2021-11-26 02:00:20 +00:00
|
|
|
from functools import reduce
|
2010-09-26 21:32:53 +00:00
|
|
|
|
|
|
|
def OR_filter(field_name, objs):
|
|
|
|
from django.db.models import Q
|
|
|
|
return reduce(lambda x, y: x | y,
|
|
|
|
[Q(**{field_name: x.id}) for x in objs])
|
|
|
|
|
|
|
|
def last_name(person):
|
|
|
|
return person.formal_name.rpartition(' ')[2]
|
|
|
|
|
|
|
|
def custom_index(request, queryset, *args, **kwargs):
|
|
|
|
"""Blog list view that allows scrolling and also shows an index by
|
|
|
|
year.
|
|
|
|
"""
|
|
|
|
|
2017-02-03 16:02:33 +00:00
|
|
|
extra_context = kwargs.get('extra_context', {}).copy()
|
2010-09-26 21:32:53 +00:00
|
|
|
date_field = kwargs['date_field']
|
|
|
|
|
|
|
|
if not kwargs.get('allow_future', False):
|
|
|
|
queryset = queryset.filter(**{'%s__lte' % date_field: datetime.now()})
|
|
|
|
|
|
|
|
authors = []
|
|
|
|
if 'author' in request.GET:
|
|
|
|
authors = [get_object_or_404(Person, username=author)
|
|
|
|
for author in request.GET.getlist('author')]
|
|
|
|
extra_context['authors'] = authors
|
|
|
|
queryset = queryset.filter(OR_filter('author', authors))
|
|
|
|
|
|
|
|
tags = []
|
|
|
|
if 'tag' in request.GET:
|
|
|
|
tags = [get_object_or_404(EntryTag, slug=tag)
|
|
|
|
for tag in request.GET.getlist('tag')]
|
|
|
|
extra_context['tags'] = tags
|
|
|
|
queryset = queryset.filter(OR_filter('tags', tags))
|
|
|
|
|
|
|
|
if authors or tags:
|
|
|
|
query_string = '&'.join(['author=%s' % a.username for a in authors]
|
|
|
|
+ ['tag=%s' % t.slug for t in tags])
|
|
|
|
extra_context['query_string'] = query_string
|
|
|
|
|
|
|
|
else:
|
|
|
|
date_list = queryset.dates(date_field, 'year')
|
|
|
|
extra_context['date_list'] = date_list
|
|
|
|
|
2015-03-04 23:07:30 +00:00
|
|
|
paginate_by = kwargs.get('paginate_by', 6) # Show 6 news items per page, by default
|
2015-03-04 23:04:13 +00:00
|
|
|
paginator = Paginator(queryset, paginate_by)
|
|
|
|
page = request.GET.get('page')
|
|
|
|
|
|
|
|
try:
|
|
|
|
blog_entries = paginator.page(page)
|
|
|
|
except PageNotAnInteger:
|
|
|
|
# If page is not an integer, deliver first page.
|
|
|
|
blog_entries = paginator.page(1)
|
|
|
|
except EmptyPage:
|
|
|
|
# If page is out of range (e.g. 9999), deliver last page of results.
|
2017-02-03 15:31:51 +00:00
|
|
|
blog_entries = paginator.page(paginator.num_pages)
|
2015-03-04 23:04:13 +00:00
|
|
|
|
2015-03-04 23:25:50 +00:00
|
|
|
extra_context['blog_entries'] = blog_entries
|
2015-03-04 23:24:53 +00:00
|
|
|
|
2017-11-03 15:58:24 +00:00
|
|
|
return render(request, 'blog/entry_list.html', extra_context)
|
2015-03-04 23:04:13 +00:00
|
|
|
|
2010-09-26 21:32:53 +00:00
|
|
|
def techblog_redirect(request):
|
|
|
|
"""Redirect from the old 'techblog' to the new blog
|
|
|
|
"""
|
|
|
|
|
|
|
|
path = request.path[len('/technology'):]
|
|
|
|
if path == '/blog/':
|
|
|
|
path += "?author=bkuhn"
|
|
|
|
|
|
|
|
return relative_redirect(request, path)
|
|
|
|
|
|
|
|
def query(request):
|
|
|
|
"""Page to query the blog based on authors and tags
|
|
|
|
"""
|
|
|
|
|
|
|
|
if request.GET:
|
|
|
|
d = request.GET.copy()
|
|
|
|
if 'authors' in d.getlist('all'):
|
|
|
|
d.setlist('author', []) # remove author queries
|
|
|
|
if 'tags' in d.getlist('all'):
|
|
|
|
d.setlist('tag', []) # remove tag queries
|
|
|
|
d.setlist('all', []) # remove "all" from the query string
|
|
|
|
|
|
|
|
base_url = '/blog/'
|
|
|
|
if 'rss' in d:
|
|
|
|
base_url = '/feeds/blog/'
|
|
|
|
d.setlist('rss', []) # remove it
|
|
|
|
|
|
|
|
query_string = d.urlencode()
|
|
|
|
|
2023-09-07 13:15:48 +00:00
|
|
|
return relative_redirect(request, '{}{}{}'.format(base_url, '?' if query_string else '', query_string))
|
2010-09-26 21:32:53 +00:00
|
|
|
|
|
|
|
else:
|
|
|
|
authors = sorted(Person.objects.filter(currently_employed=True,
|
|
|
|
entry__isnull=False).distinct(),
|
|
|
|
key=last_name)
|
|
|
|
tags = EntryTag.objects.all().order_by('label')
|
2017-11-03 15:58:24 +00:00
|
|
|
return render(request, 'blog/query.html', {'authors': authors, 'tags': tags})
|
2010-09-26 21:32:53 +00:00
|
|
|
|
|
|
|
def relative_redirect(request, path):
|
|
|
|
from django import http
|
|
|
|
from django.conf import settings
|
|
|
|
|
2015-03-03 18:40:18 +00:00
|
|
|
host = request.get_host()
|
2010-09-26 21:32:53 +00:00
|
|
|
if settings.FORCE_CANONICAL_HOSTNAME:
|
|
|
|
host = settings.FORCE_CANONICAL_HOSTNAME
|
|
|
|
|
2023-09-07 13:15:48 +00:00
|
|
|
url = "{}://{}{}".format(request.is_secure() and 'https' or 'http', host, path)
|
2010-09-26 21:32:53 +00:00
|
|
|
return http.HttpResponseRedirect(url)
|
2015-03-03 18:40:18 +00:00
|
|
|
|
|
|
|
class BlogYearArchiveView(YearArchiveView):
|
|
|
|
make_object_list = True
|
|
|
|
allow_future = True
|
|
|
|
extra_context = {}
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2023-09-07 13:15:48 +00:00
|
|
|
context = super().get_context_data(**kwargs)
|
2015-03-03 18:40:18 +00:00
|
|
|
context.update(self.extra_context)
|
|
|
|
return context
|
|
|
|
|
|
|
|
class BlogMonthArchiveView(MonthArchiveView):
|
|
|
|
allow_future = True
|
|
|
|
extra_context = {}
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2023-09-07 13:15:48 +00:00
|
|
|
context = super().get_context_data(**kwargs)
|
2015-03-03 18:40:18 +00:00
|
|
|
context.update(self.extra_context)
|
|
|
|
return context
|
|
|
|
|
|
|
|
class BlogDayArchiveView(DayArchiveView):
|
|
|
|
allow_future = True
|
|
|
|
extra_context = {}
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2023-09-07 13:15:48 +00:00
|
|
|
context = super().get_context_data(**kwargs)
|
2015-03-03 18:40:18 +00:00
|
|
|
context.update(self.extra_context)
|
|
|
|
return context
|
|
|
|
|
|
|
|
class BlogDateDetailView(DateDetailView):
|
|
|
|
allow_future = True
|
|
|
|
extra_context = {}
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2023-09-07 13:15:48 +00:00
|
|
|
context = super().get_context_data(**kwargs)
|
2015-03-03 18:40:18 +00:00
|
|
|
context.update(self.extra_context)
|
|
|
|
return context
|