greenelab/adage-server

View on GitHub
adage/adage/settings.py

Summary

Maintainability
A
0 mins
Test Coverage
"""
Django settings for adage project.

Generated by 'django-admin startproject' using Django 1.8.1.

For more information on this file, see
https://docs.djangoproject.com/en/1.8/topics/settings/

For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.8/ref/settings/
"""

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

# Any deployment configuration settings (including all secrets)
# come from config.py, which is never checked into source control.
# If we're running under CircleCI, we build a CONFIG on the fly using
# `config-template.py`.
if os.environ.get('CIRCLECI', 'false') == 'true':
    with open(os.path.join(BASE_DIR, 'adage', 'config-template.py')) as f:
        exec f
    CONFIG = CIRCLECI_CONFIG
elif os.environ.get('DOCKER_DEV', 'false') == 'true':
    with open(os.path.join(BASE_DIR, 'adage', 'config-template.py')) as f:
        exec f
    CONFIG = DOCKER_DEV
else:
    from config import CONFIG

# Quick-start development settings - unsuitable for production
# TODO: review Django deployment checklist
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = CONFIG['django_key']

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = CONFIG.get('debug', True)

ALLOWED_HOSTS = CONFIG.get('allowed_hosts', [])

# Application definition
INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'haystack',
    'tastypie',
    'analyze',
    'organisms',
    'genes',
    'tribe_client',
)

# Tastypie options
API_LIMIT_PER_PAGE = 50
TASTYPIE_FULL_DEBUG = True

# Google Analytics code (should be defined in config.py)
GA_CODE = CONFIG.get('ga_code', 'ga-code-not-found')

HAYSTACK_CONNECTIONS = CONFIG['haystack']
# HAYSTACK_DEFAULT_OPERATOR = 'OR'
# TODO what is HAYSTACK_SEARCH_RESULTS_PER_PAGE doing for us?
HAYSTACK_SEARCH_RESULTS_PER_PAGE = 10

# define and activate an Elasticsearch Custom Analyzer that mimics Snowball
# but adds a word_delimiter token filter where we want it (fixes bitbucket
# issue #1: "search on PA14 does not find E-GEOD-24262")
ELASTICSEARCH_DEFAULT_ANALYZER = 'adage_snowball'
ELASTICSEARCH_INDEX_SETTINGS = {
    'settings': {
        'analysis': {
            'analyzer': {
                'adage_snowball': {
                    'type': 'custom',
                    'tokenizer': 'standard',
                    'filter': [
                        'standard',
                        'adage_word_delimiter',
                        'lowercase',
                        'stop',
                        'snowball'
                    ]
                },
            },
            'filter': {
                'adage_word_delimiter': {
                    'type': 'word_delimiter',
                    'split_on_case_change': False
                }
            }
        }
    }
}

# adjust the default kwargs passed to Elasticsearch when searching
ELASTICSEARCH_DEFAULT_KWARGS = {
    'highlight': {
        'pre_tags': ['<strong>'],
        'post_tags': ['</strong>']
    }
}

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',
    'django.middleware.security.SecurityMiddleware',
)

ROOT_URLCONF = 'adage.urls'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates')],
        '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 = 'adage.wsgi.application'


# Database
# https://docs.djangoproject.com/en/1.8/ref/settings/#databases

DATABASES = CONFIG['databases']


# Internationalization
# https://docs.djangoproject.com/en/1.8/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'America/New_York'

USE_I18N = True

USE_L10N = True

USE_TZ = True


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.8/howto/static-files/

STATIC_URL = '/static/'
# STATIC_ROOT = os.path.join(BASE_DIR, '/static/')
STATICFILES_DIRS = (
    os.path.join(BASE_DIR, 'static'),
)

# Logging configuration (based on the "LOGGING" section of tribe/settings.py).
# Right now only root logger is defined.
# More details are available at:
# https://docs.djangoproject.com/en/dev/topics/logging/
# Default logging can be found at django/utils/log.py, which is also online at:
# https://github.com/django/django/blob/master/django/utils/log.py
LOGGING = {
    'version': 1,
    'disable_existing_loggers': False,
    # Formatters
    'formatters': {
        'verbose': {
            'format': ('%(levelname)s %(asctime)s %(module)s %(process)d '
                       '%(thread)d %(message)s')
        },
        'simple': {
            'format': '%(levelname)s: %(message)s'
        },
    },
    # Handlers
    'handlers': {
        'console': {
            'level': 'DEBUG',
            'class': 'logging.StreamHandler',
            'formatter': 'simple'
        },
    },
    # Loggers: no customized loggers right now.
    #
    # Root logger takes care of everything!
    'root': {
        'level': 'INFO',
        'handlers': ['console'],
    },
}

TRIBE_ID = CONFIG['tribe_id']
TRIBE_SECRET = CONFIG['tribe_secret']
TRIBE_REDIRECT_URI = CONFIG['tribe_redirect_uri']
TRIBE_SCOPE = CONFIG['tribe_scope']
TRIBE_LOGIN_REDIRECT = CONFIG['tribe_login_redirect']
TRIBE_LOGOUT_REDIRECT = CONFIG['tribe_logout_redirect']

# The public_geneset_folder setting is used by the tribe-client, as
# the location of the folder where pickled genesets files will be
# saved to. tribe-client will also refer to this setting when it is
# time to unpickle the genesets from these files and serve them.
PUBLIC_GENESET_FOLDER = CONFIG['public_geneset_folder']