refactor: Remove djoser dependency
This commit is contained in:
parent
a8464d7536
commit
048c8927b8
7 changed files with 62 additions and 54 deletions
|
@ -1,4 +1,3 @@
|
|||
setuptools~=56.0.0
|
||||
setuptools~=40.8.0
|
||||
django~=2.2.13
|
||||
djangorestframework~=3.12.4
|
||||
djoser~=2.1.0
|
||||
djangorestframework~=3.9.0
|
47
src/api.ts
47
src/api.ts
|
@ -29,7 +29,7 @@ async function request(
|
|||
}
|
||||
init.headers.set("Accept", "application/json");
|
||||
init.headers.set("Content-Type", "application/json");
|
||||
const response = await fetch(`/api/${endpoint}/`, init);
|
||||
const response = await fetch(`/${endpoint}/`, init);
|
||||
if (response.status !== 204) {
|
||||
if (response.status === successStatus) {
|
||||
return await response.json();
|
||||
|
@ -39,6 +39,16 @@ async function request(
|
|||
}
|
||||
}
|
||||
|
||||
async function api_request(
|
||||
method: HTTPMethod,
|
||||
endpoint: string,
|
||||
successStatus: number,
|
||||
data: any,
|
||||
authToken?: string
|
||||
) {
|
||||
return request(method, `api/${endpoint}`, successStatus, data, authToken);
|
||||
}
|
||||
|
||||
export class User {
|
||||
email: string | undefined;
|
||||
password: string | undefined;
|
||||
|
@ -48,20 +58,37 @@ export class User {
|
|||
private token = "";
|
||||
|
||||
static async confirm(uid: string, token: string): Promise<void> {
|
||||
await request("POST", "users/activation", 204, { uid, token });
|
||||
await api_request("POST", "users/activation", 204, { uid, token });
|
||||
}
|
||||
|
||||
async login(): Promise<void> {
|
||||
const response = await request("POST", "token/login", 200, {
|
||||
email: this.email,
|
||||
password: this.password,
|
||||
});
|
||||
this.token = response.auth_token;
|
||||
this.isAuthenticated = true;
|
||||
if (!this.email || !this.password) throw new APIError("", "");
|
||||
|
||||
// logout any existing sessions
|
||||
//await logout()
|
||||
// fetch the login endpoint we use for authentication
|
||||
const loginEndpoint = "/api-auth/login/";
|
||||
// fetch the login page, so it sets csrf cookies
|
||||
await window.fetch(loginEndpoint);
|
||||
|
||||
// authenticate us
|
||||
const body = new window.FormData();
|
||||
body.append("username", this.email);
|
||||
body.append("password", this.password);
|
||||
const csrf_token = Cookies.get("csrftoken");
|
||||
if (csrf_token) body.append("csrfmiddlewaretoken", csrf_token);
|
||||
const res = await window.fetch(loginEndpoint, { method: "post", body });
|
||||
|
||||
// successful logins are followed by a redirect
|
||||
if (res.redirected && res.status === 200) {
|
||||
this.isAuthenticated = true;
|
||||
} else {
|
||||
throw new APIError("", "");
|
||||
}
|
||||
}
|
||||
|
||||
async save(): Promise<void> {
|
||||
await request(
|
||||
await api_request(
|
||||
"PATCH",
|
||||
"users/me",
|
||||
200,
|
||||
|
@ -74,7 +101,7 @@ export class User {
|
|||
}
|
||||
|
||||
async signup(): Promise<void> {
|
||||
await request("POST", "users", 201, {
|
||||
await api_request("POST", "users", 201, {
|
||||
email: this.email,
|
||||
password: this.password,
|
||||
});
|
||||
|
|
|
@ -1,26 +1,13 @@
|
|||
from djoser.serializers import UserSerializer as BaseUserSerializer
|
||||
from rest_framework import serializers
|
||||
|
||||
from userausfall.models import AccountRequest
|
||||
from userausfall.models import AccountRequest, User
|
||||
|
||||
|
||||
class AccountRequestSerializer(serializers.HyperlinkedModelSerializer):
|
||||
class Meta:
|
||||
model = AccountRequest
|
||||
fields = (
|
||||
"url",
|
||||
"email",
|
||||
"confidant_email",
|
||||
"username",
|
||||
"is_verified",
|
||||
"is_trustable",
|
||||
)
|
||||
|
||||
|
||||
class UserSerializer(BaseUserSerializer):
|
||||
class UserSerializer(serializers.ModelSerializer):
|
||||
confidant_email = serializers.EmailField(source="get_confidant_email")
|
||||
|
||||
class Meta(BaseUserSerializer.Meta):
|
||||
class Meta:
|
||||
model = User
|
||||
fields = ("email", "username", "confidant_email")
|
||||
|
||||
def get_confidant_email(self):
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
from rest_framework import routers
|
||||
|
||||
from userausfall.rest_api.views import AccountRequestViewSet
|
||||
from userausfall.rest_api.views import UserViewSet
|
||||
|
||||
router = routers.DefaultRouter(trailing_slash=True)
|
||||
router.register(r'account_requests', AccountRequestViewSet)
|
||||
router.register(r'users', UserViewSet, basename="user")
|
||||
|
|
|
@ -1,9 +1,19 @@
|
|||
from rest_framework import viewsets
|
||||
from rest_framework.decorators import action
|
||||
from rest_framework.response import Response
|
||||
|
||||
from userausfall.models import AccountRequest
|
||||
from userausfall.rest_api.serializers import AccountRequestSerializer
|
||||
from userausfall.models import User
|
||||
from userausfall.rest_api.serializers import UserSerializer
|
||||
|
||||
|
||||
class AccountRequestViewSet(viewsets.ModelViewSet):
|
||||
serializer_class = AccountRequestSerializer
|
||||
queryset = AccountRequest.objects.all()
|
||||
class UserViewSet(viewsets.ModelViewSet):
|
||||
class Meta:
|
||||
queryset = User.objects.all()
|
||||
|
||||
@action(detail=False, methods=["PATCH"])
|
||||
def me(self, request):
|
||||
return Response(
|
||||
UserSerializer(
|
||||
instance=request.user, context={"request": request}
|
||||
).data
|
||||
)
|
||||
|
|
|
@ -38,8 +38,6 @@ INSTALLED_APPS = [
|
|||
'django.contrib.staticfiles',
|
||||
'userausfall',
|
||||
'rest_framework',
|
||||
'rest_framework.authtoken',
|
||||
'djoser',
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
|
@ -137,18 +135,6 @@ MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
|
|||
MEDIA_URL = '/media/'
|
||||
|
||||
|
||||
# Djoser settings
|
||||
# https://djoser.readthedocs.io/en/2.1.0/settings.html
|
||||
|
||||
DJOSER = {
|
||||
"ACTIVATION_URL": "confirm/{uid}/{token}",
|
||||
"SEND_ACTIVATION_EMAIL": True,
|
||||
"SERIALIZERS": {
|
||||
"current_user": "userausfall.rest_api.serializers.UserSerializer",
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
# Sending email
|
||||
# https://docs.djangoproject.com/en/3.2/topics/email/
|
||||
|
||||
|
@ -160,6 +146,6 @@ EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
|
|||
|
||||
REST_FRAMEWORK = {
|
||||
'DEFAULT_AUTHENTICATION_CLASSES': (
|
||||
'rest_framework.authentication.TokenAuthentication',
|
||||
'rest_framework.authentication.SessionAuthentication',
|
||||
),
|
||||
}
|
||||
|
|
|
@ -6,6 +6,5 @@ from userausfall.rest_api import urls as rest_api_urls
|
|||
urlpatterns = [
|
||||
path('admin/', admin.site.urls),
|
||||
path('api/', include(rest_api_urls.router.urls)),
|
||||
path('api/', include('djoser.urls')),
|
||||
path('api/', include('djoser.urls.authtoken')),
|
||||
path("api-auth/", include("rest_framework.urls")),
|
||||
]
|
||||
|
|
Reference in a new issue