pandora/pandora/settings.py

291 lines
7.9 KiB
Python
Raw Normal View History

2009-08-16 12:23:29 +00:00
# -*- coding: utf-8 -*-
2010-11-28 16:31:53 +00:00
# Django settings for pan.do/ra project defaults,
# create local_settings.py to overwrite
# check pan.do/ra section below for relevant settings
2016-11-15 12:19:06 +00:00
from __future__ import absolute_import
2009-08-16 12:23:29 +00:00
import os
2013-10-21 09:53:22 +00:00
from os.path import join, normpath, dirname
2016-02-20 05:57:28 +00:00
import djcelery
djcelery.setup_loader()
2009-08-16 12:23:29 +00:00
2016-03-03 11:26:06 +00:00
BASE_DIR = PROJECT_ROOT = normpath(dirname(__file__))
2017-11-02 21:08:17 +00:00
BIN_DIR = normpath(join(PROJECT_ROOT, '..', 'bin'))
if BIN_DIR not in os.environ['PATH']:
os.environ['PATH'] = BIN_DIR + os.pathsep + os.environ['PATH']
2009-06-08 16:08:59 +00:00
DEBUG = False
2012-03-09 12:35:14 +00:00
JSON_DEBUG = False
2009-06-08 16:08:59 +00:00
#this gets set to all users in highest userLevel (app/config.py)
ADMINS = ()
2009-06-08 16:08:59 +00:00
MANAGERS = ADMINS
2010-02-08 13:16:45 +00:00
2010-07-06 08:51:50 +00:00
2009-06-08 16:08:59 +00:00
# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# If running in a Windows environment this must be set to the same as your
# system time zone.
2011-11-10 23:27:14 +00:00
TIME_ZONE = 'UTC'
2010-06-26 14:28:25 +00:00
#TIME_ZONE = 'Asia/Kolkata'
2009-06-08 16:08:59 +00:00
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = 'en-us'
SITE_ID = 1
# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
USE_I18N = True
2010-02-03 11:59:11 +00:00
APPEND_SLASH = False
2009-06-08 16:08:59 +00:00
2013-02-09 19:35:11 +00:00
# Uncomment this if you add https support.
# Also make sue to send https from your https vhost:
# proxy_set_header X-Forwarded-Proto https;
#SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
2009-06-08 16:08:59 +00:00
# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/"
MEDIA_ROOT = normpath(join(PROJECT_ROOT, '..', 'data'))
2012-05-23 13:54:36 +00:00
MEDIA_URL = '/data/'
STATIC_ROOT = normpath(join(PROJECT_ROOT, '..', 'static'))
2012-05-23 13:54:36 +00:00
STATIC_URL = '/static/'
2009-06-08 16:08:59 +00:00
2012-05-23 13:54:36 +00:00
# Additional locations of static files
STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
)
2011-10-27 10:07:44 +00:00
2012-05-23 13:54:36 +00:00
# List of finder classes that know how to find static files in
# various locations.
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
#'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
2009-06-08 16:08:59 +00:00
2012-05-23 13:54:36 +00:00
GEOIP_PATH = normpath(join(PROJECT_ROOT, '..', 'data', 'geo'))
2017-06-09 09:29:33 +00:00
GOOGLE_API_KEY = None
2009-12-31 15:04:32 +00:00
WEBSOCKET = False
WEBSOCKET_PORT = 2622
WEBSOCKET_ADDRESS = '127.0.0.1'
2009-06-08 16:08:59 +00:00
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
join(PROJECT_ROOT, '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',
],
},
},
]
2009-06-08 16:08:59 +00:00
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
2016-02-20 09:06:41 +00:00
'oxdjango.middleware.ExceptionMiddleware',
'oxdjango.middleware.ChromeFrameMiddleware',
2015-06-30 18:02:09 +00:00
'user.middleware.UpdateSession',
2009-06-08 16:08:59 +00:00
)
2013-10-24 13:37:38 +00:00
ROOT_URLCONF = 'urls'
2009-06-08 16:08:59 +00:00
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
2012-05-23 13:54:36 +00:00
'django.contrib.messages',
'django.contrib.staticfiles',
2009-08-16 12:23:29 +00:00
'django.contrib.admin',
2012-05-23 13:54:36 +00:00
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
2009-08-16 12:23:29 +00:00
'django.contrib.humanize',
2010-11-25 15:21:23 +00:00
2016-02-19 17:35:15 +00:00
'django_extensions',
2010-06-25 11:53:57 +00:00
'djcelery',
2011-09-16 16:45:25 +00:00
'app',
2011-11-01 16:08:09 +00:00
'log',
2011-01-26 13:25:26 +00:00
'annotation',
2011-10-02 18:16:28 +00:00
'clip',
2012-06-06 19:49:32 +00:00
'sequence',
'archive',
2011-05-28 11:35:57 +00:00
'event',
2012-01-31 17:06:10 +00:00
'changelog',
'item',
'itemlist',
'person',
2011-10-11 11:29:05 +00:00
'title',
'place',
2010-11-23 10:30:03 +00:00
'text',
2011-10-07 08:51:20 +00:00
'edit',
'news',
'user',
2011-01-28 08:48:38 +00:00
'urlalias',
'translation',
2011-12-19 19:41:37 +00:00
'tv',
2016-10-04 22:00:03 +00:00
'documentcollection',
'document',
2014-11-18 18:16:28 +00:00
'entity',
2016-08-17 12:37:59 +00:00
'websocket',
'taskqueue',
2017-01-24 17:41:24 +00:00
'home',
2009-06-08 16:08:59 +00:00
)
2009-08-16 12:23:29 +00:00
2011-10-27 12:26:05 +00:00
# Log errors into db
2011-04-07 15:26:02 +00:00
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
2011-10-27 12:26:05 +00:00
'errors': {
2011-04-07 15:26:02 +00:00
'level': 'ERROR',
2013-10-24 13:37:38 +00:00
'class': 'log.utils.ErrorHandler'
2011-04-07 15:26:02 +00:00
}
},
'loggers': {
'django.request': {
2011-10-27 12:26:05 +00:00
'handlers': ['errors'],
2011-04-07 15:26:02 +00:00
'level': 'ERROR',
'propagate': True,
},
}
}
2010-10-16 11:58:57 +00:00
AUTH_PROFILE_MODULE = 'user.UserProfile'
AUTH_CHECK_USERNAME = True
2016-05-28 09:30:43 +00:00
FFMPEG = 'ffmpeg'
FFMPEG_SUPPORTS_VP9 = True
2016-09-19 18:24:36 +00:00
FFMPEG_DEBUG = False
2010-02-03 11:59:11 +00:00
#=========================================================================
#Pan.do/ra related settings settings
#to customize, create local_settings.py and overwrite keys
2010-08-24 17:16:33 +00:00
DATABASES = {
'default': {
'NAME': 'pandora',
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'USER': 'pandora',
'PASSWORD': ''
}
}
#rabbitmq connection settings
2016-02-20 05:57:28 +00:00
CELERY_RESULT_BACKEND = 'database'
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_SERIALIZER = 'json'
CELERY_ACCEPT_CONTENT = ['json']
2014-11-26 20:03:27 +00:00
BROKER_URL = 'amqp://pandora:box@localhost:5672//pandora'
SEND_CELERY_ERROR_EMAILS = False
2011-02-06 12:50:21 +00:00
#with apache x-sendfile or lighttpd set this to True
XSENDFILE = False
2011-07-03 16:21:27 +00:00
#with nginx X-Accel-Redirect set this to True
XACCELREDIRECT = False
2010-08-10 22:11:09 +00:00
SITE_CONFIG = join(PROJECT_ROOT, 'config.jsonc')
DEFAULT_CONFIG = join(PROJECT_ROOT, 'config.pandora.jsonc')
2014-11-16 20:41:12 +00:00
RELOAD_CONFIG = False
2013-09-14 14:10:22 +00:00
#used if CONFIG['canDownloadVideo'] is set
2016-05-28 09:30:43 +00:00
TRACKER_URL = "udp://tracker.openbittorrent.com:80"
2010-12-22 15:17:38 +00:00
DATA_SERVICE = ''
POSTER_PRECEDENCE = ()
POSTER_ONLY_PORTRAIT = ()
2010-08-10 22:11:09 +00:00
USE_IMDB = False
2018-10-07 12:41:25 +00:00
ADDITIONAL_IMDB_KEYS = [
'cast',
'links', 'reviews', 'posters',
'alternativeTitles', 'originalTitle',
]
#If you set VIDEO_PREFIX make sure cookies work accros subsomains
#by setting SESSION_COOKIE_DOMAIN to ".domain.tld"
2016-05-28 09:30:43 +00:00
VIDEO_PREFIX = ''
2013-04-21 15:49:44 +00:00
#VIDEO_PREFIX = '//video{uid}.example.com'
2016-05-28 09:30:43 +00:00
MEDIA_PREFIX = ''
#VIDEO_PREFIX = '//media.example.com'
2013-04-22 11:43:05 +00:00
#SESSION_COOKIE_DOMAIN = '.example.com'
2017-11-14 17:40:20 +00:00
CDN_PREFIX = {}
# set video prefix baesd on country/region/continent
'''
CDN_PREFIX = {
'India': {'media': 'https://media.in.example.com', 'video': 'https://{uid}.in.example.com'},
'Northern Africa': {'media': 'https://media.eg.example.com', 'video': 'https://{uid}.eg.example.com'},
}
'''
2013-04-21 15:49:44 +00:00
2016-05-28 09:30:43 +00:00
SESSION_COOKIE_AGE = 60*24*60*60
2010-09-12 14:23:23 +00:00
2015-06-30 18:02:09 +00:00
# Extend cookie age if session is older
2016-05-28 09:30:43 +00:00
SESSION_UPDATE = 24*60*60
2015-06-30 18:02:09 +00:00
SCRIPT_ROOT = normpath(join(PROJECT_ROOT, '..', 'scripts'))
#change script to customize
ITEM_POSTER = join(SCRIPT_ROOT, 'poster.py')
2016-05-28 09:30:43 +00:00
ITEM_ICON = join(SCRIPT_ROOT, 'item_icon.py')
LIST_ICON = join(SCRIPT_ROOT, 'list_icon.py')
2017-02-20 15:38:23 +00:00
COLLECTION_ICON = join(SCRIPT_ROOT, 'list_icon.py')
DB_GIN_TRGM = False
RELOADER_RUNNING = False
#you can ignore things below this line
#=========================================================================
2013-03-09 11:43:33 +00:00
LOCAL_APPS = []
#load installation specific settings from local_settings.py
2009-08-16 12:23:29 +00:00
try:
2009-09-07 15:39:51 +00:00
from local_settings import *
except ImportError:
pass
2009-08-16 12:23:29 +00:00
2009-09-07 15:39:51 +00:00
# Make this unique, creates random key first at first time.
try:
SECRET_KEY
except NameError:
SECRET_FILE = os.path.join(PROJECT_ROOT, 'secret.txt')
try:
SECRET_KEY = open(SECRET_FILE).read().strip()
except IOError:
try:
2016-05-28 09:06:43 +00:00
from django.utils.crypto import get_random_string
chars = 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)'
SECRET_KEY = get_random_string(50, chars)
2016-11-15 12:19:06 +00:00
secret = open(SECRET_FILE, 'w')
2009-09-07 15:39:51 +00:00
secret.write(SECRET_KEY)
secret.close()
except IOError:
2018-08-13 19:24:44 +00:00
raise Exception('Please create a %s file with random characters to generate your secret key!' % SECRET_FILE)
2009-08-16 12:23:29 +00:00
2013-03-09 11:43:33 +00:00
INSTALLED_APPS = tuple(list(INSTALLED_APPS) + LOCAL_APPS)
2016-02-19 16:34:15 +00:00
ALLOWED_HOSTS = ['*']
2016-06-26 13:34:19 +00:00
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
DATA_UPLOAD_MAX_MEMORY_SIZE = 32 * 1024 * 1024