This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-03-13 15:49:30 +00:00
|
|
|
"""passbook oauth_client user views"""
|
|
|
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
|
|
|
from django.shortcuts import get_object_or_404
|
|
|
|
from django.views.generic import TemplateView
|
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
from passbook.sources.oauth.models import OAuthSource, UserOAuthSourceConnection
|
2019-03-13 15:49:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
class UserSettingsView(LoginRequiredMixin, TemplateView):
|
|
|
|
"""Show user current connection state"""
|
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
template_name = "oauth_client/user.html"
|
2019-03-13 15:49:30 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
2019-12-31 11:51:16 +00:00
|
|
|
source = get_object_or_404(OAuthSource, slug=self.kwargs.get("source_slug"))
|
|
|
|
connections = UserOAuthSourceConnection.objects.filter(
|
|
|
|
user=self.request.user, source=source
|
|
|
|
)
|
|
|
|
kwargs["source"] = source
|
|
|
|
kwargs["connections"] = connections
|
2019-03-13 15:49:30 +00:00
|
|
|
return super().get_context_data(**kwargs)
|