2016-05-26 04:06:17 +02:00
|
|
|
"""
|
2017-04-10 23:18:00 +02:00
|
|
|
Django common settings for cof project.
|
2016-05-26 04:06:17 +02:00
|
|
|
|
2017-04-10 23:18:00 +02:00
|
|
|
Everything which is supposed to be identical between the production server and
|
2017-04-15 12:09:16 +02:00
|
|
|
the local development server should be here.
|
2016-05-26 04:06:17 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
2018-01-15 05:26:33 +01:00
|
|
|
import sys
|
2016-05-26 04:06:17 +02:00
|
|
|
|
2017-04-10 23:18:00 +02:00
|
|
|
try:
|
2017-08-08 01:06:03 +02:00
|
|
|
from . import secret
|
2017-04-10 23:18:00 +02:00
|
|
|
except ImportError:
|
2017-08-08 01:06:03 +02:00
|
|
|
raise ImportError(
|
|
|
|
"The secret.py file is missing.\n"
|
|
|
|
"For a development environment, simply copy secret_example.py"
|
|
|
|
)
|
2017-04-10 23:18:00 +02:00
|
|
|
|
2017-04-15 14:41:55 +02:00
|
|
|
|
2017-08-08 01:06:03 +02:00
|
|
|
def import_secret(name):
|
|
|
|
"""
|
|
|
|
Shorthand for importing a value from the secret module and raising an
|
|
|
|
informative exception if a secret is missing.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
return getattr(secret, name)
|
|
|
|
except AttributeError:
|
|
|
|
raise RuntimeError("Secret missing: {}".format(name))
|
|
|
|
|
|
|
|
|
|
|
|
SECRET_KEY = import_secret("SECRET_KEY")
|
|
|
|
ADMINS = import_secret("ADMINS")
|
2017-08-08 01:25:13 +02:00
|
|
|
SERVER_EMAIL = import_secret("SERVER_EMAIL")
|
2017-10-25 22:05:14 +02:00
|
|
|
EMAIL_HOST = import_secret("EMAIL_HOST")
|
2017-08-08 01:06:03 +02:00
|
|
|
|
|
|
|
DBNAME = import_secret("DBNAME")
|
|
|
|
DBUSER = import_secret("DBUSER")
|
|
|
|
DBPASSWD = import_secret("DBPASSWD")
|
|
|
|
|
|
|
|
REDIS_PASSWD = import_secret("REDIS_PASSWD")
|
|
|
|
REDIS_DB = import_secret("REDIS_DB")
|
|
|
|
REDIS_HOST = import_secret("REDIS_HOST")
|
|
|
|
REDIS_PORT = import_secret("REDIS_PORT")
|
|
|
|
|
|
|
|
KFETOPEN_TOKEN = import_secret("KFETOPEN_TOKEN")
|
2017-09-20 18:19:15 +02:00
|
|
|
LDAP_SERVER_URL = import_secret("LDAP_SERVER_URL")
|
2017-04-10 23:18:00 +02:00
|
|
|
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
2016-05-26 04:06:17 +02:00
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
TESTING = sys.argv[1] == "test"
|
2016-05-26 04:06:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Application definition
|
2017-04-10 23:18:00 +02:00
|
|
|
INSTALLED_APPS = [
|
2018-10-06 12:35:49 +02:00
|
|
|
"shared",
|
|
|
|
"gestioncof",
|
2017-11-19 18:41:39 +01:00
|
|
|
# Must be before 'django.contrib.admin'.
|
|
|
|
# https://django-autocomplete-light.readthedocs.io/en/master/install.html
|
2019-01-06 00:25:41 +01:00
|
|
|
"dal",
|
|
|
|
"dal_select2",
|
|
|
|
"django.contrib.auth",
|
|
|
|
"django.contrib.contenttypes",
|
|
|
|
"django.contrib.sessions",
|
|
|
|
"django.contrib.sites",
|
|
|
|
"django.contrib.messages",
|
2019-10-16 20:51:10 +02:00
|
|
|
"cof.apps.IgnoreSrcStaticFilesConfig", # Must be before django admin
|
2019-02-04 22:50:27 +01:00
|
|
|
# https://github.com/infoportugal/wagtail-modeltranslation/issues/193
|
|
|
|
"wagtail_modeltranslation",
|
|
|
|
"wagtail_modeltranslation.makemigrations",
|
|
|
|
"wagtail_modeltranslation.migrate",
|
|
|
|
"modeltranslation",
|
2019-01-06 00:25:41 +01:00
|
|
|
"django.contrib.admin",
|
|
|
|
"django.contrib.admindocs",
|
|
|
|
"bda",
|
2018-11-25 00:37:22 +01:00
|
|
|
"petitscours",
|
2019-01-06 00:25:41 +01:00
|
|
|
"captcha",
|
|
|
|
"django_cas_ng",
|
|
|
|
"bootstrapform",
|
|
|
|
"kfet",
|
|
|
|
"kfet.open",
|
|
|
|
"channels",
|
|
|
|
"widget_tweaks",
|
|
|
|
"custommail",
|
|
|
|
"djconfig",
|
2019-02-04 22:50:27 +01:00
|
|
|
"wagtail.contrib.forms",
|
|
|
|
"wagtail.contrib.redirects",
|
|
|
|
"wagtail.embeds",
|
|
|
|
"wagtail.sites",
|
|
|
|
"wagtail.users",
|
|
|
|
"wagtail.snippets",
|
|
|
|
"wagtail.documents",
|
|
|
|
"wagtail.images",
|
|
|
|
"wagtail.search",
|
|
|
|
"wagtail.admin",
|
|
|
|
"wagtail.core",
|
2019-01-06 00:25:41 +01:00
|
|
|
"wagtail.contrib.modeladmin",
|
2019-02-04 22:50:27 +01:00
|
|
|
"wagtail.contrib.routable_page",
|
2019-01-06 00:25:41 +01:00
|
|
|
"wagtailmenus",
|
|
|
|
"modelcluster",
|
|
|
|
"taggit",
|
|
|
|
"kfet.auth",
|
|
|
|
"kfet.cms",
|
|
|
|
"gestioncof.cms",
|
2017-04-10 23:18:00 +02:00
|
|
|
]
|
2016-05-26 04:06:17 +02:00
|
|
|
|
2018-11-19 23:30:33 +01:00
|
|
|
|
2017-11-19 18:41:39 +01:00
|
|
|
MIDDLEWARE = [
|
2018-10-06 12:35:49 +02:00
|
|
|
"corsheaders.middleware.CorsMiddleware",
|
2019-01-06 00:25:41 +01:00
|
|
|
"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",
|
|
|
|
"django.middleware.security.SecurityMiddleware",
|
|
|
|
"djconfig.middleware.DjConfigMiddleware",
|
2019-02-04 22:50:27 +01:00
|
|
|
"wagtail.core.middleware.SiteMiddleware",
|
|
|
|
"wagtail.contrib.redirects.middleware.RedirectMiddleware",
|
2019-01-06 00:25:41 +01:00
|
|
|
"django.middleware.locale.LocaleMiddleware",
|
2017-04-10 23:18:00 +02:00
|
|
|
]
|
2016-05-26 04:06:17 +02:00
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
ROOT_URLCONF = "cof.urls"
|
2016-05-26 04:06:17 +02:00
|
|
|
|
|
|
|
TEMPLATES = [
|
|
|
|
{
|
2018-10-06 12:35:49 +02:00
|
|
|
"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",
|
|
|
|
"django.template.context_processors.i18n",
|
|
|
|
"django.template.context_processors.media",
|
|
|
|
"django.template.context_processors.static",
|
|
|
|
"wagtailmenus.context_processors.wagtailmenus",
|
|
|
|
"djconfig.context_processors.config",
|
|
|
|
"gestioncof.shared.context_processor",
|
|
|
|
"kfet.auth.context_processors.temporary_auth",
|
|
|
|
"kfet.context_processors.config",
|
|
|
|
]
|
2016-05-26 04:06:17 +02:00
|
|
|
},
|
2018-10-06 12:35:49 +02:00
|
|
|
}
|
2016-05-26 04:06:17 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
DATABASES = {
|
2018-10-06 12:35:49 +02:00
|
|
|
"default": {
|
|
|
|
"ENGINE": "django.db.backends.postgresql_psycopg2",
|
|
|
|
"NAME": DBNAME,
|
|
|
|
"USER": DBUSER,
|
|
|
|
"PASSWORD": DBPASSWD,
|
|
|
|
"HOST": os.environ.get("DBHOST", "localhost"),
|
2016-05-26 04:06:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Internationalization
|
|
|
|
# https://docs.djangoproject.com/en/1.8/topics/i18n/
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
LANGUAGE_CODE = "fr-fr"
|
2016-05-26 04:06:17 +02:00
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
TIME_ZONE = "Europe/Paris"
|
2016-05-26 04:06:17 +02:00
|
|
|
|
|
|
|
USE_I18N = True
|
|
|
|
|
|
|
|
USE_L10N = True
|
|
|
|
|
|
|
|
USE_TZ = True
|
|
|
|
|
2019-01-06 00:25:41 +01:00
|
|
|
LANGUAGES = (("fr", "Français"), ("en", "English"))
|
2017-08-07 23:31:27 +02:00
|
|
|
|
2016-05-26 04:06:17 +02:00
|
|
|
# Various additional settings
|
|
|
|
SITE_ID = 1
|
|
|
|
|
|
|
|
GRAPPELLI_ADMIN_HEADLINE = "GestioCOF"
|
2018-10-06 12:35:49 +02:00
|
|
|
GRAPPELLI_ADMIN_TITLE = '<a href="/">GestioCOF</a>'
|
2016-05-26 04:06:17 +02:00
|
|
|
|
2016-09-27 17:57:53 +02:00
|
|
|
MAIL_DATA = {
|
2018-10-06 12:35:49 +02:00
|
|
|
"petits_cours": {
|
|
|
|
"FROM": "Le COF <cof@ens.fr>",
|
|
|
|
"BCC": "archivescof@gmail.com",
|
|
|
|
"REPLYTO": "cof@ens.fr",
|
|
|
|
},
|
|
|
|
"rappels": {"FROM": "Le BdA <bda@ens.fr>", "REPLYTO": "Le BdA <bda@ens.fr>"},
|
|
|
|
"revente": {
|
|
|
|
"FROM": "BdA-Revente <bda-revente@ens.fr>",
|
|
|
|
"REPLYTO": "BdA-Revente <bda-revente@ens.fr>",
|
|
|
|
},
|
2016-09-27 17:57:53 +02:00
|
|
|
}
|
2016-07-29 01:50:08 +02:00
|
|
|
|
2016-11-06 01:36:10 +01:00
|
|
|
LOGIN_URL = "cof-login"
|
|
|
|
LOGIN_REDIRECT_URL = "home"
|
2016-05-26 04:06:17 +02:00
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
CAS_SERVER_URL = "https://cas.eleves.ens.fr/"
|
2018-11-12 00:54:44 +01:00
|
|
|
CAS_VERSION = "2"
|
2017-05-30 20:44:30 +02:00
|
|
|
CAS_LOGIN_MSG = None
|
2016-05-26 04:06:17 +02:00
|
|
|
CAS_IGNORE_REFERER = True
|
2018-10-06 12:35:49 +02:00
|
|
|
CAS_REDIRECT_URL = "/"
|
2016-05-26 04:06:17 +02:00
|
|
|
CAS_EMAIL_FORMAT = "%s@clipper.ens.fr"
|
2017-05-30 20:44:30 +02:00
|
|
|
|
2016-05-26 04:06:17 +02:00
|
|
|
AUTHENTICATION_BACKENDS = (
|
2018-10-06 12:35:49 +02:00
|
|
|
"django.contrib.auth.backends.ModelBackend",
|
|
|
|
"gestioncof.shared.COFCASBackend",
|
|
|
|
"kfet.auth.backends.GenericBackend",
|
2016-05-26 04:06:17 +02:00
|
|
|
)
|
|
|
|
|
2018-05-14 13:22:59 +02:00
|
|
|
|
|
|
|
# reCAPTCHA settings
|
|
|
|
# https://github.com/praekelt/django-recaptcha
|
|
|
|
#
|
|
|
|
# Default settings authorize reCAPTCHA usage for local developement.
|
|
|
|
# Public and private keys are appended in the 'prod' module settings.
|
|
|
|
|
|
|
|
NOCAPTCHA = True
|
2016-05-26 04:06:17 +02:00
|
|
|
RECAPTCHA_USE_SSL = True
|
2016-05-27 01:04:35 +02:00
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
CORS_ORIGIN_WHITELIST = ("bda.ens.fr", "www.bda.ens.fr" "cof.ens.fr", "www.cof.ens.fr")
|
2017-09-13 18:21:34 +02:00
|
|
|
|
2017-04-26 11:28:18 +02:00
|
|
|
# Cache settings
|
2017-04-10 21:36:00 +02:00
|
|
|
|
|
|
|
CACHES = {
|
2018-10-06 12:35:49 +02:00
|
|
|
"default": {
|
|
|
|
"BACKEND": "redis_cache.RedisCache",
|
|
|
|
"LOCATION": "redis://:{passwd}@{host}:{port}/db".format(
|
|
|
|
passwd=REDIS_PASSWD, host=REDIS_HOST, port=REDIS_PORT, db=REDIS_DB
|
|
|
|
),
|
2017-04-10 21:36:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-14 20:31:22 +02:00
|
|
|
# Channels settings
|
|
|
|
|
|
|
|
CHANNEL_LAYERS = {
|
|
|
|
"default": {
|
|
|
|
"BACKEND": "asgi_redis.RedisChannelLayer",
|
|
|
|
"CONFIG": {
|
2018-10-06 12:35:49 +02:00
|
|
|
"hosts": [
|
|
|
|
(
|
|
|
|
"redis://:{passwd}@{host}:{port}/{db}".format(
|
|
|
|
passwd=REDIS_PASSWD,
|
|
|
|
host=REDIS_HOST,
|
|
|
|
port=REDIS_PORT,
|
|
|
|
db=REDIS_DB,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
]
|
2016-08-14 20:31:22 +02:00
|
|
|
},
|
2017-06-21 07:08:28 +02:00
|
|
|
"ROUTING": "cof.routing.routing",
|
2016-08-14 20:31:22 +02:00
|
|
|
}
|
|
|
|
}
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
FORMAT_MODULE_PATH = "cof.locale"
|
2017-05-30 20:44:30 +02:00
|
|
|
|
|
|
|
# Wagtail settings
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
WAGTAIL_SITE_NAME = "GestioCOF"
|
2017-05-30 20:44:30 +02:00
|
|
|
WAGTAIL_ENABLE_UPDATE_CHECK = False
|
|
|
|
TAGGIT_CASE_INSENSITIVE = True
|