phantasmobile/app/item/views.py

102 lines
3.1 KiB
Python
Raw Normal View History

2023-07-15 07:30:36 +00:00
from datetime import date, datetime, timedelta
2023-07-24 11:05:45 +00:00
import json
from django.utils import timezone
2023-07-15 07:30:36 +00:00
from django.shortcuts import render
2023-07-24 11:05:45 +00:00
from django.db.models import Q
from django.utils.html import mark_safe
from django.conf import settings
2023-07-15 07:30:36 +00:00
from . import models
2023-07-24 11:05:45 +00:00
from . import tasks
from ..signalbot.rpc import send_reaction
from .utils import render_to_json
2023-07-15 07:30:36 +00:00
def index(request):
context = {}
week, archive = models.Item.public()
context['items'] = week
context['archive'] = archive.exists()
return render(request, 'index.html', context)
def archive(request):
context = {}
qs = models.Item.public()
week, archive = models.Item.public()
context['items'] = archive
return render(request, 'archive.html', context)
2023-07-24 11:05:45 +00:00
2023-07-15 07:30:36 +00:00
def item(request, id):
context = {}
item = models.Item.objects.get(id=id)
context['item'] = item
2023-07-24 11:05:45 +00:00
qs = item.comments.order_by('created')
if not request.user.is_staff:
q = ~Q(published=None)
if request.user.is_authenticated:
q |= Q(user=request.user)
if request.session and request.session.session_key:
q |= Q(session_key=request.session.session_key)
qs = qs.filter(q)
comments = []
for comment in qs:
comments.append({
"id": comment.id,
"name": comment.name,
"date": comment.date,
"text": comment.text,
"published": comment.is_published,
})
context['comments'] = mark_safe(json.dumps(comments))
user = {}
if request.user.is_staff:
user['is_moderator'] = True
if request.user.is_authenticated:
user['username'] = request.user.username
2023-07-15 07:30:36 +00:00
2023-07-24 11:05:45 +00:00
context['user'] = mark_safe(json.dumps(user))
request.session['item'] = id
return render(request, 'item.html', context)
2023-07-15 07:30:36 +00:00
def comment(request):
response = {}
data = json.loads(request.body)
comment = models.Comment()
comment.item = models.Item.objects.get(id=data['item'])
if request.user.is_authenticated:
comment.user = request.user
2023-07-24 11:05:45 +00:00
if comment.user.has_perm('app.item.can_post_comment'):
comment.published = timezone.now()
2023-07-15 07:30:36 +00:00
else:
comment.name = data['name']
comment.email = data['email']
2023-07-24 11:05:45 +00:00
comment.session_key = request.session.session_key
2023-07-15 07:30:36 +00:00
comment.text = data['text']
comment.save()
2023-07-24 11:05:45 +00:00
if not comment.published:
link = request.build_absolute_uri(comment.item.get_absolute_url())
tasks.notify_moderators.delay(comment.id, link)
2023-07-15 07:30:36 +00:00
response = comment.json()
return render_to_json(response)
2023-07-24 11:05:45 +00:00
def publish_comment(request):
response = {}
data = json.loads(request.body)
if request.user.is_staff:
comment = models.Comment.objects.get(id=data['comment'])
comment.published = timezone.now()
comment.save()
if comment.data.get("moderator_ts"):
account = settings.SIGNAL_ACCOUNT
group = settings.SIGNAL_MODERATORS_GROUP
send_reaction(account, comment.data["moderator_ts"], "🎉", group=group)
response['status'] = 'ok'
else:
response['error'] = 'permission denied'
return render_to_json(response)