Skip to content

Commit 893091f

Browse files
committed
Back
0 parents  commit 893091f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1718
-0
lines changed
1.2 MB
Binary file not shown.

WebFinalBack/.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WebFinalBack/.idea/WebFinalBack.iml

+30
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WebFinalBack/.idea/dataSources.xml

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WebFinalBack/.idea/inspectionProfiles/profiles_settings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WebFinalBack/.idea/misc.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WebFinalBack/.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WebFinalBack/WebFinalBack/__init__.py

Whitespace-only changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.

WebFinalBack/WebFinalBack/asgi.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""
2+
ASGI config for WebFinalBack project.
3+
4+
It exposes the ASGI callable as a module-level variable named ``application``.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/5.0/howto/deployment/asgi/
8+
"""
9+
10+
import os
11+
12+
from django.core.asgi import get_asgi_application
13+
14+
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'WebFinalBack.settings')
15+
16+
application = get_asgi_application()

WebFinalBack/WebFinalBack/settings.py

+125
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
"""
2+
Django settings for WebFinalBack project.
3+
4+
Generated by 'django-admin startproject' using Django 5.0.1.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/5.0/topics/settings/
8+
9+
For the full list of settings and their values, see
10+
https://docs.djangoproject.com/en/5.0/ref/settings/
11+
"""
12+
13+
from pathlib import Path
14+
15+
# Build paths inside the project like this: BASE_DIR / 'subdir'.
16+
BASE_DIR = Path(__file__).resolve().parent.parent
17+
18+
19+
# Quick-start development settings - unsuitable for production
20+
# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/
21+
22+
# SECURITY WARNING: keep the secret key used in production secret!
23+
SECRET_KEY = 'django-insecure-7mt-q7dx3)dn2lu5p74xt@df@gvl0%w-x=urf&eym_dfp0%7tt'
24+
25+
# SECURITY WARNING: don't run with debug turned on in production!
26+
DEBUG = True
27+
28+
ALLOWED_HOSTS = []
29+
30+
31+
# Application definition
32+
33+
INSTALLED_APPS = [
34+
'django.contrib.admin',
35+
'django.contrib.auth',
36+
'django.contrib.contenttypes',
37+
'django.contrib.sessions',
38+
'django.contrib.messages',
39+
'django.contrib.staticfiles',
40+
"account.apps.AccountConfig"
41+
]
42+
43+
MIDDLEWARE = [
44+
'django.middleware.security.SecurityMiddleware',
45+
'django.contrib.sessions.middleware.SessionMiddleware',
46+
'django.middleware.common.CommonMiddleware',
47+
'django.middleware.csrf.CsrfViewMiddleware',
48+
'django.contrib.auth.middleware.AuthenticationMiddleware',
49+
'django.contrib.messages.middleware.MessageMiddleware',
50+
'django.middleware.clickjacking.XFrameOptionsMiddleware',
51+
]
52+
53+
ROOT_URLCONF = 'WebFinalBack.urls'
54+
55+
TEMPLATES = [
56+
{
57+
'BACKEND': 'django.template.backends.django.DjangoTemplates',
58+
'DIRS': [BASE_DIR / 'templates']
59+
,
60+
'APP_DIRS': True,
61+
'OPTIONS': {
62+
'context_processors': [
63+
'django.template.context_processors.debug',
64+
'django.template.context_processors.request',
65+
'django.contrib.auth.context_processors.auth',
66+
'django.contrib.messages.context_processors.messages',
67+
],
68+
},
69+
},
70+
]
71+
72+
WSGI_APPLICATION = 'WebFinalBack.wsgi.application'
73+
74+
75+
# Database
76+
# https://docs.djangoproject.com/en/5.0/ref/settings/#databases
77+
78+
DATABASES = {
79+
'default': {
80+
'ENGINE': 'django.db.backends.sqlite3',
81+
'NAME': BASE_DIR / 'db.sqlite3',
82+
}
83+
}
84+
85+
86+
# Password validation
87+
# https://docs.djangoproject.com/en/5.0/ref/settings/#auth-password-validators
88+
89+
AUTH_PASSWORD_VALIDATORS = [
90+
{
91+
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
92+
},
93+
{
94+
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
95+
},
96+
{
97+
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
98+
},
99+
{
100+
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
101+
},
102+
]
103+
104+
105+
# Internationalization
106+
# https://docs.djangoproject.com/en/5.0/topics/i18n/
107+
108+
LANGUAGE_CODE = 'en-us'
109+
110+
TIME_ZONE = 'UTC'
111+
112+
USE_I18N = True
113+
114+
USE_TZ = True
115+
116+
117+
# Static files (CSS, JavaScript, Images)
118+
# https://docs.djangoproject.com/en/5.0/howto/static-files/
119+
120+
STATIC_URL = 'static/'
121+
122+
# Default primary key field type
123+
# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field
124+
125+
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'

WebFinalBack/WebFinalBack/urls.py

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
"""
2+
URL configuration for WebFinalBack project.
3+
4+
The `urlpatterns` list routes URLs to views. For more information please see:
5+
https://docs.djangoproject.com/en/5.0/topics/http/urls/
6+
Examples:
7+
Function views
8+
1. Add an import: from my_app import views
9+
2. Add a URL to urlpatterns: path('', views.home, name='home')
10+
Class-based views
11+
1. Add an import: from other_app.views import Home
12+
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
13+
Including another URLconf
14+
1. Import the include() function: from django.urls import include, path
15+
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
16+
"""
17+
from django.contrib import admin
18+
from django.urls import path
19+
20+
urlpatterns = [
21+
path('admin/', admin.site.urls),
22+
]

WebFinalBack/WebFinalBack/wsgi.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""
2+
WSGI config for WebFinalBack project.
3+
4+
It exposes the WSGI callable as a module-level variable named ``application``.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/5.0/howto/deployment/wsgi/
8+
"""
9+
10+
import os
11+
12+
from django.core.wsgi import get_wsgi_application
13+
14+
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'WebFinalBack.settings')
15+
16+
application = get_wsgi_application()

WebFinalBack/account/__init__.py

Whitespace-only changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

WebFinalBack/account/admin.py

Whitespace-only changes.

WebFinalBack/account/apps.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from django.apps import AppConfig
2+
3+
4+
class AccountConfig(AppConfig):
5+
default_auto_field = 'django.db.models.BigAutoField'
6+
name = 'account'
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
from django.contrib.auth import get_user_model
2+
from django.contrib.auth.backends import ModelBackend
3+
from django.core.exceptions import MultipleObjectsReturned
4+
from django.db.models import Q
5+
6+
from account import exceptions
7+
8+
UserModel = get_user_model()
9+
10+
11+
class AuthBackend(ModelBackend):
12+
"""
13+
Custom authentication backend that allows users to log in using their mobile,national_code or username.
14+
"""
15+
16+
def authenticate(self, request, user_name=None, password=None, **kwargs):
17+
try:
18+
user = UserModel.objects.get(Q(user_name=user_name) | Q(phone=user_name), is_active=False)
19+
except UserModel.DoesNotExist:
20+
raise exceptions.LoginFailException
21+
except MultipleObjectsReturned:
22+
user = UserModel.objects.filter(Q(user_name=user_name) | Q(phone=user_name)).order_by(
23+
'id').first()
24+
else:
25+
if user.check_password(password) and self.user_can_authenticate(user):
26+
return user
27+
28+
def get_user(self, user_id):
29+
try:
30+
user = UserModel.objects.get(pk=user_id)
31+
except UserModel.DoesNotExist:
32+
return None
33+
return user if self.user_can_authenticate(user) else None

WebFinalBack/account/exceptions.py

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
from rest_framework import status
2+
3+
from core.base_exception import BaseApiException
4+
from core.message_txt import MessageTxt
5+
6+
7+
class LoginFailException(BaseApiException):
8+
status_code = status.HTTP_401_UNAUTHORIZED
9+
default_detail = MessageTxt.LoginFailNoUser401
10+
default_code = 4001
11+
12+
13+
class InputValidDataException(BaseApiException):
14+
status_code = status.HTTP_400_BAD_REQUEST
15+
default_detail = MessageTxt.InputValidData
16+
default_code = 4002
17+
18+
19+
class InvalidInputException(BaseApiException):
20+
status_code = status.HTTP_400_BAD_REQUEST
21+
default_detail = MessageTxt.InvalidInput400
22+
default_code = 4003
23+
24+
25+
class NotFoundException(BaseApiException):
26+
status_code = status.HTTP_404_NOT_FOUND
27+
default_detail = MessageTxt.NotFound404
28+
default_code = 4004
29+
30+
31+
class UniqueMobileException(BaseApiException):
32+
status_code = status.HTTP_400_BAD_REQUEST
33+
default_detail = MessageTxt.UniqueMobile
34+
default_code = 4005
35+
36+
37+
class WrongPasswordException(BaseApiException):
38+
status_code = status.HTTP_400_BAD_REQUEST
39+
default_detail = MessageTxt.WrongPassword400
40+
default_code = 4007
41+
42+
43+
class UserNotActiveException(BaseApiException):
44+
status_code = status.HTTP_400_BAD_REQUEST
45+
default_detail = MessageTxt.UserNotActive
46+
default_code = 4008

WebFinalBack/account/filters.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import django_filters
2+
3+
from account.models import User
4+
5+
6+
class UserFilter(django_filters.FilterSet):
7+
class Meta:
8+
model = User
9+
fields = {
10+
'id': ['exact'],
11+
'first_name': ['exact', 'icontains'],
12+
'last_name': ['exact', 'icontains'],
13+
'phone': ['exact', 'icontains'],
14+
'user_name': ['exact', 'icontains'],
15+
16+
}

0 commit comments

Comments
 (0)