2020-07-09 21:08:28 +00:00
|
|
|
"""OAuth Callback Views"""
|
2020-07-09 21:13:14 +00:00
|
|
|
from typing import Any, Dict, Optional
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
from django.conf import settings
|
|
|
|
from django.contrib import messages
|
2020-06-07 14:35:08 +00:00
|
|
|
from django.http import Http404, HttpRequest, HttpResponse
|
2020-07-09 21:08:28 +00:00
|
|
|
from django.shortcuts import redirect
|
2018-11-11 12:41:48 +00:00
|
|
|
from django.urls import reverse
|
2020-09-11 21:21:11 +00:00
|
|
|
from django.utils.translation import gettext as _
|
2020-07-09 21:13:14 +00:00
|
|
|
from django.views.generic import View
|
2019-10-01 08:24:10 +00:00
|
|
|
from structlog import get_logger
|
2018-11-11 12:41:48 +00:00
|
|
|
|
2019-12-05 15:14:08 +00:00
|
|
|
from passbook.audit.models import Event, EventAction
|
2020-06-07 14:35:08 +00:00
|
|
|
from passbook.core.models import User
|
2020-07-09 21:37:13 +00:00
|
|
|
from passbook.flows.models import Flow, in_memory_stage
|
2020-05-08 14:10:27 +00:00
|
|
|
from passbook.flows.planner import (
|
|
|
|
PLAN_CONTEXT_PENDING_USER,
|
|
|
|
PLAN_CONTEXT_SSO,
|
|
|
|
FlowPlanner,
|
|
|
|
)
|
|
|
|
from passbook.flows.views import SESSION_KEY_PLAN
|
|
|
|
from passbook.lib.utils.urls import redirect_with_qs
|
2020-07-08 21:03:58 +00:00
|
|
|
from passbook.policies.utils import delete_none_keys
|
2020-07-07 19:47:07 +00:00
|
|
|
from passbook.sources.oauth.auth import AuthorizedServiceBackend
|
2019-12-31 11:51:16 +00:00
|
|
|
from passbook.sources.oauth.models import OAuthSource, UserOAuthSourceConnection
|
2020-07-09 21:08:28 +00:00
|
|
|
from passbook.sources.oauth.views.base import OAuthClientMixin
|
2020-07-09 21:37:13 +00:00
|
|
|
from passbook.sources.oauth.views.flows import (
|
|
|
|
PLAN_CONTEXT_SOURCES_OAUTH_ACCESS,
|
|
|
|
PostUserEnrollmentStage,
|
|
|
|
)
|
2020-05-08 17:46:39 +00:00
|
|
|
from passbook.stages.password.stage import PLAN_CONTEXT_AUTHENTICATION_BACKEND
|
2020-07-08 21:03:58 +00:00
|
|
|
from passbook.stages.prompt.stage import PLAN_CONTEXT_PROMPT
|
2018-11-11 12:41:48 +00:00
|
|
|
|
2019-10-04 08:08:53 +00:00
|
|
|
LOGGER = get_logger()
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
class OAuthCallback(OAuthClientMixin, View):
|
|
|
|
"Base OAuth callback view."
|
|
|
|
|
|
|
|
source_id = None
|
|
|
|
source = None
|
|
|
|
|
2020-07-09 21:37:13 +00:00
|
|
|
# pylint: disable=too-many-return-statements
|
2020-06-07 14:35:08 +00:00
|
|
|
def get(self, request: HttpRequest, *_, **kwargs) -> HttpResponse:
|
2018-11-11 12:41:48 +00:00
|
|
|
"""View Get handler"""
|
2019-12-31 11:51:16 +00:00
|
|
|
slug = kwargs.get("source_slug", "")
|
2018-11-11 12:41:48 +00:00
|
|
|
try:
|
|
|
|
self.source = OAuthSource.objects.get(slug=slug)
|
|
|
|
except OAuthSource.DoesNotExist:
|
2020-07-09 21:37:13 +00:00
|
|
|
raise Http404(f"Unknown OAuth source '{slug}'.")
|
2018-11-11 12:41:48 +00:00
|
|
|
|
2020-07-09 22:14:48 +00:00
|
|
|
if not self.source.enabled:
|
|
|
|
raise Http404(f"Source {slug} is not enabled.")
|
2020-09-25 23:26:06 +00:00
|
|
|
client = self.get_client(
|
|
|
|
self.source, callback=self.get_callback_url(self.source)
|
|
|
|
)
|
2020-07-09 22:14:48 +00:00
|
|
|
# Fetch access token
|
2020-09-25 23:26:06 +00:00
|
|
|
token = client.get_access_token()
|
2020-07-09 22:14:48 +00:00
|
|
|
if token is None:
|
|
|
|
return self.handle_login_failure(self.source, "Could not retrieve token.")
|
|
|
|
if "error" in token:
|
|
|
|
return self.handle_login_failure(self.source, token["error"])
|
|
|
|
# Fetch profile info
|
|
|
|
info = client.get_profile_info(token)
|
|
|
|
if info is None:
|
|
|
|
return self.handle_login_failure(self.source, "Could not retrieve profile.")
|
|
|
|
identifier = self.get_user_id(self.source, info)
|
|
|
|
if identifier is None:
|
|
|
|
return self.handle_login_failure(self.source, "Could not determine id.")
|
|
|
|
# Get or create access record
|
|
|
|
defaults = {
|
|
|
|
"access_token": token.get("access_token"),
|
|
|
|
}
|
|
|
|
existing = UserOAuthSourceConnection.objects.filter(
|
|
|
|
source=self.source, identifier=identifier
|
|
|
|
)
|
|
|
|
|
|
|
|
if existing.exists():
|
|
|
|
connection = existing.first()
|
|
|
|
connection.access_token = token.get("access_token")
|
|
|
|
UserOAuthSourceConnection.objects.filter(pk=connection.pk).update(
|
|
|
|
**defaults
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
connection = UserOAuthSourceConnection(
|
|
|
|
source=self.source,
|
|
|
|
identifier=identifier,
|
|
|
|
access_token=token.get("access_token"),
|
2019-12-31 11:51:16 +00:00
|
|
|
)
|
2020-07-09 22:14:48 +00:00
|
|
|
user = AuthorizedServiceBackend().authenticate(
|
|
|
|
source=self.source, identifier=identifier, request=request
|
|
|
|
)
|
|
|
|
if user is None:
|
|
|
|
if self.request.user.is_authenticated:
|
|
|
|
LOGGER.debug("Linking existing user", source=self.source)
|
|
|
|
return self.handle_existing_user_link(self.source, connection, info)
|
|
|
|
LOGGER.debug("Handling enrollment of new user", source=self.source)
|
|
|
|
return self.handle_enroll(self.source, connection, info)
|
|
|
|
LOGGER.debug("Handling existing user", source=self.source)
|
|
|
|
return self.handle_existing_user(self.source, user, connection, info)
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
# pylint: disable=unused-argument
|
2020-06-07 14:35:08 +00:00
|
|
|
def get_callback_url(self, source: OAuthSource) -> str:
|
2018-11-11 12:41:48 +00:00
|
|
|
"Return callback url if different than the current url."
|
2020-06-07 14:35:08 +00:00
|
|
|
return ""
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
# pylint: disable=unused-argument
|
2020-06-07 14:35:08 +00:00
|
|
|
def get_error_redirect(self, source: OAuthSource, reason: str) -> str:
|
2018-11-11 12:41:48 +00:00
|
|
|
"Return url to redirect on login failure."
|
|
|
|
return settings.LOGIN_URL
|
|
|
|
|
2020-07-08 18:36:48 +00:00
|
|
|
def get_user_enroll_context(
|
2020-06-07 14:35:08 +00:00
|
|
|
self,
|
|
|
|
source: OAuthSource,
|
|
|
|
access: UserOAuthSourceConnection,
|
|
|
|
info: Dict[str, Any],
|
2020-07-08 18:36:48 +00:00
|
|
|
) -> Dict[str, Any]:
|
|
|
|
"""Create a dict of User data"""
|
2018-12-09 16:44:54 +00:00
|
|
|
raise NotImplementedError()
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
# pylint: disable=unused-argument
|
2020-06-07 14:35:08 +00:00
|
|
|
def get_user_id(
|
|
|
|
self, source: UserOAuthSourceConnection, info: Dict[str, Any]
|
|
|
|
) -> Optional[str]:
|
|
|
|
"""Return unique identifier from the profile info."""
|
|
|
|
if "id" in info:
|
|
|
|
return info["id"]
|
|
|
|
return None
|
2018-11-11 12:41:48 +00:00
|
|
|
|
2020-07-09 21:37:13 +00:00
|
|
|
def handle_login_failure(self, source: OAuthSource, reason: str) -> HttpResponse:
|
|
|
|
"Message user and redirect on error."
|
|
|
|
LOGGER.warning("Authentication Failure", reason=reason)
|
|
|
|
messages.error(self.request, _("Authentication Failed."))
|
|
|
|
return redirect(self.get_error_redirect(source, reason))
|
|
|
|
|
2020-07-08 18:36:48 +00:00
|
|
|
def handle_login_flow(self, flow: Flow, **kwargs) -> HttpResponse:
|
2020-05-08 17:46:39 +00:00
|
|
|
"""Prepare Authentication Plan, redirect user FlowExecutor"""
|
2020-07-08 18:36:48 +00:00
|
|
|
kwargs.update(
|
2020-05-20 14:15:16 +00:00
|
|
|
{
|
2020-07-07 19:47:07 +00:00
|
|
|
# Since we authenticate the user by their token, they have no backend set
|
|
|
|
PLAN_CONTEXT_AUTHENTICATION_BACKEND: "django.contrib.auth.backends.ModelBackend",
|
2020-05-20 14:15:16 +00:00
|
|
|
PLAN_CONTEXT_SSO: True,
|
2020-07-08 18:36:48 +00:00
|
|
|
}
|
2020-05-20 14:15:16 +00:00
|
|
|
)
|
2020-07-08 18:36:48 +00:00
|
|
|
# We run the Flow planner here so we can pass the Pending user in the context
|
|
|
|
planner = FlowPlanner(flow)
|
2020-07-09 21:37:13 +00:00
|
|
|
plan = planner.plan(self.request, kwargs)
|
2020-05-08 14:10:27 +00:00
|
|
|
self.request.session[SESSION_KEY_PLAN] = plan
|
|
|
|
return redirect_with_qs(
|
2020-09-30 17:34:22 +00:00
|
|
|
"passbook_flows:flow-executor-shell",
|
|
|
|
self.request.GET,
|
|
|
|
flow_slug=flow.slug,
|
2020-05-08 14:10:27 +00:00
|
|
|
)
|
2019-04-29 21:19:37 +00:00
|
|
|
|
2018-11-11 12:41:48 +00:00
|
|
|
# pylint: disable=unused-argument
|
2020-06-07 14:35:08 +00:00
|
|
|
def handle_existing_user(
|
|
|
|
self,
|
|
|
|
source: OAuthSource,
|
|
|
|
user: User,
|
|
|
|
access: UserOAuthSourceConnection,
|
|
|
|
info: Dict[str, Any],
|
|
|
|
) -> HttpResponse:
|
2018-11-11 12:41:48 +00:00
|
|
|
"Login user and redirect."
|
2019-12-31 11:51:16 +00:00
|
|
|
messages.success(
|
|
|
|
self.request,
|
|
|
|
_(
|
|
|
|
"Successfully authenticated with %(source)s!"
|
|
|
|
% {"source": self.source.name}
|
|
|
|
),
|
|
|
|
)
|
2020-07-08 18:36:48 +00:00
|
|
|
flow_kwargs = {PLAN_CONTEXT_PENDING_USER: user}
|
|
|
|
return self.handle_login_flow(source.authentication_flow, **flow_kwargs)
|
2018-11-11 12:41:48 +00:00
|
|
|
|
2020-07-09 21:37:13 +00:00
|
|
|
def handle_existing_user_link(
|
2020-06-07 14:35:08 +00:00
|
|
|
self,
|
|
|
|
source: OAuthSource,
|
|
|
|
access: UserOAuthSourceConnection,
|
|
|
|
info: Dict[str, Any],
|
|
|
|
) -> HttpResponse:
|
2020-07-09 21:37:13 +00:00
|
|
|
"""Handler when the user was already authenticated and linked an external source
|
|
|
|
to their account."""
|
|
|
|
# there's already a user logged in, just link them up
|
|
|
|
user = self.request.user
|
|
|
|
access.user = user
|
|
|
|
access.save()
|
|
|
|
UserOAuthSourceConnection.objects.filter(pk=access.pk).update(user=user)
|
|
|
|
Event.new(
|
2020-09-21 18:30:30 +00:00
|
|
|
EventAction.SOURCE_LINKED, message="Linked OAuth Source", source=source
|
2020-07-09 21:37:13 +00:00
|
|
|
).from_http(self.request)
|
|
|
|
messages.success(
|
|
|
|
self.request,
|
|
|
|
_("Successfully linked %(source)s!" % {"source": self.source.name}),
|
|
|
|
)
|
|
|
|
return redirect(
|
|
|
|
reverse(
|
|
|
|
"passbook_sources_oauth:oauth-client-user",
|
|
|
|
kwargs={"source_slug": self.source.slug},
|
2019-12-31 11:51:16 +00:00
|
|
|
)
|
2020-07-09 21:37:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def handle_enroll(
|
|
|
|
self,
|
|
|
|
source: OAuthSource,
|
|
|
|
access: UserOAuthSourceConnection,
|
|
|
|
info: Dict[str, Any],
|
|
|
|
) -> HttpResponse:
|
|
|
|
"""User was not authenticated and previous request was not authenticated."""
|
2019-12-31 11:51:16 +00:00
|
|
|
messages.success(
|
|
|
|
self.request,
|
|
|
|
_(
|
|
|
|
"Successfully authenticated with %(source)s!"
|
|
|
|
% {"source": self.source.name}
|
|
|
|
),
|
|
|
|
)
|
2020-07-09 21:37:13 +00:00
|
|
|
# Because we inject a stage into the planned flow, we can't use `self.handle_login_flow`
|
2020-07-08 21:03:58 +00:00
|
|
|
context = {
|
2020-07-09 21:37:13 +00:00
|
|
|
# Since we authenticate the user by their token, they have no backend set
|
|
|
|
PLAN_CONTEXT_AUTHENTICATION_BACKEND: "django.contrib.auth.backends.ModelBackend",
|
|
|
|
PLAN_CONTEXT_SSO: True,
|
2020-07-08 21:03:58 +00:00
|
|
|
PLAN_CONTEXT_PROMPT: delete_none_keys(
|
|
|
|
self.get_user_enroll_context(source, access, info)
|
2020-07-09 21:37:13 +00:00
|
|
|
),
|
|
|
|
PLAN_CONTEXT_SOURCES_OAUTH_ACCESS: access,
|
2020-07-08 21:03:58 +00:00
|
|
|
}
|
2020-07-09 21:37:13 +00:00
|
|
|
# We run the Flow planner here so we can pass the Pending user in the context
|
|
|
|
planner = FlowPlanner(source.enrollment_flow)
|
|
|
|
plan = planner.plan(self.request, context)
|
|
|
|
plan.append(in_memory_stage(PostUserEnrollmentStage))
|
|
|
|
self.request.session[SESSION_KEY_PLAN] = plan
|
|
|
|
return redirect_with_qs(
|
|
|
|
"passbook_flows:flow-executor-shell",
|
|
|
|
self.request.GET,
|
|
|
|
flow_slug=source.enrollment_flow.slug,
|
|
|
|
)
|