2018-11-11 12:41:48 +00:00
|
|
|
"""OAuth Client models"""
|
|
|
|
|
|
|
|
from django.db import models
|
2019-03-13 15:49:30 +00:00
|
|
|
from django.urls import reverse, reverse_lazy
|
2018-12-18 09:40:46 +00:00
|
|
|
from django.utils.translation import gettext as _
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
from passbook.core.models import Source, UserSourceConnection
|
|
|
|
from passbook.oauth_client.clients import get_client
|
|
|
|
|
|
|
|
|
|
|
|
class OAuthSource(Source):
|
|
|
|
"""Configuration for OAuth provider."""
|
|
|
|
|
|
|
|
provider_type = models.CharField(max_length=255)
|
|
|
|
request_token_url = models.CharField(blank=True, max_length=255)
|
|
|
|
authorization_url = models.CharField(max_length=255)
|
|
|
|
access_token_url = models.CharField(max_length=255)
|
|
|
|
profile_url = models.CharField(max_length=255)
|
|
|
|
consumer_key = models.TextField()
|
|
|
|
consumer_secret = models.TextField()
|
|
|
|
|
2019-02-21 15:06:57 +00:00
|
|
|
form = 'passbook.oauth_client.forms.OAuthSourceForm'
|
2018-11-22 12:12:24 +00:00
|
|
|
|
2018-12-18 12:24:58 +00:00
|
|
|
@property
|
|
|
|
def is_link(self):
|
|
|
|
return True
|
|
|
|
|
|
|
|
@property
|
2019-02-25 13:10:10 +00:00
|
|
|
def get_login_button(self):
|
|
|
|
url = reverse_lazy('passbook_oauth_client:oauth-client-login',
|
|
|
|
kwargs={'source_slug': self.slug})
|
2019-03-14 20:18:13 +00:00
|
|
|
return url, self.provider_type, self.name
|
2019-02-25 13:10:10 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def additional_info(self):
|
2019-04-29 20:32:22 +00:00
|
|
|
return "Callback URL: <pre>%s</pre>" % \
|
|
|
|
reverse_lazy('passbook_oauth_client:oauth-client-callback',
|
|
|
|
kwargs={'source_slug': self.slug})
|
2018-12-18 12:24:58 +00:00
|
|
|
|
2019-03-13 15:49:30 +00:00
|
|
|
def has_user_settings(self):
|
|
|
|
"""Entrypoint to integrate with User settings. Can either return False if no
|
|
|
|
user settings are available, or a tuple or string, string, string where the first string
|
|
|
|
is the name the item has, the second string is the icon and the third is the view-name."""
|
2019-03-14 20:18:13 +00:00
|
|
|
icon_type = self.provider_type
|
|
|
|
if icon_type == 'azure ad':
|
|
|
|
icon_type = 'windows'
|
|
|
|
icon_class = 'fa fa-%s' % icon_type
|
2019-03-13 15:49:30 +00:00
|
|
|
view_name = 'passbook_oauth_client:oauth-client-user'
|
2019-03-14 20:18:13 +00:00
|
|
|
return self.name, icon_class, reverse((view_name), kwargs={
|
2019-03-13 15:49:30 +00:00
|
|
|
'source_slug': self.slug
|
|
|
|
})
|
|
|
|
|
2018-11-11 12:41:48 +00:00
|
|
|
class Meta:
|
|
|
|
|
2018-12-18 09:40:46 +00:00
|
|
|
verbose_name = _('Generic OAuth Source')
|
|
|
|
verbose_name_plural = _('Generic OAuth Sources')
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
|
2018-12-18 09:40:46 +00:00
|
|
|
class GitHubOAuthSource(OAuthSource):
|
|
|
|
"""Abstract subclass of OAuthSource to specify GitHub Form"""
|
|
|
|
|
|
|
|
form = 'passbook.oauth_client.forms.GitHubOAuthSourceForm'
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
abstract = True
|
|
|
|
verbose_name = _('GitHub OAuth Source')
|
|
|
|
verbose_name_plural = _('GitHub OAuth Sources')
|
|
|
|
|
|
|
|
|
|
|
|
class TwitterOAuthSource(OAuthSource):
|
|
|
|
"""Abstract subclass of OAuthSource to specify Twitter Form"""
|
|
|
|
|
|
|
|
form = 'passbook.oauth_client.forms.TwitterOAuthSourceForm'
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
abstract = True
|
|
|
|
verbose_name = _('Twitter OAuth Source')
|
|
|
|
verbose_name_plural = _('Twitter OAuth Sources')
|
|
|
|
|
|
|
|
|
|
|
|
class FacebookOAuthSource(OAuthSource):
|
|
|
|
"""Abstract subclass of OAuthSource to specify Facebook Form"""
|
|
|
|
|
|
|
|
form = 'passbook.oauth_client.forms.FacebookOAuthSourceForm'
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
abstract = True
|
|
|
|
verbose_name = _('Facebook OAuth Source')
|
|
|
|
verbose_name_plural = _('Facebook OAuth Sources')
|
|
|
|
|
|
|
|
|
|
|
|
class DiscordOAuthSource(OAuthSource):
|
|
|
|
"""Abstract subclass of OAuthSource to specify Discord Form"""
|
|
|
|
|
|
|
|
form = 'passbook.oauth_client.forms.DiscordOAuthSourceForm'
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
abstract = True
|
|
|
|
verbose_name = _('Discord OAuth Source')
|
|
|
|
verbose_name_plural = _('Discord OAuth Sources')
|
|
|
|
|
|
|
|
|
|
|
|
class GoogleOAuthSource(OAuthSource):
|
|
|
|
"""Abstract subclass of OAuthSource to specify Google Form"""
|
|
|
|
|
|
|
|
form = 'passbook.oauth_client.forms.GoogleOAuthSourceForm'
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
abstract = True
|
|
|
|
verbose_name = _('Google OAuth Source')
|
|
|
|
verbose_name_plural = _('Google OAuth Sources')
|
|
|
|
|
2019-03-14 20:18:13 +00:00
|
|
|
|
|
|
|
class AzureADOAuthSource(OAuthSource):
|
|
|
|
"""Abstract subclass of OAuthSource to specify AzureAD Form"""
|
|
|
|
|
|
|
|
form = 'passbook.oauth_client.forms.AzureADOAuthSourceForm'
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
abstract = True
|
|
|
|
verbose_name = _('Azure AD OAuth Source')
|
|
|
|
verbose_name_plural = _('Azure AD OAuth Sources')
|
|
|
|
|
|
|
|
|
2018-11-11 12:41:48 +00:00
|
|
|
class UserOAuthSourceConnection(UserSourceConnection):
|
|
|
|
"""Authorized remote OAuth provider."""
|
|
|
|
|
|
|
|
identifier = models.CharField(max_length=255)
|
|
|
|
access_token = models.TextField(blank=True, null=True, default=None)
|
|
|
|
|
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
self.access_token = self.access_token or None
|
|
|
|
super().save(*args, **kwargs)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def api_client(self):
|
|
|
|
"""Get API Client"""
|
|
|
|
return get_client(self.source, self.access_token or '')
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
2018-12-18 09:40:46 +00:00
|
|
|
verbose_name = _('User OAuth Source Connection')
|
|
|
|
verbose_name_plural = _('User OAuth Source Connections')
|