2022-11-06 02:10:39 +00:00
|
|
|
import string
|
|
|
|
|
2022-11-05 20:17:27 +00:00
|
|
|
from django import forms
|
|
|
|
from django.contrib.auth.decorators import login_required
|
2022-11-20 18:13:44 +00:00
|
|
|
from django.core import validators
|
2022-11-18 15:28:15 +00:00
|
|
|
from django.http import Http404, JsonResponse
|
2022-11-05 20:17:27 +00:00
|
|
|
from django.shortcuts import redirect
|
|
|
|
from django.utils.decorators import method_decorator
|
2022-11-23 01:39:15 +00:00
|
|
|
from django.views.generic import FormView, ListView, TemplateView, View
|
2022-11-05 20:17:27 +00:00
|
|
|
|
2022-11-23 01:39:15 +00:00
|
|
|
from activities.models import Post
|
2022-11-18 15:28:15 +00:00
|
|
|
from core.ld import canonicalise
|
2022-11-17 00:23:46 +00:00
|
|
|
from core.models import Config
|
2022-11-07 04:30:07 +00:00
|
|
|
from users.decorators import identity_required
|
2022-11-17 05:23:32 +00:00
|
|
|
from users.models import Domain, Follow, FollowStates, Identity, IdentityStates
|
2022-11-05 20:17:27 +00:00
|
|
|
from users.shortcuts import by_handle_or_404
|
|
|
|
|
|
|
|
|
2022-11-23 01:39:15 +00:00
|
|
|
class ViewIdentity(ListView):
|
2022-11-18 15:28:15 +00:00
|
|
|
"""
|
|
|
|
Shows identity profile pages, and also acts as the Actor endpoint when
|
|
|
|
approached with the right Accept header.
|
|
|
|
"""
|
2022-11-05 20:17:27 +00:00
|
|
|
|
|
|
|
template_name = "identity/view.html"
|
2022-11-23 01:39:15 +00:00
|
|
|
paginate_by = 5
|
2022-11-05 20:17:27 +00:00
|
|
|
|
2022-11-18 15:28:15 +00:00
|
|
|
def get(self, request, handle):
|
|
|
|
# Make sure we understand this handle
|
2022-11-23 01:39:15 +00:00
|
|
|
self.identity = by_handle_or_404(
|
2022-11-07 04:30:07 +00:00
|
|
|
self.request,
|
|
|
|
handle,
|
|
|
|
local=False,
|
|
|
|
fetch=True,
|
|
|
|
)
|
2022-11-23 01:39:15 +00:00
|
|
|
if (
|
|
|
|
not self.identity.local
|
|
|
|
and self.identity.data_age > Config.system.identity_max_age
|
|
|
|
):
|
|
|
|
self.identity.transition_perform(IdentityStates.outdated)
|
2022-11-18 15:28:15 +00:00
|
|
|
# If they're coming in looking for JSON, they want the actor
|
|
|
|
accept = request.META.get("HTTP_ACCEPT", "text/html").lower()
|
|
|
|
if (
|
|
|
|
"application/json" in accept
|
|
|
|
or "application/ld" in accept
|
|
|
|
or "application/activity" in accept
|
|
|
|
):
|
|
|
|
# Return actor info
|
2022-11-23 01:39:15 +00:00
|
|
|
return self.serve_actor(self.identity)
|
2022-11-18 15:28:15 +00:00
|
|
|
else:
|
|
|
|
# Show normal page
|
2022-11-23 01:39:15 +00:00
|
|
|
return super().get(request, identity=self.identity)
|
2022-11-18 15:28:15 +00:00
|
|
|
|
|
|
|
def serve_actor(self, identity):
|
|
|
|
# If this not a local actor, redirect to their canonical URI
|
|
|
|
if not identity.local:
|
|
|
|
return redirect(identity.actor_uri)
|
|
|
|
return JsonResponse(canonicalise(identity.to_ap(), include_security=True))
|
|
|
|
|
2022-11-23 01:39:15 +00:00
|
|
|
def get_queryset(self):
|
|
|
|
return (
|
|
|
|
self.identity.posts.filter(
|
|
|
|
visibility__in=[Post.Visibilities.public, Post.Visibilities.unlisted],
|
|
|
|
)
|
|
|
|
.select_related("author")
|
|
|
|
.prefetch_related("attachments")
|
|
|
|
.order_by("-created")
|
|
|
|
)
|
|
|
|
|
|
|
|
def get_context_data(self):
|
|
|
|
context = super().get_context_data()
|
|
|
|
context["identity"] = self.identity
|
|
|
|
context["follow"] = None
|
|
|
|
context["reverse_follow"] = None
|
2022-11-17 05:23:32 +00:00
|
|
|
if self.request.identity:
|
2022-11-23 01:39:15 +00:00
|
|
|
follow = Follow.maybe_get(self.request.identity, self.identity)
|
|
|
|
if follow and follow.state in FollowStates.group_active():
|
|
|
|
context["follow"] = follow
|
|
|
|
reverse_follow = Follow.maybe_get(self.identity, self.request.identity)
|
|
|
|
if reverse_follow and reverse_follow.state in FollowStates.group_active():
|
|
|
|
context["reverse_follow"] = reverse_follow
|
|
|
|
return context
|
2022-11-05 20:17:27 +00:00
|
|
|
|
|
|
|
|
2022-11-07 04:30:07 +00:00
|
|
|
@method_decorator(identity_required, name="dispatch")
|
|
|
|
class ActionIdentity(View):
|
|
|
|
def post(self, request, handle):
|
|
|
|
identity = by_handle_or_404(self.request, handle, local=False)
|
|
|
|
# See what action we should perform
|
|
|
|
action = self.request.POST["action"]
|
|
|
|
if action == "follow":
|
|
|
|
existing_follow = Follow.maybe_get(self.request.identity, identity)
|
|
|
|
if not existing_follow:
|
|
|
|
Follow.create_local(self.request.identity, identity)
|
2022-11-17 05:23:32 +00:00
|
|
|
elif existing_follow.state in [
|
|
|
|
FollowStates.undone,
|
|
|
|
FollowStates.undone_remotely,
|
|
|
|
]:
|
|
|
|
existing_follow.transition_perform(FollowStates.unrequested)
|
|
|
|
elif action == "unfollow":
|
|
|
|
existing_follow = Follow.maybe_get(self.request.identity, identity)
|
|
|
|
if existing_follow:
|
|
|
|
existing_follow.transition_perform(FollowStates.undone)
|
2022-11-07 04:30:07 +00:00
|
|
|
else:
|
|
|
|
raise ValueError(f"Cannot handle identity action {action}")
|
|
|
|
return redirect(identity.urls.view)
|
|
|
|
|
|
|
|
|
2022-11-05 20:17:27 +00:00
|
|
|
@method_decorator(login_required, name="dispatch")
|
|
|
|
class SelectIdentity(TemplateView):
|
|
|
|
|
|
|
|
template_name = "identity/select.html"
|
|
|
|
|
|
|
|
def get_context_data(self):
|
|
|
|
return {
|
|
|
|
"identities": Identity.objects.filter(users__pk=self.request.user.pk),
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-06 02:10:39 +00:00
|
|
|
@method_decorator(login_required, name="dispatch")
|
|
|
|
class ActivateIdentity(View):
|
|
|
|
def get(self, request, handle):
|
|
|
|
identity = by_handle_or_404(request, handle)
|
|
|
|
if not identity.users.filter(pk=request.user.pk).exists():
|
|
|
|
raise Http404()
|
|
|
|
request.session["identity_id"] = identity.id
|
|
|
|
# Get next URL, not allowing offsite links
|
|
|
|
next = request.GET.get("next") or "/"
|
|
|
|
if ":" in next:
|
|
|
|
next = "/"
|
|
|
|
return redirect("/")
|
|
|
|
|
|
|
|
|
2022-11-05 20:17:27 +00:00
|
|
|
@method_decorator(login_required, name="dispatch")
|
|
|
|
class CreateIdentity(FormView):
|
|
|
|
|
|
|
|
template_name = "identity/create.html"
|
|
|
|
|
|
|
|
class form_class(forms.Form):
|
2022-11-13 23:14:38 +00:00
|
|
|
username = forms.CharField(
|
|
|
|
help_text="Must be unique on your domain. Cannot be changed easily. Use only: a-z 0-9 _ -"
|
|
|
|
)
|
|
|
|
domain = forms.ChoiceField(
|
|
|
|
help_text="Pick the domain to make this identity on. Cannot be changed later."
|
|
|
|
)
|
|
|
|
name = forms.CharField(
|
|
|
|
help_text="The display name other users see. You can change this easily."
|
|
|
|
)
|
2022-11-05 20:17:27 +00:00
|
|
|
|
2022-11-06 20:48:04 +00:00
|
|
|
def __init__(self, user, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
2022-11-13 23:14:38 +00:00
|
|
|
self.fields["domain"].choices = [
|
|
|
|
(domain.domain, domain.domain)
|
|
|
|
for domain in Domain.available_for_user(user)
|
|
|
|
]
|
2022-11-20 18:13:44 +00:00
|
|
|
self.user = user
|
2022-11-06 20:48:04 +00:00
|
|
|
|
|
|
|
def clean_username(self):
|
2022-11-13 23:14:38 +00:00
|
|
|
# Remove any leading @ and force it lowercase
|
|
|
|
value = self.cleaned_data["username"].lstrip("@").lower()
|
2022-11-20 18:13:44 +00:00
|
|
|
|
|
|
|
if not self.user.admin:
|
|
|
|
# Apply username min length
|
|
|
|
limit = int(Config.system.identity_min_length)
|
|
|
|
validators.MinLengthValidator(limit)(value)
|
|
|
|
|
|
|
|
# Apply username restrictions
|
|
|
|
if value in Config.system.restricted_usernames.split():
|
|
|
|
raise forms.ValidationError(
|
|
|
|
"This username is restricted to administrators only."
|
|
|
|
)
|
2022-11-21 01:29:19 +00:00
|
|
|
if value in ["__system__"]:
|
|
|
|
raise forms.ValidationError(
|
|
|
|
"This username is reserved for system use."
|
|
|
|
)
|
2022-11-20 18:13:44 +00:00
|
|
|
|
2022-11-06 02:10:39 +00:00
|
|
|
# Validate it's all ascii characters
|
|
|
|
for character in value:
|
|
|
|
if character not in string.ascii_letters + string.digits + "_-":
|
|
|
|
raise forms.ValidationError(
|
2022-11-13 23:14:38 +00:00
|
|
|
"Only the letters a-z, numbers 0-9, dashes, and underscores are allowed."
|
2022-11-06 02:10:39 +00:00
|
|
|
)
|
2022-11-05 20:17:27 +00:00
|
|
|
return value
|
|
|
|
|
2022-11-06 20:48:04 +00:00
|
|
|
def clean(self):
|
|
|
|
# Check for existing users
|
2022-11-10 06:48:31 +00:00
|
|
|
username = self.cleaned_data.get("username")
|
|
|
|
domain = self.cleaned_data.get("domain")
|
|
|
|
if (
|
|
|
|
username
|
|
|
|
and domain
|
|
|
|
and Identity.objects.filter(username=username, domain=domain).exists()
|
|
|
|
):
|
2022-11-06 20:48:04 +00:00
|
|
|
raise forms.ValidationError(f"{username}@{domain} is already taken")
|
|
|
|
|
2022-11-20 18:13:44 +00:00
|
|
|
if not self.user.admin and (
|
|
|
|
Identity.objects.filter(users=self.user).count()
|
|
|
|
>= Config.system.identity_max_per_user
|
|
|
|
):
|
|
|
|
raise forms.ValidationError(
|
|
|
|
f"You are not allowed more than {Config.system.identity_max_per_user} identities"
|
|
|
|
)
|
|
|
|
|
2022-11-06 20:48:04 +00:00
|
|
|
def get_form(self):
|
|
|
|
form_class = self.get_form_class()
|
|
|
|
return form_class(user=self.request.user, **self.get_form_kwargs())
|
|
|
|
|
2022-11-05 20:17:27 +00:00
|
|
|
def form_valid(self, form):
|
2022-11-06 20:48:04 +00:00
|
|
|
username = form.cleaned_data["username"]
|
|
|
|
domain = form.cleaned_data["domain"]
|
2022-11-10 05:29:33 +00:00
|
|
|
domain_instance = Domain.get_domain(domain)
|
2022-11-05 20:17:27 +00:00
|
|
|
new_identity = Identity.objects.create(
|
2022-11-18 15:28:15 +00:00
|
|
|
actor_uri=f"https://{domain_instance.uri_domain}/@{username}@{domain}/",
|
2022-11-17 06:10:55 +00:00
|
|
|
username=username.lower(),
|
2022-11-06 20:48:04 +00:00
|
|
|
domain_id=domain,
|
2022-11-05 20:17:27 +00:00
|
|
|
name=form.cleaned_data["name"],
|
|
|
|
local=True,
|
|
|
|
)
|
|
|
|
new_identity.users.add(self.request.user)
|
|
|
|
new_identity.generate_keypair()
|
2022-11-23 01:41:10 +00:00
|
|
|
self.request.session["identity_id"] = new_identity.id
|
2022-11-05 20:17:27 +00:00
|
|
|
return redirect(new_identity.urls.view)
|