2015-11-24 15:09:46 +00:00
|
|
|
from django.shortcuts import render, redirect, get_object_or_404
|
|
|
|
from django.db import models
|
2016-08-19 00:53:44 +00:00
|
|
|
from django.http import JsonResponse
|
|
|
|
from django.core import serializers
|
|
|
|
from django.db.models import Q
|
|
|
|
from django.contrib.auth.decorators import login_required
|
2016-12-09 23:06:17 +00:00
|
|
|
from django.views.generic import ListView
|
2015-11-24 15:09:46 +00:00
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
import os
|
2016-08-19 00:53:44 +00:00
|
|
|
import json
|
|
|
|
from itertools import chain
|
|
|
|
|
2016-12-19 20:00:09 +00:00
|
|
|
from haystack.query import SearchQuerySet
|
|
|
|
|
2016-12-08 18:47:28 +00:00
|
|
|
from core.models import User, Notification
|
2016-08-19 00:53:44 +00:00
|
|
|
from club.models import Club
|
2016-08-10 03:48:06 +00:00
|
|
|
|
2015-11-24 15:09:46 +00:00
|
|
|
def index(request, context=None):
|
2016-08-19 00:53:44 +00:00
|
|
|
return render(request, "core/index.jinja")
|
|
|
|
|
2016-12-09 23:06:17 +00:00
|
|
|
class NotificationList(ListView):
|
|
|
|
model = Notification
|
|
|
|
template_name = "core/notification_list.jinja"
|
|
|
|
|
|
|
|
def get_queryset(self):
|
2016-12-13 16:53:44 +00:00
|
|
|
if 'see_all' in self.request.GET.keys():
|
|
|
|
self.request.user.notifications.update(viewed=True)
|
2016-12-09 23:06:17 +00:00
|
|
|
return self.request.user.notifications.order_by('-id')[:20]
|
|
|
|
|
2016-12-08 18:47:28 +00:00
|
|
|
def notification(request, notif_id):
|
|
|
|
notif = Notification.objects.filter(id=notif_id).first()
|
|
|
|
if notif:
|
2016-12-09 23:06:17 +00:00
|
|
|
notif.viewed = True
|
|
|
|
notif.save()
|
2016-12-08 18:47:28 +00:00
|
|
|
return redirect(notif.url)
|
|
|
|
return redirect("/")
|
|
|
|
|
2016-08-19 21:24:23 +00:00
|
|
|
def search_user(query, as_json=False):
|
2016-12-19 20:00:09 +00:00
|
|
|
res = SearchQuerySet().models(User).filter(text=query).filter_or(text__contains=query)[:20]
|
|
|
|
return [r.object for r in res]
|
2016-08-19 21:24:23 +00:00
|
|
|
|
|
|
|
def search_club(query, as_json=False):
|
|
|
|
clubs = []
|
|
|
|
if query:
|
|
|
|
clubs = Club.objects.filter(name__icontains=query).all()
|
|
|
|
clubs = clubs[:5]
|
|
|
|
if as_json: # Re-loads json to avoid double encoding by JsonResponse, but still benefit from serializers
|
|
|
|
clubs = json.loads(serializers.serialize('json', clubs, fields=('name')))
|
|
|
|
else:
|
2016-08-19 01:12:20 +00:00
|
|
|
clubs = list(clubs)
|
2016-08-19 21:24:23 +00:00
|
|
|
return clubs
|
2016-08-19 00:53:44 +00:00
|
|
|
|
|
|
|
@login_required
|
|
|
|
def search_view(request):
|
2016-08-19 21:24:23 +00:00
|
|
|
result = {
|
|
|
|
'users': search_user(request.GET.get('query', '')),
|
|
|
|
'clubs': search_club(request.GET.get('query', '')),
|
|
|
|
}
|
|
|
|
return render(request, "core/search.jinja", context={'result': result})
|
|
|
|
|
|
|
|
@login_required
|
|
|
|
def search_user_json(request):
|
|
|
|
result = {
|
|
|
|
'users': search_user(request.GET.get('query', ''), True),
|
|
|
|
}
|
|
|
|
return JsonResponse(result)
|
2016-08-19 00:53:44 +00:00
|
|
|
|
|
|
|
@login_required
|
|
|
|
def search_json(request):
|
2016-08-19 21:24:23 +00:00
|
|
|
result = {
|
|
|
|
'users': search_user(request.GET.get('query', ''), True),
|
|
|
|
'clubs': search_club(request.GET.get('query', ''), True),
|
|
|
|
}
|
|
|
|
return JsonResponse(result)
|
2015-11-24 15:09:46 +00:00
|
|
|
|