2021-01-12 20:05:30 +00:00
|
|
|
''' non-interactive pages '''
|
|
|
|
from io import BytesIO
|
|
|
|
from uuid import uuid4
|
|
|
|
from PIL import Image
|
|
|
|
|
|
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
from django.core.files.base import ContentFile
|
|
|
|
from django.core.paginator import Paginator
|
|
|
|
from django.http import HttpResponseNotFound
|
|
|
|
from django.shortcuts import redirect
|
|
|
|
from django.template.response import TemplateResponse
|
2021-01-16 20:39:51 +00:00
|
|
|
from django.utils import timezone
|
2021-01-12 20:05:30 +00:00
|
|
|
from django.utils.decorators import method_decorator
|
|
|
|
from django.views import View
|
|
|
|
|
|
|
|
from bookwyrm import forms, models
|
|
|
|
from bookwyrm.activitypub import ActivitypubResponse
|
|
|
|
from bookwyrm.broadcast import broadcast
|
|
|
|
from bookwyrm.settings import PAGE_LENGTH
|
|
|
|
from .helpers import get_activity_feed, get_user_from_username, is_api_request
|
2021-01-16 20:39:51 +00:00
|
|
|
from .helpers import object_visible_to_user
|
2021-01-12 20:05:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable= no-self-use
|
|
|
|
class User(View):
|
|
|
|
''' user profile page '''
|
|
|
|
def get(self, request, username):
|
|
|
|
''' profile page for a user '''
|
|
|
|
try:
|
|
|
|
user = get_user_from_username(username)
|
|
|
|
except models.User.DoesNotExist:
|
|
|
|
return HttpResponseNotFound()
|
|
|
|
|
|
|
|
if is_api_request(request):
|
|
|
|
# we have a json request
|
|
|
|
return ActivitypubResponse(user.to_activity())
|
|
|
|
# otherwise we're at a UI view
|
|
|
|
|
|
|
|
try:
|
|
|
|
page = int(request.GET.get('page', 1))
|
|
|
|
except ValueError:
|
|
|
|
page = 1
|
|
|
|
|
|
|
|
shelf_preview = []
|
|
|
|
|
|
|
|
# only show other shelves that should be visible
|
|
|
|
shelves = user.shelf_set
|
|
|
|
is_self = request.user.id == user.id
|
|
|
|
if not is_self:
|
|
|
|
follower = user.followers.filter(id=request.user.id).exists()
|
|
|
|
if follower:
|
|
|
|
shelves = shelves.filter(privacy__in=['public', 'followers'])
|
|
|
|
else:
|
|
|
|
shelves = shelves.filter(privacy='public')
|
|
|
|
|
|
|
|
for user_shelf in shelves.all():
|
|
|
|
if not user_shelf.books.count():
|
|
|
|
continue
|
|
|
|
shelf_preview.append({
|
|
|
|
'name': user_shelf.name,
|
|
|
|
'local_path': user_shelf.local_path,
|
|
|
|
'books': user_shelf.books.all()[:3],
|
|
|
|
'size': user_shelf.books.count(),
|
|
|
|
})
|
|
|
|
if len(shelf_preview) > 2:
|
|
|
|
break
|
|
|
|
|
|
|
|
# user's posts
|
|
|
|
activities = get_activity_feed(
|
|
|
|
request.user,
|
|
|
|
['public', 'unlisted', 'followers'],
|
|
|
|
queryset=models.Status.objects.filter(user=user)
|
|
|
|
)
|
|
|
|
paginated = Paginator(activities, PAGE_LENGTH)
|
2021-01-16 20:39:51 +00:00
|
|
|
goal = models.AnnualGoal.objects.filter(
|
|
|
|
user=user, year=timezone.now().year).first()
|
|
|
|
if not object_visible_to_user(request.user, goal):
|
|
|
|
goal = None
|
2021-01-12 20:05:30 +00:00
|
|
|
data = {
|
|
|
|
'title': user.name,
|
|
|
|
'user': user,
|
|
|
|
'is_self': is_self,
|
|
|
|
'shelves': shelf_preview,
|
|
|
|
'shelf_count': shelves.count(),
|
2021-01-13 17:42:54 +00:00
|
|
|
'activities': paginated.page(page),
|
2021-01-16 20:39:51 +00:00
|
|
|
'goal': goal,
|
2021-01-12 20:05:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TemplateResponse(request, 'user.html', data)
|
|
|
|
|
|
|
|
class Followers(View):
|
|
|
|
''' list of followers view '''
|
|
|
|
def get(self, request, username):
|
|
|
|
''' list of followers '''
|
|
|
|
try:
|
|
|
|
user = get_user_from_username(username)
|
|
|
|
except models.User.DoesNotExist:
|
|
|
|
return HttpResponseNotFound()
|
|
|
|
|
|
|
|
if is_api_request(request):
|
|
|
|
return ActivitypubResponse(
|
|
|
|
user.to_followers_activity(**request.GET))
|
|
|
|
|
|
|
|
data = {
|
|
|
|
'title': '%s: followers' % user.name,
|
|
|
|
'user': user,
|
|
|
|
'is_self': request.user.id == user.id,
|
|
|
|
'followers': user.followers.all(),
|
|
|
|
}
|
|
|
|
return TemplateResponse(request, 'followers.html', data)
|
|
|
|
|
|
|
|
class Following(View):
|
|
|
|
''' list of following view '''
|
|
|
|
def get(self, request, username):
|
|
|
|
''' list of followers '''
|
|
|
|
try:
|
|
|
|
user = get_user_from_username(username)
|
|
|
|
except models.User.DoesNotExist:
|
|
|
|
return HttpResponseNotFound()
|
|
|
|
|
|
|
|
if is_api_request(request):
|
|
|
|
return ActivitypubResponse(
|
|
|
|
user.to_following_activity(**request.GET))
|
|
|
|
|
|
|
|
data = {
|
|
|
|
'title': '%s: following' % user.name,
|
|
|
|
'user': user,
|
|
|
|
'is_self': request.user.id == user.id,
|
|
|
|
'following': user.following.all(),
|
|
|
|
}
|
|
|
|
return TemplateResponse(request, 'following.html', data)
|
|
|
|
|
|
|
|
|
|
|
|
@method_decorator(login_required, name='dispatch')
|
|
|
|
class EditUser(View):
|
|
|
|
''' edit user view '''
|
|
|
|
def get(self, request):
|
|
|
|
''' profile page for a user '''
|
|
|
|
user = request.user
|
|
|
|
|
|
|
|
form = forms.EditUserForm(instance=request.user)
|
|
|
|
data = {
|
|
|
|
'title': 'Edit profile',
|
|
|
|
'form': form,
|
|
|
|
'user': user,
|
|
|
|
}
|
|
|
|
return TemplateResponse(request, 'edit_user.html', data)
|
|
|
|
|
|
|
|
def post(self, request):
|
|
|
|
''' les get fancy with images '''
|
|
|
|
form = forms.EditUserForm(
|
|
|
|
request.POST, request.FILES, instance=request.user)
|
|
|
|
if not form.is_valid():
|
|
|
|
data = {'form': form, 'user': request.user}
|
|
|
|
return TemplateResponse(request, 'edit_user.html', data)
|
|
|
|
|
|
|
|
user = form.save(commit=False)
|
|
|
|
|
|
|
|
if 'avatar' in form.files:
|
|
|
|
# crop and resize avatar upload
|
|
|
|
image = Image.open(form.files['avatar'])
|
|
|
|
target_size = 120
|
|
|
|
width, height = image.size
|
|
|
|
thumbnail_scale = height / (width / target_size) if height > width \
|
|
|
|
else width / (height / target_size)
|
|
|
|
image.thumbnail([thumbnail_scale, thumbnail_scale])
|
|
|
|
width, height = image.size
|
|
|
|
|
|
|
|
width_diff = width - target_size
|
|
|
|
height_diff = height - target_size
|
|
|
|
cropped = image.crop((
|
|
|
|
int(width_diff / 2),
|
|
|
|
int(height_diff / 2),
|
|
|
|
int(width - (width_diff / 2)),
|
|
|
|
int(height - (height_diff / 2))
|
|
|
|
))
|
|
|
|
output = BytesIO()
|
|
|
|
cropped.save(output, format=image.format)
|
|
|
|
ContentFile(output.getvalue())
|
|
|
|
|
|
|
|
# set the name to a hash
|
|
|
|
extension = form.files['avatar'].name.split('.')[-1]
|
|
|
|
filename = '%s.%s' % (uuid4(), extension)
|
|
|
|
user.avatar.save(filename, ContentFile(output.getvalue()))
|
|
|
|
user.save()
|
|
|
|
|
|
|
|
broadcast(user, user.to_update_activity(user))
|
|
|
|
return redirect('/user/%s' % request.user.localname)
|