chapeau/django_kepi/views.py

243 wiersze
6.9 KiB
Python
Czysty Zwykły widok Historia

2018-10-03 18:36:39 +00:00
from django_kepi import ATSIGN_CONTEXT, NeedToFetchException, create
from django_kepi import create as kepi_create
from django.shortcuts import render, get_object_or_404
2018-08-11 16:21:56 +00:00
import django.views
from django.http import HttpResponse, JsonResponse
from django.contrib.auth.decorators import login_required
2018-10-03 18:36:39 +00:00
from django_kepi.models import QuarantinedMessage, QuarantinedMessageNeeds
import logging
2018-08-24 17:13:57 +00:00
import urllib.parse
import json
import re
2018-08-24 17:13:57 +00:00
PAGE_LENGTH = 50
2018-08-24 23:04:08 +00:00
PAGE_FIELD = 'page'
2018-08-24 17:13:57 +00:00
logger = logging.getLogger(__name__)
2018-08-11 16:21:56 +00:00
class ActivityObjectView(django.views.View):
2018-08-11 16:21:56 +00:00
def get(self, request, *args, **kwargs):
result = self.objectDetails(*args, **kwargs)
2018-08-06 13:44:35 +00:00
return self._render(result)
2018-08-24 17:13:57 +00:00
def _make_query_page(
self,
request,
page_number,
):
2018-08-26 19:07:27 +00:00
fields = dict(request.GET)
2018-08-26 19:07:27 +00:00
if page_number is None:
if PAGE_FIELD in fields:
del fields[PAGE_FIELD]
else:
fields[PAGE_FIELD] = page_number
encoded = urllib.parse.urlencode(fields)
if encoded!='':
encoded = '?'+encoded
return '{}://{}{}{}'.format(
request.scheme,
request.get_host(),
request.path,
encoded,
)
def _render(self, data):
result = JsonResponse(
data=data,
json_dumps_params={
'sort_keys': True,
'indent': 2,
}
)
2018-08-26 19:07:27 +00:00
result['Content-Type'] = 'application/activity+json'
2018-08-26 19:07:27 +00:00
return result
2018-08-26 19:07:27 +00:00
class CollectionView(ActivityObjectView):
2018-08-24 17:13:57 +00:00
def get(self, request, *args, **kwargs):
items = self.get_collection_items(*args, **kwargs)
2018-08-26 18:27:45 +00:00
# XXX assert that items.ordered
2018-08-24 17:13:57 +00:00
2018-08-24 23:04:08 +00:00
our_url = request.build_absolute_uri()
index_url = self._make_query_page(request, None)
2018-08-24 17:13:57 +00:00
if PAGE_FIELD in request.GET:
2018-08-26 19:07:27 +00:00
2018-08-24 17:13:57 +00:00
page_number = int(request.GET[PAGE_FIELD])
start = (page_number-1) * PAGE_LENGTH
2018-08-26 19:07:27 +00:00
listed_items = items[start: start+PAGE_LENGTH]
2018-08-24 17:13:57 +00:00
result = {
"@context": ATSIGN_CONTEXT,
"type" : "OrderedCollectionPage",
"id" : our_url,
2018-08-24 23:04:08 +00:00
"totalItems" : items.count(),
2018-08-26 20:03:00 +00:00
"orderedItems" : [self._stringify_object(x)
for x in listed_items],
2018-08-26 19:07:27 +00:00
"partOf": index_url,
2018-08-24 17:13:57 +00:00
}
if page_number > 1:
result["prev"] = self._make_query_page(request, page_number-1)
2018-08-24 17:13:57 +00:00
if start+PAGE_LENGTH < items.count():
result["next"] = self._make_query_page(request, page_number+1)
2018-08-24 17:13:57 +00:00
else:
2018-08-24 23:04:08 +00:00
# Index page.
2018-08-24 17:13:57 +00:00
result = {
"@context": ATSIGN_CONTEXT,
"type": "OrderedCollection",
2018-08-26 19:07:27 +00:00
"id": index_url,
2018-08-24 23:04:08 +00:00
"totalItems" : items.count(),
2018-08-24 17:13:57 +00:00
}
2018-08-26 18:27:45 +00:00
if items.exists():
2018-08-24 17:13:57 +00:00
result["first"] = "{}?page=1".format(our_url,)
return self._render(result)
2018-08-24 17:13:57 +00:00
def get_collection_items(self, *args, **kwargs):
2018-09-05 22:09:11 +00:00
return kwargs['items']
2018-08-24 17:13:57 +00:00
2018-08-26 20:03:00 +00:00
def _stringify_object(self, obj):
return str(obj)
class FollowingView(CollectionView):
def get_collection_items(self, *args, **kwargs):
return Following.objects.filter(follower__url=kwargs['url'])
def _stringify_object(self, obj):
return obj.following.url
2018-09-01 17:19:10 +00:00
class FollowersView(CollectionView):
def get_collection_items(self, *args, **kwargs):
return Following.objects.filter(following__url=kwargs['url'])
def _stringify_object(self, obj):
return obj.follower.url
2018-09-01 17:19:10 +00:00
########################################
2018-09-01 17:19:10 +00:00
class InboxView(django.views.View):
def post(self, request, name=None, *args, **kwargs):
# username is None for the shared inbox.
logger.debug('Received: message %s at inbox for %s',
str(request.body, encoding='UTF-8'),
name)
capture = QuarantinedMessage(
username = name,
body = str(request.body, encoding='UTF-8'),
headers = '\n'.join(
["%s: %s" for (f,v) in request.META.items() if f.startswith("HTTP_")],
),
)
capture.save()
try:
capture.deploy()
except NeedToFetchException:
# we'll work it out later
pass
return HttpResponse(
status = 200,
reason = 'Thank you',
content = '',
content_type = 'text/plain',
)
# We need to support GET (as a collection)
# but we don't yet.
2018-10-03 18:36:39 +00:00
########################################
class AsyncResultView(django.views.View):
def post(self, request, *args, **kwargs):
uuid_passcode = request.GET['uuid']
success = bool(request.GET['result'])
if success:
if 'body' not in request.POST:
logger.warn('Batch notification had success==True but no body')
raise ValueError()
body = str(request.POST['body'], encoding='UTF-8')
else:
if 'body' in request.POST:
logger.warn('Batch notification had success==False but supplied a body')
raise ValueError()
body = None
try:
message_need = get_object_or_404(QuarantinedMessageNeeds, uuid_passcode)
except Exception as e:
logger.warn('Batch notification for unknown UUID: %s',
uuid_passcode)
raise e
if success:
logger.info('Batch processing has retrieved %s:',
message_need.needs_to_fetch)
logger.debug(' -- its contents are %s', body)
else:
logger.debug('Batch processing has failed to retrieve %s:',
message_need.needs_to_fetch)
if body is not None:
try:
fields = json.loads(body)
except json.decoder.JSONDecodeError:
fields = None
success = False
logger.warn('Body was not JSON. Treating as failure.')
kepi_create(json.loads(body))
logger.debug(' -- trying to deploy all matching messages again')
for need in list(QuarantinedMessageNeeds.objects.filter(
needs_to_fetch = message_need.needs_to_fetch)):
logger.debug(' -- %s', str(need.message))
if success:
need.message.deploy()
else:
need.message.delete()
need.delete()
logger.debug(' -- finished deployment attempts')
return HttpResponse(
status = 200,
reason = 'All is well',
content = '',
content_type = 'text/plain',
)