当前位置: 首页>>代码示例>>Python>>正文


Python auth_provider_login.AuthProviderLoginView类代码示例

本文整理汇总了Python中sentry.web.frontend.auth_provider_login.AuthProviderLoginView的典型用法代码示例。如果您正苦于以下问题:Python AuthProviderLoginView类的具体用法?Python AuthProviderLoginView怎么用?Python AuthProviderLoginView使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了AuthProviderLoginView类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: dispatch

    def dispatch(self, request, organization_slug):
        from sentry.auth.helper import AuthHelper
        helper = AuthHelper.get_for_request(request)

        # SP initiated authentication, request helper is provided
        if helper:
            from sentry.web.frontend.auth_provider_login import AuthProviderLoginView
            sso_login = AuthProviderLoginView()
            return sso_login.handle(request)

        # IdP initiated authentication. The organizatio_slug must be valid and
        # an auth provider must exist for this organization to proceed with
        # IdP initiated SAML auth.
        try:
            organization = Organization.objects.get(slug=organization_slug)
        except Organization.DoesNotExist:
            messages.add_message(request, messages.ERROR, ERR_NO_SAML_SSO)
            return self.redirect(reverse('sentry-login'))

        try:
            auth_provider = AuthProvider.objects.get(organization=organization)
        except AuthProvider.DoesNotExist:
            messages.add_message(request, messages.ERROR, ERR_NO_SAML_SSO)
            return self.redirect(reverse('sentry-login'))

        helper = AuthHelper(
            request=request,
            organization=organization,
            auth_provider=auth_provider,
            flow=AuthHelper.FLOW_LOGIN,
        )

        helper.init_pipeline()
        return helper.current_step()
开发者ID:getsentry,项目名称:sentry,代码行数:34,代码来源:saml2.py

示例2: url

    # Auth
    url(
        r'^auth/link/(?P<organization_slug>[^/]+)/$',
        AuthOrganizationLoginView.as_view(),
        name='sentry-auth-link-identity'
    ),
    url(r'^auth/login/$', AuthLoginView.as_view(), name='sentry-login'),
    url(
        r'^auth/login/(?P<organization_slug>[^/]+)/$',
        AuthOrganizationLoginView.as_view(),
        name='sentry-auth-organization'
    ),
    url(r'^auth/2fa/$', TwoFactorAuthView.as_view(), name='sentry-2fa-dialog'),
    url(r'^auth/2fa/u2fappid\.json$', u2f_appid, name='sentry-u2f-app-id'),
    url(r'^auth/sso/$', AuthProviderLoginView.as_view(), name='sentry-auth-sso'),
    url(r'^auth/logout/$', AuthLogoutView.as_view(), name='sentry-logout'),
    url(r'^auth/reactivate/$', ReactivateAccountView.as_view(),
        name='sentry-reactivate-account'),
    url(r'^auth/register/$', AuthLoginView.as_view(), name='sentry-register'),
    url(r'^auth/close/$', AuthCloseView.as_view(), name='sentry-auth-close'),

    # Account
    url(r'^login-redirect/$', accounts.login_redirect,
        name='sentry-login-redirect'),
    url(r'^account/sudo/$', SudoView.as_view(), name='sentry-sudo'),
    url(
        r'^account/confirm-email/$',
        accounts.start_confirm_email,
        name='sentry-account-confirm-email-send'
    ),
开发者ID:hosmelq,项目名称:sentry,代码行数:30,代码来源:urls.py

示例3: url

    # OAuth
    url(r'^oauth/authorize/$', OAuthAuthorizeView.as_view()),
    url(r'^oauth/token/$', OAuthTokenView.as_view()),

    # Auth
    url(r'^auth/link/(?P<organization_slug>[^/]+)/$', AuthOrganizationLoginView.as_view(),
        name='sentry-auth-link-identity'),
    url(r'^auth/login/$', AuthLoginView.as_view(),
        name='sentry-login'),
    url(r'^auth/login/(?P<organization_slug>[^/]+)/$', AuthOrganizationLoginView.as_view(),
        name='sentry-auth-organization'),
    url(r'^auth/2fa/$', TwoFactorAuthView.as_view(),
        name='sentry-2fa-dialog'),
    url(r'^auth/2fa/u2fappid\.json$', u2f_appid,
        name='sentry-u2f-app-id'),
    url(r'^auth/sso/$', AuthProviderLoginView.as_view(),
        name='sentry-auth-sso'),
    url(r'^auth/logout/$', AuthLogoutView.as_view(),
        name='sentry-logout'),
    url(r'^auth/reactivate/$', ReactivateAccountView.as_view(),
        name='sentry-reactivate-account'),
    url(r'^auth/register/$', AuthLoginView.as_view(),
        name='sentry-register'),
    url(r'^auth/close/$', AuthCloseView.as_view(),
        name='sentry-auth-close'),

    # Account
    url(r'^login-redirect/$', accounts.login_redirect,
        name='sentry-login-redirect'),
    url(r'^account/sudo/$', SudoView.as_view(), name='sentry-sudo'),
    url(r'^account/confirm-email/$', accounts.start_confirm_email,
开发者ID:sashahilton00,项目名称:sentry,代码行数:31,代码来源:urls.py

示例4: url

     name="sentry-release-hook",
 ),
 url(r"^api/embed/error-page/$", ErrorPageEmbedView.as_view(), name="sentry-error-page-embed"),
 # Auth
 url(
     r"^auth/link/(?P<organization_slug>[^/]+)/$",
     AuthOrganizationLoginView.as_view(),
     name="sentry-auth-link-identity",
 ),
 url(r"^auth/login/$", AuthLoginView.as_view(), name="sentry-login"),
 url(
     r"^auth/login/(?P<organization_slug>[^/]+)/$",
     AuthOrganizationLoginView.as_view(),
     name="sentry-auth-organization",
 ),
 url(r"^auth/sso/$", AuthProviderLoginView.as_view(), name="sentry-auth-sso"),
 url(r"^auth/logout/$", AuthLogoutView.as_view(), name="sentry-logout"),
 # Account
 url(r"^login-redirect/$", accounts.login_redirect, name="sentry-login-redirect"),
 url(r"^register/$", AuthLoginView.as_view(), name="sentry-register"),
 url(r"^account/sudo/$", "sudo.views.sudo", {"template_name": "sentry/account/sudo.html"}, name="sentry-sudo"),
 url(r"^account/recover/$", accounts.recover, name="sentry-account-recover"),
 url(
     r"^account/recover/confirm/(?P<user_id>[\d]+)/(?P<hash>[0-9a-zA-Z]+)/$",
     accounts.recover_confirm,
     name="sentry-account-recover-confirm",
 ),
 url(r"^account/settings/$", accounts.settings, name="sentry-account-settings"),
 url(r"^account/settings/appearance/$", accounts.appearance_settings, name="sentry-account-settings-appearance"),
 url(r"^account/settings/identities/$", accounts.list_identities, name="sentry-account-settings-identities"),
 url(
开发者ID:pratyk,项目名称:sentry,代码行数:31,代码来源:urls.py


注:本文中的sentry.web.frontend.auth_provider_login.AuthProviderLoginView类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。