293 lines
8.5 KiB
Python
293 lines
8.5 KiB
Python
"""
|
|
Django settings for module_project project.
|
|
|
|
Generated by 'django-admin startproject' using Django 4.2.5.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/4.2/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/4.2/ref/settings/
|
|
"""
|
|
import environ
|
|
from pathlib import Path
|
|
from django.contrib.messages import constants as messages
|
|
import colorlog
|
|
import datetime
|
|
|
|
BASE_DIR = Path(__file__).resolve().parent.parent.parent
|
|
|
|
env = environ.Env()
|
|
|
|
READ_DOT_ENV_FILE = env.bool("DJANGO_READ_DOT_ENV_FILE", default=True)
|
|
if READ_DOT_ENV_FILE:
|
|
# OS environment variables take precedence over variables from .env
|
|
env.read_env(str(BASE_DIR / ".env"))
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/4.2/howto/deployment/checklist/
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
|
|
SECRET_KEY = env.str("SECRET_KEY")
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = env.bool("DJANGO_DEBUG", True)
|
|
|
|
ALLOWED_HOSTS = []
|
|
|
|
|
|
# Application definition
|
|
DJANGO_APPS = [
|
|
"django.contrib.admin",
|
|
"django.contrib.auth",
|
|
"django.contrib.contenttypes",
|
|
"django.contrib.sessions",
|
|
"django.contrib.messages",
|
|
"django.contrib.staticfiles",
|
|
]
|
|
|
|
LOCAL_APPS = [
|
|
"module_iam",
|
|
"module_auth",
|
|
"module_activity",
|
|
"module_cms",
|
|
"module_support",
|
|
"module_notification",
|
|
]
|
|
|
|
THIRD_PARTY_APPS = [
|
|
"corsheaders",
|
|
"widget_tweaks",
|
|
"rest_framework_simplejwt",
|
|
"taggit",
|
|
"django_quill",
|
|
"django_crontab",
|
|
]
|
|
|
|
# https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps
|
|
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS
|
|
|
|
|
|
MIDDLEWARE = [
|
|
"corsheaders.middleware.CorsMiddleware",
|
|
'django.middleware.security.SecurityMiddleware',
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
|
]
|
|
|
|
ROOT_URLCONF = 'module_project.urls'
|
|
|
|
TEMPLATES = [
|
|
{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': [BASE_DIR.joinpath("templates")],
|
|
'APP_DIRS': True,
|
|
'OPTIONS': {
|
|
'context_processors': [
|
|
'module_iam.context_processors.iam_constants_context',
|
|
'django.template.context_processors.debug',
|
|
'django.template.context_processors.request',
|
|
'django.contrib.auth.context_processors.auth',
|
|
'django.contrib.messages.context_processors.messages',
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
WSGI_APPLICATION = 'module_project.wsgi.application'
|
|
# WSGI_APPLICATION = 'module_project.asgi.application'
|
|
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/4.2/ref/settings/#databases
|
|
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.mysql",
|
|
"NAME": env.str("DB_DATABASE"),
|
|
"HOST": env.str("DB_HOST"),
|
|
"USER": env.str("DB_USERNAME"),
|
|
"PASSWORD": env.str("DB_PASSWORD"),
|
|
"PORT": env.str("DB_PORT"),
|
|
}
|
|
}
|
|
# DATABASES["default"]["ATOMIC_REQUESTS"] = True
|
|
|
|
# Password validation
|
|
# https://docs.djangoproject.com/en/4.2/ref/settings/#auth-password-validators
|
|
|
|
AUTH_PASSWORD_VALIDATORS = [
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
|
|
},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
|
|
},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
|
|
},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
|
|
},
|
|
]
|
|
|
|
|
|
# Internationalization
|
|
# https://docs.djangoproject.com/en/4.2/topics/i18n/
|
|
|
|
LANGUAGE_CODE = 'en-us'
|
|
|
|
TIME_ZONE = 'UTC'
|
|
|
|
USE_I18N = True
|
|
|
|
USE_TZ = True
|
|
|
|
SHORT_DATETIME_FORMAT = "d-m-Y H:i:s"
|
|
|
|
SHORT_DATE_FORMAT = "d-m-Y"
|
|
|
|
TIME_FORMAT = "H:i p"
|
|
|
|
# otp expire time limit
|
|
OTP_EXPIRE_TIME = 2 # mins
|
|
|
|
APPEND_SLASH = True
|
|
LOGIN_REDIRECT_URL = "/iam/dashboard/"
|
|
LOGIN_URL = "/login/"
|
|
LOGOUT_REDIRECT_URL = "/login/"
|
|
|
|
|
|
# https://docs.djangoproject.com/en/4.2/topics/auth/customizing/#substituting-a-custom-user-model
|
|
AUTH_USER_MODEL = "module_iam.IAmPrincipal"
|
|
|
|
# https://docs.djangoproject.com/en/4.2/topics/auth/customizing/
|
|
AUTHENTICATION_BACKENDS = [
|
|
# 'accounts.backend.EmailBackend',
|
|
"django.contrib.auth.backends.ModelBackend",
|
|
]
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
# https://docs.djangoproject.com/en/4.2/howto/static-files/
|
|
|
|
STATIC_URL = 'static/'
|
|
|
|
# Default primary key field type
|
|
# https://docs.djangoproject.com/en/4.2/ref/settings/#default-auto-field
|
|
|
|
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
|
|
|
|
|
|
# rest framework permission and authentication settings
|
|
# https://www.django-rest-framework.org/api-guide/permissions/#setting-the-permission-policy
|
|
REST_FRAMEWORK = {
|
|
"DEFAULT_PERMISSION_CLASSES": [
|
|
"rest_framework.permissions.IsAuthenticated",
|
|
],
|
|
"DEFAULT_AUTHENTICATION_CLASSES": (
|
|
"rest_framework_simplejwt.authentication.JWTAuthentication",
|
|
),
|
|
}
|
|
|
|
MESSAGE_TAGS = {
|
|
messages.DEBUG: "alert-primary",
|
|
messages.INFO: "alert-info",
|
|
messages.SUCCESS: "alert-success",
|
|
messages.WARNING: "alert-warning",
|
|
messages.ERROR: "alert-danger",
|
|
}
|
|
|
|
|
|
# smtp email settings
|
|
# https://docs.djangoproject.com/en/4.2/topics/email/#smtp-backend
|
|
|
|
EMAIL_BACKEND = env.str(
|
|
"EMAIL_BACKEND", default="django.core.mail.backends.smtp.EmailBackend"
|
|
)
|
|
EMAIL_HOST = env.str("EMAIL_HOST")
|
|
EMAIL_HOST_USER = env.str("EMAIL_HOST_USER")
|
|
EMAIL_HOST_PASSWORD = env.str("EMAIL_HOST_PASSWORD")
|
|
EMAIL_PORT = env.str("EMAIL_PORT")
|
|
EMAIL_USE_TLS = True
|
|
|
|
ONESIGNAL_APP_ID = env.str("ONESIGNAL_APP_ID")
|
|
ONESIGNAL_REST_API_KEY = env.str("ONESIGNAL_REST_API_KEY")
|
|
ONESIGNAL_USER_AUTH_KEY = env.str("ONESIGNAL_USER_AUTH_KEY")
|
|
|
|
# LOGGING
|
|
# ------------------------------------------------------------------------------
|
|
# https://docs.djangoproject.com/en/4.2/topics/logging/#logging
|
|
# https://docs.djangoproject.com/en/dev/ref/settings/#logging
|
|
# See https://docs.djangoproject.com/en/dev/topics/logging for
|
|
# more details on how to customize your logging configuration.
|
|
|
|
LOGGING = {
|
|
"version": 1,
|
|
"disable_existing_loggers": False,
|
|
"formatters": {
|
|
"verbose": {
|
|
"()": colorlog.ColoredFormatter,
|
|
"format": "%(cyan)s%(asctime)s%(reset)s | %(red)s[%(levelname)8s]%(reset)s | [ %(yellow)s%(name)s.%(module)s:%(white)s%(lineno)d%(reset)s - %(green)s%(funcName)10s()%(reset)s ] --> %(message)s",
|
|
"datefmt": "%Y-%m-%d %H:%M:%S",
|
|
"log_colors": {
|
|
"DEBUG": "white",
|
|
"INFO": "green",
|
|
"WARNING": "yellow",
|
|
"ERROR": "red",
|
|
"CRITICAL": "bold_red",
|
|
},
|
|
"secondary_log_colors": {},
|
|
"style": "%",
|
|
}
|
|
},
|
|
"handlers": {
|
|
"console": {
|
|
"level": "DEBUG",
|
|
"class": "logging.StreamHandler",
|
|
"formatter": "verbose",
|
|
}
|
|
},
|
|
"root": {"level": "INFO", "handlers": ["console"]},
|
|
}
|
|
|
|
|
|
# jwt configuration
|
|
# https://django-rest-framework-simplejwt.readthedocs.io/en/latest/settings.html#settings
|
|
SIMPLE_JWT = {
|
|
"ACCESS_TOKEN_LIFETIME": datetime.timedelta(days=15),
|
|
"REFRESH_TOKEN_LIFETIME": datetime.timedelta(days=15),
|
|
"ROTATE_REFRESH_TOKENS": False,
|
|
"BLACKLIST_AFTER_ROTATION": False,
|
|
"UPDATE_LAST_LOGIN": False,
|
|
"ALGORITHM": "HS256",
|
|
"SIGNING_KEY": SECRET_KEY,
|
|
"VERIFYING_KEY": "",
|
|
"AUDIENCE": None,
|
|
"ISSUER": None,
|
|
"JSON_ENCODER": None,
|
|
"JWK_URL": None,
|
|
"LEEWAY": 0,
|
|
"AUTH_HEADER_TYPES": ("Bearer",),
|
|
"AUTH_HEADER_NAME": "HTTP_AUTHORIZATION",
|
|
"USER_ID_FIELD": "id",
|
|
"USER_ID_CLAIM": "user_id",
|
|
"USER_AUTHENTICATION_RULE": "rest_framework_simplejwt.authentication.default_user_authentication_rule",
|
|
"AUTH_TOKEN_CLASSES": ("rest_framework_simplejwt.tokens.AccessToken",),
|
|
"TOKEN_TYPE_CLAIM": "token_type",
|
|
"TOKEN_USER_CLASS": "rest_framework_simplejwt.models.TokenUser",
|
|
"JTI_CLAIM": "jti",
|
|
}
|
|
|
|
CRONJOBS = [
|
|
('0 18 * * *', 'module_notification.tasks.notification_for_meal', '>> {}'.format(str(BASE_DIR / 'logs/cron.log'))),
|
|
('0 20 * * *', 'module_notification.tasks.notification_for_medication', '>> {}'.format(str(BASE_DIR / 'logs/cron.log'))),
|
|
# ('* * * * *', 'module_notification.tasks.testing_cron', '>> {}'.format(str(BASE_DIR / 'logs/cron.log'))),
|
|
|
|
]
|