Example #1
0
from django.conf.urls import url, patterns, include
from django.contrib.auth.decorators import login_required
from django.views.decorators.cache import cache_page
from common.views import APIRoot, root_redirect_view

from rest_auth.views import (Login, Logout, UserDetails, PasswordChange,
                             PasswordReset, PasswordResetConfirm)
from django.contrib import admin

rest_auth_patterns = patterns(
    # re-written from rest_auth.urls because of cache validation
    '',
    # URLs that do not require a session or valid token
    url(r'^password/reset/$',
        cache_page(0)(PasswordReset.as_view()),
        name='rest_password_reset'),
    url(r'^password/reset/confirm/$',
        cache_page(0)(PasswordResetConfirm.as_view()),
        name='rest_password_reset_confirm'),
    url(r'^login/$', cache_page(0)(Login.as_view()), name='rest_login'),
    # URLs that require a user to be logged in with a valid session / token.
    url(r'^logout/$', cache_page(0)(Logout.as_view()), name='rest_logout'),
    url(r'^user/$',
        cache_page(0)(UserDetails.as_view()),
        name='rest_user_details'),
    url(r'^password/change/$',
        cache_page(0)(PasswordChange.as_view()),
        name='rest_password_change'),
)

apipatterns = patterns(
Example #2
0
from django.conf import settings
from django.conf.urls import patterns, url, include

from rest_auth.views import Login, Logout, Register, UserDetails, \
    PasswordChange, PasswordReset, VerifyEmail, PasswordResetConfirm


urlpatterns = patterns('rest_auth.views',
                       # URLs that do not require a session or valid token
                       url(r'^register/$', Register.as_view(),
                           name='rest_register'),
                       url(r'^password/reset/$', PasswordReset.as_view(),
                           name='rest_password_reset'),
                       url(r'^password/reset/confirm/(?P<uid>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$',
                           PasswordResetConfirm.as_view(
                           ), name='rest_password_reset_confirm'),
                       url(r'^login/$', Login.as_view(), name='rest_login'),
                       url(r'^verify-email/(?P<activation_key>\w+)/$',
                           VerifyEmail.as_view(), name='verify_email'),

                       # URLs that require a user to be logged in with a valid
                       # session / token.
                       url(r'^logout/$', Logout.as_view(), name='rest_logout'),
                       url(r'^user/$', UserDetails.as_view(),
                           name='rest_user_details'),
                       url(r'^password/change/$', PasswordChange.as_view(),
                           name='rest_password_change'),
                       )

if getattr(settings, 'IS_TEST', False):
    from django.contrib.auth.tests import urls
Example #3
0
from django.conf.urls import patterns, url

from rest_auth.views import (Login, Logout, UserDetails, PasswordChange,
                             PasswordReset, PasswordResetConfirm)

urlpatterns = patterns(
    '',
    # URLs that do not require a session or valid token
    url(r'^password/reset/$',
        PasswordReset.as_view(),
        name='rest_password_reset'),
    url(r'^password/reset/confirm/$',
        PasswordResetConfirm.as_view(),
        name='rest_password_reset_confirm'),
    url(r'^login/$', Login.as_view(), name='rest_login'),
    # URLs that require a user to be logged in with a valid session / token.
    url(r'^logout/$', Logout.as_view(), name='rest_logout'),
    url(r'^user/$', UserDetails.as_view(), name='rest_user_details'),
    url(r'^password/change/$',
        PasswordChange.as_view(),
        name='rest_password_change'),
)
Example #4
0
from django.contrib.auth.decorators import login_required
from django.views.decorators.cache import cache_page
from common.views import APIRoot, root_redirect_view

from rest_auth.views import (
    Login, Logout, UserDetails, PasswordChange,
    PasswordReset, PasswordResetConfirm
)

rest_auth_patterns = patterns(
    # re-written from rest_auth.urls because of cache validation

    '',
    # URLs that do not require a session or valid token
    url(r'^password/reset/$',
        cache_page(0)(PasswordReset.as_view()),
        name='rest_password_reset'),
    url(r'^password/reset/confirm/$',
        cache_page(0)(PasswordResetConfirm.as_view()),
        name='rest_password_reset_confirm'),
    url(r'^login/$',
        cache_page(0)(Login.as_view()), name='rest_login'),
    # URLs that require a user to be logged in with a valid session / token.
    url(r'^logout/$',
        cache_page(0)(Logout.as_view()), name='rest_logout'),
    url(r'^user/$',
        cache_page(0)(UserDetails.as_view()), name='rest_user_details'),
    url(r'^password/change/$',
        cache_page(0)(PasswordChange.as_view()), name='rest_password_change'),
)
Example #5
0
from allauth.account.views import ConfirmEmailView
from django.conf.urls import patterns, include, url
from django.contrib import admin
from rest_auth.views import PasswordReset, PasswordResetConfirm, UserDetails, PasswordChange

urlpatterns = patterns('', # REST-AUTH
                       # instead of using all possible url, we only need these:
                       url(r'^rest-auth/password/reset/$', PasswordReset.as_view(),
                           name='rest_password_reset'),
                       url(r'^rest-auth/password/reset/confirm/$', PasswordResetConfirm.as_view(),
                           name='rest_password_reset_confirm'),
                       url(r'^rest-auth/user/$', UserDetails.as_view(), name='rest_user_details'),
                       url(r'^rest-auth/password/change/$', PasswordChange.as_view(),
                           name='rest_password_change'),

                       # restauth does not provide a default solution for the web view, when the email got confirmed
                       url(r'^rest-auth/registration/account-confirm-email/(?P<key>\w+)/$',
                           ConfirmEmailView.as_view(), name='account_confirm_email'),
                       url(r'^rest-auth/registration/$', include('rest_auth.registration.urls')),

                       ## ALLAUTH
                       url(r'^accounts/', include('allauth.urls')), ## OAUTH TOOLKIT
                       # using oauth 2.0 as authentication method
                       url(r'^oauth/', include('oauth2_provider.urls', namespace='oauth2_provider')),

                       # DEFAULT ADMIN
                       url(r'^admin/', include(admin.site.urls)), )
Example #6
0
from django.conf.urls import patterns, url

from rest_auth.views import (
    Login, Logout, UserDetails, PasswordChange,
    PasswordReset, PasswordResetConfirm
)

urlpatterns = patterns(
    '',
    # URLs that do not require a session or valid token
    url(r'^password/reset/$', PasswordReset.as_view(),
        name='rest_password_reset'),
    url(r'^password/reset/confirm/$', PasswordResetConfirm.as_view(),
        name='rest_password_reset_confirm'),
    url(r'^login/$', Login.as_view(), name='rest_login'),
    # URLs that require a user to be logged in with a valid session / token.
    url(r'^logout/$', Logout.as_view(), name='rest_logout'),
    url(r'^user/$', UserDetails.as_view(), name='rest_user_details'),
    url(r'^password/change/$', PasswordChange.as_view(),
        name='rest_password_change'),
)
Example #7
0
from django.conf.urls import patterns, url

from rest_auth.views import (Login, Logout, UserDetails, PasswordChange,
  PasswordReset, PasswordResetConfirm)

urlpatterns = patterns('',
    # URLs that do not require a session or valid token
    url(r'^password/reset/$', PasswordReset.as_view(), name='rest_password_reset'),
    url(r'^password/reset/confirm/$', PasswordResetConfirm.as_view(), name='rest_password_reset_confirm'),
    url(r'^login/$', Login.as_view(), name='rest_login'),
    # URLs that require a user to be logged in with a valid session / token.
    url(r'^logout/$', Logout.as_view(), name='rest_logout'),
    url(r'^user/$', UserDetails.as_view(), name='rest_user_details'),
    url(r'^password/change/$', PasswordChange.as_view(), name='rest_password_change'),
)