# -*- coding: utf-8 -*- # fargo - document box # Copyright (C) 2016-2019 Entr'ouvert # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Affero General Public License as published # by the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . """ Django settings for fargo project. For more information on this file, see https://docs.djangoproject.com/en/1.7/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.7/ref/settings/ """ from django.conf.global_settings import STATICFILES_FINDERS # Build paths inside the project like this: os.path.join(BASE_DIR, ...) import os BASE_DIR = os.path.dirname(os.path.dirname(__file__)) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = '74lgky$@g*rv=@1o55b-^ct&)))+xf+r3*vqmy#bg6!89*-*ym' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True INTERNAL_IPS = ['127.0.0.1', '::1'] ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'django_tables2', 'gadjo', 'fargo.fargo', 'rest_framework', 'fargo.oauth2', 'sorl.thumbnail', ) MIDDLEWARE_CLASSES = ( 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.auth.middleware.SessionAuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ) # Templates TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [ os.path.join(BASE_DIR, 'fargo', 'templates'), ], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.contrib.auth.context_processors.auth', 'django.template.context_processors.debug', 'django.template.context_processors.i18n', 'django.template.context_processors.media', 'django.template.context_processors.request', 'django.template.context_processors.static', 'django.template.context_processors.tz', 'django.contrib.messages.context_processors.messages', ], }, }, ] ROOT_URLCONF = 'fargo.urls' WSGI_APPLICATION = 'fargo.wsgi.application' STATICFILES_FINDERS = tuple(STATICFILES_FINDERS) + ('gadjo.finders.XStaticFinder',) # Database # https://docs.djangoproject.com/en/1.7/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'fargo.sqlite3'), 'ATOMIC_REQUESTS': True, } } # Internationalization # https://docs.djangoproject.com/en/1.7/topics/i18n/ LANGUAGE_CODE = 'fr-FR' TIME_ZONE = 'Europe/Paris' USE_I18N = True USE_L10N = True USE_TZ = True STATICFILES_DIRS = [os.path.join(BASE_DIR, 'fargo', 'static')] MEDIA_ROOT = os.path.join(BASE_DIR, 'media') # mode for newly updated files FILE_UPLOAD_PERMISSIONS = 0o644 LOCALE_PATHS = [os.path.join(BASE_DIR, 'fargo', 'locale')] # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.7/howto/static-files/ STATIC_URL = '/static/' LOGIN_URL = '/login/' LOGOUT_URL = '/logout/' # Authentication settings try: import mellon INSTALLED_APPS = INSTALLED_APPS + ('mellon',) except ImportError: mellon = None if mellon is not None: AUTHENTICATION_BACKENDS = ( 'mellon.backends.SAMLBackend', 'django.contrib.auth.backends.ModelBackend', ) MELLON_ATTRIBUTE_MAPPING = { 'email': '{attributes[email][0]}', 'first_name': '{attributes[first_name][0]}', 'last_name': '{attributes[last_name][0]}', } MELLON_SUPERUSER_MAPPING = { 'is_superuser': 'true', } MELLON_USERNAME_TEMPLATE = '{attributes[name_id_content]}' MELLON_IDENTITY_PROVIDERS = [] # Fargo settings FARGO_MAX_DOCUMENT_SIZE = 4 * 1024 * 1024 # 4 Mo FARGO_MAX_DOCUMENT_BOX_SIZE = 20 * 1024 * 1024 # 20 Mo FARGO_VALIDATION_LIFETIME = 3600 * 24 * 31 * 6 # nearly 6 months FARGO_DOCUMENT_TYPES = [ { 'name': 'avis-d-imposition', 'label': u'Avis d\'imposition', 'metadata': [ { 'label': u'Personne-s concernée-s', 'varname': 'personnes_concernees', 'type': 'string' }, { 'label': u'Année', 'varname': 'annee', 'type': 'string', 'validation': ' *[0-9]{4} *', }, { 'label': u'Revenu fiscal de référence', 'varname': 'revenu_fiscal_de_reference', 'type': 'string', 'validation': ' *[0-9]+ *' }, ], }, ] LOGIN_REDIRECT_URL = 'home' REST_FRAMEWORK = { 'NON_FIELD_ERRORS_KEY': '__all__', 'DEFAULT_AUTHENTICATION_CLASSES': ( 'rest_framework.authentication.BasicAuthentication', 'rest_framework.authentication.SessionAuthentication', ), 'DEFAULT_PERMISSION_CLASSES': ( 'rest_framework.permissions.IsAuthenticated', 'rest_framework.permissions.IsAdminUser', ), 'DEFAULT_FILTER_BACKENDS': ( 'rest_framework.filters.DjangoFilterBackend', 'rest_framework.filters.OrderingFilter', ), 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination', 'PAGE_SIZE': 10, } LOGGING = { 'version': 1, 'disable_existing_loggers': True, 'formatters': { 'simple': { 'format': '%(levelname)s %(asctime)s %(name)s: %(message)s' }, }, 'handlers': { 'console': { 'level': 'DEBUG', 'class': 'logging.StreamHandler', 'formatter': 'simple', }, }, 'loggers': { 'django.db': { 'level': 'INFO', }, 'django': { 'level': 'INFO', }, '': { 'handlers': ['console'], 'level': 'DEBUG', }, }, } INCLUDE_EDIT_LINK = False # from solr.thumbnail -- https://sorl-thumbnail.readthedocs.io/en/latest/reference/settings.html THUMBNAIL_ENGINE = 'sorl.thumbnail.engines.convert_engine.Engine' THUMBNAIL_FORCE_OVERWRITE = False FARGO_CODE_LIFETIME = 300 FARGO_ACCESS_TOKEN_LIFETIME = 3600 FARGO_OAUTH2_TEMPFILE_LIFETIME = 86400 local_settings_file = os.environ.get('FARGO_SETTINGS_FILE', os.path.join( os.path.dirname(__file__), 'local_settings.py')) if os.path.exists(local_settings_file): exec(open(local_settings_file).read())