2024-01-15 09:34:42 +00:00
|
|
|
from django.shortcuts import get_object_or_404
|
2023-09-29 16:06:17 +00:00
|
|
|
from django.urls import reverse_lazy
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
2023-10-09 08:49:56 +00:00
|
|
|
from django.contrib.auth import views as auth_views
|
2023-11-21 14:20:15 +00:00
|
|
|
from django.contrib.auth import login as auth_login
|
2024-01-15 09:34:42 +00:00
|
|
|
from django.http import HttpResponseRedirect, HttpResponse
|
|
|
|
|
|
|
|
from idhub.models import DID
|
|
|
|
from trustchain_idhub import settings
|
2023-09-28 09:01:14 +00:00
|
|
|
|
|
|
|
|
2023-10-09 08:49:56 +00:00
|
|
|
class LoginView(auth_views.LoginView):
|
2023-09-29 16:06:17 +00:00
|
|
|
template_name = 'auth/login.html'
|
|
|
|
extra_context = {
|
|
|
|
'title': _('Login'),
|
2023-10-09 08:49:56 +00:00
|
|
|
'success_url': reverse_lazy('idhub:user_dashboard'),
|
2023-09-29 16:06:17 +00:00
|
|
|
}
|
2023-09-28 09:01:14 +00:00
|
|
|
|
2023-10-16 17:08:18 +00:00
|
|
|
def get(self, request, *args, **kwargs):
|
2024-01-12 16:22:28 +00:00
|
|
|
self.extra_context['success_url'] = request.GET.get(
|
|
|
|
'next',
|
|
|
|
reverse_lazy('idhub:user_dashboard')
|
|
|
|
)
|
2023-10-16 17:08:18 +00:00
|
|
|
return super().get(request, *args, **kwargs)
|
2023-11-21 14:20:15 +00:00
|
|
|
|
|
|
|
def form_valid(self, form):
|
|
|
|
user = form.get_user()
|
|
|
|
if not user.is_anonymous and user.is_admin:
|
|
|
|
admin_dashboard = reverse_lazy('idhub:admin_dashboard')
|
2024-01-12 16:22:28 +00:00
|
|
|
self.extra_context['success_url'] = admin_dashboard
|
2023-11-21 14:20:15 +00:00
|
|
|
auth_login(self.request, user)
|
|
|
|
return HttpResponseRedirect(self.extra_context['success_url'])
|
2024-01-15 09:34:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
def serve_did(request, did_id):
|
|
|
|
document = get_object_or_404(DID, did=f'did:web:{settings.DOMAIN}:{did_id}').didweb_document
|
|
|
|
retval = HttpResponse(document)
|
|
|
|
retval.headers["Content-Type"] = "application/json"
|
|
|
|
return retval
|