2020-01-28 19:45:27 +00:00
|
|
|
''' handles all the activity coming out of the server '''
|
2020-03-11 12:32:50 +00:00
|
|
|
from django.db import IntegrityError, transaction
|
2020-02-11 03:42:21 +00:00
|
|
|
from django.http import HttpResponseNotFound, JsonResponse
|
2020-01-28 09:01:33 +00:00
|
|
|
from django.views.decorators.csrf import csrf_exempt
|
|
|
|
import requests
|
2020-02-11 03:42:21 +00:00
|
|
|
from urllib.parse import urlencode
|
2020-01-28 09:01:33 +00:00
|
|
|
|
2020-02-18 05:39:08 +00:00
|
|
|
from fedireads import activitypub
|
2020-01-28 19:45:27 +00:00
|
|
|
from fedireads import models
|
2020-03-07 22:50:29 +00:00
|
|
|
from fedireads.status import create_review, create_status, create_tag, \
|
2020-03-21 23:50:49 +00:00
|
|
|
create_notification, create_comment
|
2020-02-11 23:17:21 +00:00
|
|
|
from fedireads.remote_user import get_or_create_remote_user
|
|
|
|
from fedireads.broadcast import get_recipients, broadcast
|
2020-01-28 19:45:27 +00:00
|
|
|
|
2020-01-28 09:01:33 +00:00
|
|
|
|
2020-01-28 19:13:13 +00:00
|
|
|
@csrf_exempt
|
|
|
|
def outbox(request, username):
|
|
|
|
''' outbox for the requested user '''
|
2020-02-11 03:42:21 +00:00
|
|
|
if request.method != 'GET':
|
|
|
|
return HttpResponseNotFound()
|
|
|
|
|
2020-02-22 22:02:03 +00:00
|
|
|
try:
|
|
|
|
user = models.User.objects.get(localname=username)
|
|
|
|
except models.User.DoesNotExist:
|
|
|
|
return HttpResponseNotFound()
|
|
|
|
|
2020-02-11 03:42:21 +00:00
|
|
|
# paginated list of messages
|
|
|
|
if request.GET.get('page'):
|
|
|
|
limit = 20
|
|
|
|
min_id = request.GET.get('min_id')
|
|
|
|
max_id = request.GET.get('max_id')
|
|
|
|
|
|
|
|
# filters for use in the django queryset min/max
|
|
|
|
filters = {}
|
|
|
|
# params for the outbox page id
|
|
|
|
params = {'page': 'true'}
|
|
|
|
if min_id != None:
|
|
|
|
params['min_id'] = min_id
|
|
|
|
filters['id__gt'] = min_id
|
|
|
|
if max_id != None:
|
|
|
|
params['max_id'] = max_id
|
|
|
|
filters['id__lte'] = max_id
|
2020-02-18 04:47:27 +00:00
|
|
|
|
|
|
|
page_id = user.outbox + '?' + urlencode(params)
|
|
|
|
statuses = models.Status.objects.filter(
|
|
|
|
user=user,
|
|
|
|
**filters
|
2020-02-19 20:13:08 +00:00
|
|
|
).select_subclasses().all()[:limit]
|
2020-02-18 04:47:27 +00:00
|
|
|
|
|
|
|
return JsonResponse(
|
|
|
|
activitypub.get_outbox_page(user, page_id, statuses, max_id, min_id)
|
|
|
|
)
|
2020-02-11 03:42:21 +00:00
|
|
|
|
|
|
|
# collection overview
|
2020-02-17 02:22:01 +00:00
|
|
|
size = models.Status.objects.filter(user=user).count()
|
2020-02-18 04:47:27 +00:00
|
|
|
return JsonResponse(activitypub.get_outbox(user, size))
|
2020-01-28 19:13:13 +00:00
|
|
|
|
|
|
|
|
2020-01-28 09:01:33 +00:00
|
|
|
def handle_account_search(query):
|
|
|
|
''' webfingerin' other servers '''
|
2020-01-28 19:13:13 +00:00
|
|
|
user = None
|
2020-01-28 09:01:33 +00:00
|
|
|
domain = query.split('@')[1]
|
|
|
|
try:
|
|
|
|
user = models.User.objects.get(username=query)
|
|
|
|
except models.User.DoesNotExist:
|
|
|
|
url = 'https://%s/.well-known/webfinger?resource=acct:%s' % \
|
|
|
|
(domain, query)
|
|
|
|
response = requests.get(url)
|
|
|
|
if not response.ok:
|
|
|
|
response.raise_for_status()
|
|
|
|
data = response.json()
|
|
|
|
for link in data['links']:
|
|
|
|
if link['rel'] == 'self':
|
2020-02-19 19:33:00 +00:00
|
|
|
try:
|
|
|
|
user = get_or_create_remote_user(link['href'])
|
|
|
|
except KeyError:
|
|
|
|
return HttpResponseNotFound()
|
2020-01-28 09:01:33 +00:00
|
|
|
return user
|
|
|
|
|
|
|
|
|
|
|
|
def handle_outgoing_follow(user, to_follow):
|
|
|
|
''' someone local wants to follow someone '''
|
2020-02-18 04:47:27 +00:00
|
|
|
activity = activitypub.get_follow_request(user, to_follow)
|
2020-01-29 23:55:48 +00:00
|
|
|
errors = broadcast(user, activity, [to_follow.inbox])
|
|
|
|
for error in errors:
|
|
|
|
raise(error['error'])
|
2020-01-28 09:01:33 +00:00
|
|
|
|
|
|
|
|
2020-02-19 06:44:13 +00:00
|
|
|
def handle_outgoing_unfollow(user, to_unfollow):
|
|
|
|
''' someone local wants to follow someone '''
|
2020-03-11 12:32:50 +00:00
|
|
|
relationship = models.UserFollows.objects.get(
|
2020-02-24 16:10:09 +00:00
|
|
|
user_subject=user,
|
|
|
|
user_object=to_unfollow
|
2020-02-19 06:44:13 +00:00
|
|
|
)
|
|
|
|
activity = activitypub.get_unfollow(relationship)
|
|
|
|
errors = broadcast(user, activity, [to_unfollow.inbox])
|
|
|
|
to_unfollow.followers.remove(user)
|
|
|
|
for error in errors:
|
|
|
|
raise(error['error'])
|
|
|
|
|
|
|
|
|
2020-03-13 17:04:39 +00:00
|
|
|
def handle_outgoing_accept(user, to_follow, follow_request):
|
2020-02-15 06:44:07 +00:00
|
|
|
''' send an acceptance message to a follow request '''
|
2020-03-11 12:32:50 +00:00
|
|
|
with transaction.atomic():
|
|
|
|
relationship = models.UserFollows.from_request(follow_request)
|
|
|
|
follow_request.delete()
|
|
|
|
relationship.save()
|
|
|
|
|
2020-03-13 17:04:39 +00:00
|
|
|
activity = activitypub.get_accept(to_follow, follow_request)
|
2020-02-18 04:47:27 +00:00
|
|
|
recipient = get_recipients(to_follow, 'direct', direct_recipients=[user])
|
2020-02-15 06:44:07 +00:00
|
|
|
broadcast(to_follow, activity, recipient)
|
|
|
|
|
2020-03-13 17:04:39 +00:00
|
|
|
def handle_outgoing_reject(user, to_follow, relationship):
|
2020-03-15 21:15:36 +00:00
|
|
|
''' a local user who managed follows rejects a follow request '''
|
2020-03-13 17:04:39 +00:00
|
|
|
relationship.delete()
|
|
|
|
|
|
|
|
activity = activitypub.get_reject(to_follow, relationship)
|
|
|
|
recipient = get_recipients(to_follow, 'direct', direct_recipients=[user])
|
|
|
|
broadcast(to_follow, activity, recipient)
|
2020-02-15 06:44:07 +00:00
|
|
|
|
2020-03-15 21:15:36 +00:00
|
|
|
|
2020-01-28 09:01:33 +00:00
|
|
|
def handle_shelve(user, book, shelf):
|
2020-01-28 19:13:13 +00:00
|
|
|
''' a local user is getting a book put on their shelf '''
|
2020-01-28 09:01:33 +00:00
|
|
|
# update the database
|
|
|
|
models.ShelfBook(book=book, shelf=shelf, added_by=user).save()
|
|
|
|
|
2020-02-18 04:12:19 +00:00
|
|
|
activity = activitypub.get_add(user, book, shelf)
|
2020-01-28 19:13:13 +00:00
|
|
|
recipients = get_recipients(user, 'public')
|
2020-01-28 09:01:33 +00:00
|
|
|
broadcast(user, activity, recipients)
|
|
|
|
|
2020-02-17 02:45:25 +00:00
|
|
|
# tell the world about this cool thing that happened
|
|
|
|
verb = {
|
|
|
|
'to-read': 'wants to read',
|
|
|
|
'reading': 'started reading',
|
|
|
|
'read': 'finished reading'
|
|
|
|
}[shelf.identifier]
|
2020-03-22 22:28:56 +00:00
|
|
|
message = '%s "%s"' % (verb, book.title)
|
2020-02-17 02:45:25 +00:00
|
|
|
status = create_status(user, message, mention_books=[book])
|
2020-03-15 21:15:36 +00:00
|
|
|
status.status_type = 'Update'
|
|
|
|
status.save()
|
2020-02-17 02:45:25 +00:00
|
|
|
|
2020-02-18 04:12:19 +00:00
|
|
|
activity = activitypub.get_status(status)
|
|
|
|
create_activity = activitypub.get_create(user, activity)
|
2020-02-17 02:45:25 +00:00
|
|
|
|
|
|
|
broadcast(user, create_activity, recipients)
|
|
|
|
|
2020-01-28 09:01:33 +00:00
|
|
|
|
2020-01-29 08:22:48 +00:00
|
|
|
def handle_unshelve(user, book, shelf):
|
|
|
|
''' a local user is getting a book put on their shelf '''
|
|
|
|
# update the database
|
|
|
|
row = models.ShelfBook.objects.get(book=book, shelf=shelf)
|
|
|
|
row.delete()
|
|
|
|
|
2020-02-18 04:12:19 +00:00
|
|
|
activity = activitypub.get_remove(user, book, shelf)
|
2020-01-29 08:22:48 +00:00
|
|
|
recipients = get_recipients(user, 'public')
|
|
|
|
|
|
|
|
broadcast(user, activity, recipients)
|
|
|
|
|
|
|
|
|
2020-01-28 09:01:33 +00:00
|
|
|
def handle_review(user, book, name, content, rating):
|
|
|
|
''' post a review '''
|
2020-02-15 19:13:49 +00:00
|
|
|
# validated and saves the review in the database so it has an id
|
2020-03-10 19:04:38 +00:00
|
|
|
review = create_review(user, book, name, content, rating)
|
2020-02-15 19:13:49 +00:00
|
|
|
|
2020-02-18 04:12:19 +00:00
|
|
|
review_activity = activitypub.get_review(review)
|
2020-02-19 01:30:23 +00:00
|
|
|
review_create_activity = activitypub.get_create(user, review_activity)
|
|
|
|
fr_recipients = get_recipients(user, 'public', limit='fedireads')
|
|
|
|
broadcast(user, review_create_activity, fr_recipients)
|
2020-01-28 09:01:33 +00:00
|
|
|
|
2020-02-19 01:30:23 +00:00
|
|
|
# re-format the activity for non-fedireads servers
|
|
|
|
article_activity = activitypub.get_review_article(review)
|
|
|
|
article_create_activity = activitypub.get_create(user, article_activity)
|
|
|
|
|
|
|
|
other_recipients = get_recipients(user, 'public', limit='other')
|
|
|
|
broadcast(user, article_create_activity, other_recipients)
|
2020-01-28 09:01:33 +00:00
|
|
|
|
2020-02-21 06:19:19 +00:00
|
|
|
|
2020-03-21 23:50:49 +00:00
|
|
|
def handle_comment(user, book, name, content):
|
|
|
|
''' post a review '''
|
|
|
|
# validated and saves the review in the database so it has an id
|
|
|
|
comment = create_comment(user, book, name, content)
|
|
|
|
|
|
|
|
comment_activity = activitypub.get_comment(comment)
|
|
|
|
comment_create_activity = activitypub.get_create(user, comment_activity)
|
|
|
|
fr_recipients = get_recipients(user, 'public', limit='fedireads')
|
|
|
|
broadcast(user, comment_create_activity, fr_recipients)
|
|
|
|
|
|
|
|
# re-format the activity for non-fedireads servers
|
|
|
|
article_activity = activitypub.get_comment_article(comment)
|
|
|
|
article_create_activity = activitypub.get_create(user, article_activity)
|
|
|
|
|
|
|
|
other_recipients = get_recipients(user, 'public', limit='other')
|
|
|
|
broadcast(user, article_create_activity, other_recipients)
|
|
|
|
|
|
|
|
|
2020-02-21 02:01:50 +00:00
|
|
|
def handle_tag(user, book, name):
|
2020-02-21 06:19:19 +00:00
|
|
|
''' tag a book '''
|
2020-02-21 02:01:50 +00:00
|
|
|
tag = create_tag(user, book, name)
|
2020-02-21 06:19:19 +00:00
|
|
|
tag_activity = activitypub.get_add_tag(tag)
|
|
|
|
|
|
|
|
recipients = get_recipients(user, 'public')
|
|
|
|
broadcast(user, tag_activity, recipients)
|
|
|
|
|
|
|
|
|
|
|
|
def handle_untag(user, book, name):
|
|
|
|
''' tag a book '''
|
|
|
|
book = models.Book.objects.get(openlibrary_key=book)
|
|
|
|
tag = models.Tag.objects.get(name=name, book=book, user=user)
|
|
|
|
tag_activity = activitypub.get_remove_tag(tag)
|
|
|
|
tag.delete()
|
|
|
|
|
|
|
|
recipients = get_recipients(user, 'public')
|
|
|
|
broadcast(user, tag_activity, recipients)
|
2020-02-21 02:01:50 +00:00
|
|
|
|
2020-02-18 05:39:08 +00:00
|
|
|
|
2020-03-21 23:50:49 +00:00
|
|
|
def handle_reply(user, review, content):
|
2020-02-19 08:13:06 +00:00
|
|
|
''' respond to a review or status '''
|
2020-02-18 05:39:08 +00:00
|
|
|
# validated and saves the comment in the database so it has an id
|
2020-03-21 23:50:49 +00:00
|
|
|
reply = create_status(user, content, reply_parent=review)
|
|
|
|
if reply.reply_parent:
|
2020-03-07 22:50:29 +00:00
|
|
|
create_notification(
|
2020-03-21 23:50:49 +00:00
|
|
|
reply.reply_parent.user,
|
2020-03-07 22:50:29 +00:00
|
|
|
'REPLY',
|
|
|
|
related_user=user,
|
2020-03-21 23:50:49 +00:00
|
|
|
related_status=reply,
|
2020-03-07 22:50:29 +00:00
|
|
|
)
|
2020-03-21 23:50:49 +00:00
|
|
|
reply_activity = activitypub.get_status(reply)
|
|
|
|
create_activity = activitypub.get_create(user, reply_activity)
|
2020-02-18 05:39:08 +00:00
|
|
|
|
|
|
|
recipients = get_recipients(user, 'public')
|
|
|
|
broadcast(user, create_activity, recipients)
|
|
|
|
|
2020-02-19 08:13:06 +00:00
|
|
|
|
|
|
|
def handle_outgoing_favorite(user, status):
|
|
|
|
''' a user likes a status '''
|
2020-02-19 08:22:55 +00:00
|
|
|
try:
|
|
|
|
favorite = models.Favorite.objects.create(
|
|
|
|
status=status,
|
|
|
|
user=user
|
|
|
|
)
|
|
|
|
except IntegrityError:
|
|
|
|
# you already fav'ed that
|
|
|
|
return
|
|
|
|
|
2020-02-19 08:13:06 +00:00
|
|
|
fav_activity = activitypub.get_favorite(favorite)
|
|
|
|
recipients = get_recipients(user, 'direct', [status.user])
|
|
|
|
broadcast(user, fav_activity, recipients)
|
|
|
|
|
2020-03-21 22:21:27 +00:00
|
|
|
|
|
|
|
def handle_outgoing_unfavorite(user, status):
|
|
|
|
''' a user likes a status '''
|
|
|
|
try:
|
|
|
|
favorite = models.Favorite.objects.get(
|
|
|
|
status=status,
|
|
|
|
user=user
|
|
|
|
)
|
|
|
|
except models.Favorite.DoesNotExist:
|
|
|
|
# can't find that status, idk
|
|
|
|
return
|
|
|
|
|
|
|
|
fav_activity = activitypub.get_unfavorite(favorite)
|
|
|
|
recipients = get_recipients(user, 'direct', [status.user])
|
|
|
|
broadcast(user, fav_activity, recipients)
|
|
|
|
|