244 lines
6.1 KiB
Python
244 lines
6.1 KiB
Python
"""
|
|
Django settings for apiserver project.
|
|
|
|
Generated by 'django-admin startproject' using Django 3.0.2.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/3.0/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/3.0/ref/settings/
|
|
"""
|
|
|
|
import os
|
|
import logging
|
|
|
|
from . import secrets
|
|
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY = secrets.DJANGO_SECRET_KEY
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG_ENV = os.environ.get('DEBUG', False)
|
|
DEBUG = DEBUG_ENV or False
|
|
if DEBUG: print('Debug mode ON')
|
|
|
|
|
|
PRODUCTION_HOST = 'spaceport.protospace.ca'
|
|
|
|
|
|
# production hosts
|
|
ALLOWED_HOSTS = [
|
|
'api.' + PRODUCTION_HOST,
|
|
]
|
|
|
|
if DEBUG:
|
|
ALLOWED_HOSTS += [
|
|
'localhost',
|
|
'127.0.0.1',
|
|
'spaceport-api.dns.t0.vc',
|
|
'api.spaceport.dns.t0.vc',
|
|
]
|
|
|
|
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
|
|
|
|
|
|
# Application definition
|
|
|
|
INSTALLED_APPS = [
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'django.contrib.sites',
|
|
'rest_framework',
|
|
'rest_framework.authtoken',
|
|
'apiserver.api',
|
|
'rest_auth',
|
|
'allauth',
|
|
'allauth.account',
|
|
'allauth.socialaccount', # to support user deletion
|
|
'rest_auth.registration',
|
|
'simple_history',
|
|
]
|
|
|
|
MIDDLEWARE = [
|
|
'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',
|
|
'simple_history.middleware.HistoryRequestMiddleware',
|
|
]
|
|
|
|
ROOT_URLCONF = 'apiserver.urls'
|
|
|
|
TEMPLATES = [
|
|
{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': [],
|
|
'APP_DIRS': True,
|
|
'OPTIONS': {
|
|
'context_processors': [
|
|
'django.template.context_processors.debug',
|
|
'django.template.context_processors.request',
|
|
'django.contrib.auth.context_processors.auth',
|
|
'django.contrib.messages.context_processors.messages',
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
WSGI_APPLICATION = 'apiserver.wsgi.application'
|
|
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': os.path.join(BASE_DIR, 'data/db.sqlite3'),
|
|
},
|
|
'old_portal': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': os.path.join(BASE_DIR, 'old_portal.sqlite3'),
|
|
}
|
|
}
|
|
|
|
|
|
# Password validation
|
|
# https://docs.djangoproject.com/en/3.0/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',
|
|
},
|
|
]
|
|
|
|
PASSWORD_HASHERS = [
|
|
'django.contrib.auth.hashers.Argon2PasswordHasher',
|
|
'django.contrib.auth.hashers.PBKDF2PasswordHasher',
|
|
'django.contrib.auth.hashers.PBKDF2SHA1PasswordHasher',
|
|
'django.contrib.auth.hashers.BCryptSHA256PasswordHasher',
|
|
]
|
|
|
|
|
|
|
|
# Internationalization
|
|
# https://docs.djangoproject.com/en/3.0/topics/i18n/
|
|
|
|
LANGUAGE_CODE = 'en-us'
|
|
|
|
TIME_ZONE = 'UTC'
|
|
|
|
USE_I18N = True
|
|
|
|
USE_L10N = True
|
|
|
|
USE_TZ = True
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
# https://docs.djangoproject.com/en/3.0/howto/static-files/
|
|
|
|
if DEBUG:
|
|
STATIC_URL = '/static/'
|
|
else:
|
|
STATIC_URL = 'https://static.{}/'.format(PRODUCTION_HOST)
|
|
STATIC_ROOT = os.path.join(BASE_DIR, 'data/static')
|
|
|
|
|
|
DEFAULT_RENDERER_CLASSES = (
|
|
'rest_framework.renderers.JSONRenderer',
|
|
)
|
|
|
|
if DEBUG:
|
|
DEFAULT_RENDERER_CLASSES += (
|
|
'rest_framework.renderers.BrowsableAPIRenderer',
|
|
)
|
|
|
|
DEFAULT_AUTHENTICATION_CLASSES = (
|
|
'rest_framework.authentication.TokenAuthentication',
|
|
)
|
|
|
|
if DEBUG:
|
|
DEFAULT_AUTHENTICATION_CLASSES += (
|
|
'rest_framework.authentication.SessionAuthentication',
|
|
)
|
|
|
|
REST_FRAMEWORK = {
|
|
'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination',
|
|
'PAGE_SIZE': 100,
|
|
'DEFAULT_RENDERER_CLASSES': DEFAULT_RENDERER_CLASSES,
|
|
'DEFAULT_AUTHENTICATION_CLASSES': DEFAULT_AUTHENTICATION_CLASSES,
|
|
}
|
|
|
|
LOGGING = {
|
|
'version': 1,
|
|
'formatters': {
|
|
'verbose': {
|
|
'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
|
|
},
|
|
'medium': {
|
|
'format': '[%(asctime)s] [%(levelname)s] %(message)s'
|
|
},
|
|
'simple': {
|
|
'format': '%(levelname)s %(message)s'
|
|
},
|
|
},
|
|
'handlers': {
|
|
'console': {
|
|
'level': 'INFO',
|
|
'class': 'logging.StreamHandler',
|
|
'formatter': 'medium'
|
|
},
|
|
},
|
|
'loggers': {
|
|
'gunicorn': {
|
|
'handlers': ['console'],
|
|
'level': 'ERROR',
|
|
'propagate': True,
|
|
},
|
|
'django': {
|
|
'handlers': ['console'],
|
|
'level': 'INFO',
|
|
'propagate': True,
|
|
},
|
|
'': {
|
|
'handlers': ['console'],
|
|
'level': 'INFO',
|
|
'propagate': True,
|
|
},
|
|
}
|
|
}
|
|
|
|
SITE_ID = 1
|
|
ACCOUNT_EMAIL_REQUIRED = True
|
|
ACCOUNT_EMAIL_VERIFICATION = 'none'
|
|
ACCOUNT_USERNAME_MIN_LENGTH = 3
|
|
ACCOUNT_AUTHENTICATION_METHOD = 'username'
|
|
OLD_PASSWORD_FIELD_ENABLED = True
|
|
LOGOUT_ON_PASSWORD_CHANGE = False
|
|
ACCOUNT_PRESERVE_USERNAME_CASING = False
|