pandora/pandora/settings.py

308 lines
8.2 KiB
Python
Raw Normal View History

2009-08-16 14:23:29 +02:00
# -*- coding: utf-8 -*-
2010-11-28 17:31:53 +01:00
# Django settings for pan.do/ra project defaults,
# create local_settings.py to overwrite
# check pan.do/ra section below for relevant settings
2009-08-16 14:23:29 +02:00
import os
2013-10-21 11:53:22 +02:00
from os.path import join, normpath, dirname
2009-08-16 14:23:29 +02:00
2016-03-03 16:56:06 +05:30
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 18:08:59 +02:00
DEBUG = False
2012-03-09 13:35:14 +01:00
JSON_DEBUG = False
2009-06-08 18:08:59 +02:00
#this gets set to all users in highest userLevel (app/config.py)
ADMINS = ()
2009-06-08 18:08:59 +02:00
MANAGERS = ADMINS
2010-02-08 18:46:45 +05:30
2010-07-06 10:51:50 +02:00
2009-06-08 18:08:59 +02: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-11 00:27:14 +01:00
TIME_ZONE = 'UTC'
2010-06-26 16:28:25 +02:00
#TIME_ZONE = 'Asia/Kolkata'
2009-06-08 18:08:59 +02: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
2020-05-15 18:48:58 +02:00
VERSION_EPOCH = None
2009-06-08 18:08:59 +02:00
# 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 17:29:11 +05:30
APPEND_SLASH = False
2009-06-08 18:08:59 +02: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 18:08:59 +02: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 18:08:59 +02: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 12:07:44 +02: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 18:08:59 +02:00
2012-05-23 13:54:36 +00:00
GEOIP_PATH = normpath(join(PROJECT_ROOT, '..', 'data', 'geo'))
2017-06-09 11:29:33 +02:00
GOOGLE_API_KEY = None
2009-12-31 16:04:32 +01:00
WEBSOCKET = False
WEBSOCKET_PORT = 2622
WEBSOCKET_ADDRESS = '127.0.0.1'
2009-06-08 18:08:59 +02: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 18:08:59 +02:00
MIDDLEWARE = (
2009-06-08 18:08:59 +02:00
'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 20:02:09 +02:00
'user.middleware.UpdateSession',
2009-06-08 18:08:59 +02:00
)
2013-10-24 13:37:38 +00:00
ROOT_URLCONF = 'urls'
2009-06-08 18:08:59 +02: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 14:23:29 +02: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 14:23:29 +02:00
'django.contrib.humanize',
2020-05-30 00:05:50 +02:00
'system',
2010-11-25 16:21:23 +01:00
2016-02-19 17:35:15 +00:00
'django_extensions',
'django_celery_results',
2011-09-16 18:45:25 +02:00
'app',
2011-11-01 17:08:09 +01:00
'log',
2011-01-26 18:55:26 +05:30
'annotation',
2011-10-02 20:16:28 +02:00
'clip',
2012-06-06 21:49:32 +02:00
'sequence',
'archive',
2011-05-28 13:35:57 +02:00
'event',
2012-01-31 22:36:10 +05:30
'changelog',
'item',
'itemlist',
'person',
2011-10-11 13:29:05 +02:00
'title',
'place',
2010-11-23 11:30:03 +01:00
'text',
2011-10-07 10:51:20 +02:00
'edit',
'news',
'user',
2011-01-28 14:18:38 +05:30
'urlalias',
'translation',
2011-12-20 01:11:37 +05:30
'tv',
2016-10-05 00:00:03 +02:00
'documentcollection',
'document',
2014-11-18 18:16:28 +00:00
'entity',
2016-08-17 14:37:59 +02:00
'websocket',
'taskqueue',
2017-01-24 18:41:24 +01:00
'home',
2009-06-08 18:08:59 +02:00
)
2009-08-16 14:23:29 +02:00
2020-05-30 00:05:50 +02:00
AUTH_USER_MODEL = 'system.User'
2011-10-27 14:26:05 +02:00
# Log errors into db
2011-04-07 17:26:02 +02:00
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
2011-10-27 14:26:05 +02:00
'errors': {
2011-04-07 17:26:02 +02:00
'level': 'ERROR',
2013-10-24 13:37:38 +00:00
'class': 'log.utils.ErrorHandler'
2011-04-07 17:26:02 +02:00
}
},
'loggers': {
'django.request': {
2011-10-27 14:26:05 +02:00
'handlers': ['errors'],
2011-04-07 17:26:02 +02:00
'level': 'ERROR',
'propagate': True,
},
}
}
2018-11-15 10:30:17 +00:00
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
'LOCATION': 'cache',
}
}
2010-10-16 13:58:57 +02:00
AUTH_PROFILE_MODULE = 'user.UserProfile'
AUTH_CHECK_USERNAME = True
2016-05-28 11:30:43 +02:00
FFMPEG = 'ffmpeg'
FFPROBE = 'ffprobe'
FFMPEG_SUPPORTS_VP9 = True
2016-09-19 20:24:36 +02:00
FFMPEG_DEBUG = False
2010-02-03 17:29:11 +05:30
#=========================================================================
#Pan.do/ra related settings settings
#to customize, create local_settings.py and overwrite keys
2010-08-24 19:16:33 +02:00
DATABASES = {
'default': {
'NAME': 'pandora',
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'USER': 'pandora',
'PASSWORD': ''
}
}
#rabbitmq connection settings
2019-07-16 12:22:22 +01:00
CELERY_RESULT_BACKEND = 'django-db'
2016-02-20 05:57:28 +00:00
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_SERIALIZER = 'json'
CELERY_ACCEPT_CONTENT = ['json']
CELERY_BROKER_URL = 'amqp://pandora:box@localhost:5672//pandora'
2014-11-26 21:03:27 +01:00
SEND_CELERY_ERROR_EMAILS = False
2011-02-06 18:20:21 +05:30
# Elasticsearch
ELASTICSEARCH_HOST = None
#with apache x-sendfile or lighttpd set this to True
XSENDFILE = False
2011-07-03 18:21:27 +02:00
#with nginx X-Accel-Redirect set this to True
XACCELREDIRECT = False
2010-08-11 00:11:09 +02:00
SITE_CONFIG = join(PROJECT_ROOT, 'config.jsonc')
DEFAULT_CONFIG = join(PROJECT_ROOT, 'config.pandora.jsonc')
2013-09-14 14:10:22 +00:00
#used if CONFIG['canDownloadVideo'] is set
2016-05-28 11:30:43 +02:00
TRACKER_URL = "udp://tracker.openbittorrent.com:80"
2010-12-22 20:47:38 +05:30
DATA_SERVICE = ''
POSTER_PRECEDENCE = ()
POSTER_ONLY_PORTRAIT = ()
2010-08-11 00:11:09 +02:00
USE_IMDB = False
2018-10-07 14:41:25 +02:00
ADDITIONAL_IMDB_KEYS = [
'cast',
'links', 'reviews', 'posters',
'alternativeTitles', 'originalTitle',
'filmingLocations',
2019-03-13 10:03:02 +00:00
'isSeries', 'seriesTitle', 'seriesYear', 'series',
2019-03-13 18:22:54 +00:00
'episodeTitle', 'episodeDirector', 'episodeYear', 'season', 'episode',
'connections',
2018-10-07 14:41:25 +02:00
]
#If you set VIDEO_PREFIX make sure cookies work accros subsomains
#by setting SESSION_COOKIE_DOMAIN to ".domain.tld"
2016-05-28 11:30:43 +02:00
VIDEO_PREFIX = ''
2013-04-21 15:49:44 +00:00
#VIDEO_PREFIX = '//video{uid}.example.com'
2016-05-28 11:30:43 +02:00
MEDIA_PREFIX = ''
#VIDEO_PREFIX = '//media.example.com'
2013-04-22 11:43:05 +00:00
#SESSION_COOKIE_DOMAIN = '.example.com'
2017-11-14 18:40:20 +01: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 11:30:43 +02:00
SESSION_COOKIE_AGE = 60*24*60*60
2010-09-12 16:23:23 +02:00
2015-06-30 20:02:09 +02:00
# Extend cookie age if session is older
2016-05-28 11:30:43 +02:00
SESSION_UPDATE = 24*60*60
2015-06-30 20:02:09 +02:00
SCRIPT_ROOT = normpath(join(PROJECT_ROOT, '..', 'scripts'))
#change script to customize
ITEM_POSTER = join(SCRIPT_ROOT, 'poster.py')
2016-05-28 11:30:43 +02:00
ITEM_ICON = join(SCRIPT_ROOT, 'item_icon.py')
2021-06-03 16:02:22 +01:00
ITEM_ICON_DATA = False
2016-05-28 11:30:43 +02:00
LIST_ICON = join(SCRIPT_ROOT, 'list_icon.py')
2017-02-20 16:38:23 +01:00
COLLECTION_ICON = join(SCRIPT_ROOT, 'list_icon.py')
DB_GIN_TRGM = False
ALLOWED_HOSTS = ['*']
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
DATA_UPLOAD_MAX_MEMORY_SIZE = 32 * 1024 * 1024
#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 14:23:29 +02:00
try:
2009-09-07 17:39:51 +02:00
from local_settings import *
except ImportError:
pass
2009-08-16 14:23:29 +02:00
2009-09-07 17:39:51 +02: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 11:06:43 +02:00
from django.utils.crypto import get_random_string
chars = 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)'
SECRET_KEY = get_random_string(50, chars)
2016-11-15 14:19:06 +02:00
secret = open(SECRET_FILE, 'w')
2009-09-07 17:39:51 +02:00
secret.write(SECRET_KEY)
secret.close()
except IOError:
2018-08-13 21:24:44 +02:00
raise Exception('Please create a %s file with random characters to generate your secret key!' % SECRET_FILE)
2009-08-16 14:23:29 +02:00
2013-03-09 11:43:33 +00:00
INSTALLED_APPS = tuple(list(INSTALLED_APPS) + LOCAL_APPS)
2016-02-19 22:04:15 +05:30
2019-07-16 12:22:22 +01:00