Merge branch 'master' into static-media
[mygpo.git] / mygpo / settings.py
blob1619286e4fcb08cc3baa36c78b85784be45819c0
1 import re
2 import sys
3 import os.path
4 import dj_database_url
7 try:
8 from psycopg2cffi import compat
9 compat.register()
10 except ImportError:
11 pass
14 BASE_DIR = os.path.dirname(os.path.abspath(__file__))
17 def get_bool(name, default):
18 return os.getenv(name, str(default)).lower() == 'true'
21 def get_intOrNone(name, default):
22 """ Parses the env variable, accepts ints and literal None"""
23 value = os.getenv(name, str(default))
24 if value.lower() == 'none':
25 return None
26 return int(value)
29 DEBUG = get_bool('DEBUG', False)
31 ADMINS = re.findall(r'\s*([^<]+) <([^>]+)>\s*', os.getenv('ADMINS', ''))
33 MANAGERS = ADMINS
35 DATABASES = {
36 'default': dj_database_url.config(
37 default='postgres://mygpo:mygpo@localhost/mygpo'),
41 _cache_used = bool(os.getenv('CACHE_BACKEND', False))
43 if _cache_used:
44 CACHES = {}
45 CACHES['default'] = {
46 'BACKEND': os.getenv(
47 'CACHE_BACKEND',
48 'django.core.cache.backends.memcached.MemcachedCache'),
49 'LOCATION': os.getenv('CACHE_LOCATION'),
53 # Local time zone for this installation. Choices can be found here:
54 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
55 # although not all choices may be available on all operating systems.
56 # If running in a Windows environment this must be set to the same as your
57 # system time zone.
58 TIME_ZONE = 'UTC'
60 # Language code for this installation. All choices can be found here:
61 # http://www.i18nguy.com/unicode/language-identifiers.html
62 LANGUAGE_CODE = 'en-us'
64 SITE_ID = 1
66 # If you set this to False, Django will make some optimizations so as not
67 # to load the internationalization machinery.
68 USE_I18N = True
71 # Static Files
73 STATIC_ROOT = 'staticfiles'
74 STATIC_URL = '/static/'
76 STATICFILES_DIRS = (
77 os.path.abspath(os.path.join(BASE_DIR, '..', 'static')),
81 # Media Files
83 MEDIA_ROOT = os.getenv('MEDIA_ROOT',
84 os.path.abspath(os.path.join(BASE_DIR, '..', 'media')))
86 MEDIA_URL = '/media/'
89 TEMPLATES = [{
90 'BACKEND': 'django.template.backends.django.DjangoTemplates',
91 'DIRS': [],
92 'OPTIONS': {
93 'debug': DEBUG,
94 'context_processors': [
95 'django.contrib.auth.context_processors.auth',
96 'django.template.context_processors.debug',
97 'django.template.context_processors.i18n',
98 'django.template.context_processors.media',
99 'django.template.context_processors.static',
100 'django.template.context_processors.tz',
101 'django.contrib.messages.context_processors.messages',
102 'mygpo.web.google.analytics',
103 'mygpo.web.google.adsense',
104 # make the debug variable available in templates
105 # https://docs.djangoproject.com/en/dev/ref/templates/api/#django-core-context-processors-debug
106 'django.template.context_processors.debug',
108 # required so that the request obj can be accessed from
109 # templates. this is used to direct users to previous
110 # page after login
111 'django.template.context_processors.request',
113 'libraries': {
114 'staticfiles' : 'django.templatetags.static',
116 'loaders': [
117 ('django.template.loaders.cached.Loader', [
118 'django.template.loaders.app_directories.Loader',
125 MIDDLEWARE = [
126 'django.middleware.common.CommonMiddleware',
127 'django.middleware.csrf.CsrfViewMiddleware',
128 'django.contrib.sessions.middleware.SessionMiddleware',
129 'django.contrib.auth.middleware.AuthenticationMiddleware',
130 'django.middleware.locale.LocaleMiddleware',
131 'django.contrib.messages.middleware.MessageMiddleware',
134 ROOT_URLCONF = 'mygpo.urls'
136 INSTALLED_APPS = [
137 'django.contrib.contenttypes',
138 'django.contrib.messages',
139 'django.contrib.admin',
140 'django.contrib.humanize',
141 'django.contrib.auth',
142 'django.contrib.sessions',
143 'django.contrib.staticfiles',
144 'django.contrib.sites',
145 'django.contrib.postgres',
146 'django_celery_results',
147 'django_celery_beat',
148 'mygpo.core',
149 'mygpo.podcasts',
150 'mygpo.chapters',
151 'mygpo.search',
152 'mygpo.users',
153 'mygpo.api',
154 'mygpo.web',
155 'mygpo.publisher',
156 'mygpo.subscriptions',
157 'mygpo.history',
158 'mygpo.favorites',
159 'mygpo.usersettings',
160 'mygpo.data',
161 'mygpo.userfeeds',
162 'mygpo.suggestions',
163 'mygpo.directory',
164 'mygpo.categories',
165 'mygpo.episodestates',
166 'mygpo.maintenance',
167 'mygpo.share',
168 'mygpo.administration',
169 'mygpo.pubsub',
170 'mygpo.podcastlists',
171 'mygpo.votes',
172 'django_nose',
175 try:
176 if DEBUG:
177 import debug_toolbar
178 INSTALLED_APPS += ['debug_toolbar']
179 MIDDLEWARE += ['debug_toolbar.middleware.DebugToolbarMiddleware']
181 except ImportError:
182 pass
185 try:
186 import opbeat
188 if not DEBUG:
189 INSTALLED_APPS += ['opbeat.contrib.django']
191 except ImportError:
192 pass
195 ACCOUNT_ACTIVATION_DAYS = int(os.getenv('ACCOUNT_ACTIVATION_DAYS', 7))
197 AUTHENTICATION_BACKENDS = (
198 'mygpo.users.backend.CaseInsensitiveModelBackend',
199 'mygpo.web.auth.EmailAuthenticationBackend',
202 SESSION_ENGINE = "django.contrib.sessions.backends.cached_db"
204 # TODO: use (default) JSON serializer for security
205 # this would currently fail as we're (de)serializing datetime objects
206 # https://docs.djangoproject.com/en/1.5/topics/http/sessions/#session-serialization
207 SESSION_SERIALIZER = 'django.contrib.sessions.serializers.PickleSerializer'
210 MESSAGE_STORAGE = 'django.contrib.messages.storage.session.SessionStorage'
212 USER_CLASS = 'mygpo.users.models.User'
214 LOGIN_URL = '/login/'
216 CSRF_FAILURE_VIEW = 'mygpo.web.views.csrf_failure'
219 DEFAULT_FROM_EMAIL = os.getenv('DEFAULT_FROM_EMAIL', '')
221 SECRET_KEY = os.getenv('SECRET_KEY', '')
223 if 'test' in sys.argv:
224 SECRET_KEY = 'test'
226 GOOGLE_ANALYTICS_PROPERTY_ID = os.getenv('GOOGLE_ANALYTICS_PROPERTY_ID', '')
228 DIRECTORY_EXCLUDED_TAGS = os.getenv('DIRECTORY_EXCLUDED_TAGS', '').split()
230 FLICKR_API_KEY = os.getenv('FLICKR_API_KEY', '')
232 SOUNDCLOUD_CONSUMER_KEY = os.getenv('SOUNDCLOUD_CONSUMER_KEY', '')
234 MAINTENANCE = get_bool('MAINTENANCE', False)
237 ALLOWED_HOSTS = ['*']
240 LOGGING = {
241 'version': 1,
242 'disable_existing_loggers': False,
243 'formatters': {
244 'verbose': {
245 'format': '%(asctime)s %(name)s %(levelname)s %(message)s',
248 'filters': {
249 'require_debug_false': {
250 '()': 'django.utils.log.RequireDebugFalse'
253 'handlers': {
254 'console': {
255 'level': os.getenv('LOGGING_CONSOLE_LEVEL', 'DEBUG'),
256 'class': 'logging.StreamHandler',
257 'formatter': 'verbose',
259 'mail_admins': {
260 'level': 'ERROR',
261 'filters': ['require_debug_false'],
262 'class': 'django.utils.log.AdminEmailHandler',
265 'loggers': {
266 'django': {
267 'handlers': os.getenv('LOGGING_DJANGO_HANDLERS',
268 'console').split(),
269 'propagate': True,
270 'level': os.getenv('LOGGING_DJANGO_LEVEL', 'WARN'),
272 'mygpo': {
273 'handlers': os.getenv('LOGGING_MYGPO_HANDLERS', 'console').split(),
274 'level': os.getenv('LOGGING_MYGPO_LEVEL', 'INFO'),
276 'celery': {
277 'handlers': os.getenv('LOGGING_CELERY_HANDLERS',
278 'console').split(),
279 'level': os.getenv('LOGGING_CELERY_LEVEL', 'DEBUG'),
284 _use_log_file = bool(os.getenv('LOGGING_FILENAME', False))
286 if _use_log_file:
287 LOGGING['handlers']['file'] = {
288 'level': 'INFO',
289 'class': 'logging.handlers.RotatingFileHandler',
290 'filename': os.getenv('LOGGING_FILENAME'),
291 'maxBytes': 10000000,
292 'backupCount': 10,
293 'formatter': 'verbose',
297 # minimum number of subscribers a podcast must have to be assigned a slug
298 PODCAST_SLUG_SUBSCRIBER_LIMIT = int(os.getenv(
299 'PODCAST_SLUG_SUBSCRIBER_LIMIT', 10))
301 # minimum number of subscribers that a podcast needs to "push" one of its
302 # categories to the top
303 MIN_SUBSCRIBERS_CATEGORY = int(os.getenv('MIN_SUBSCRIBERS_CATEGORY', 10))
305 # maximum number of episode actions that the API processes immediatelly before
306 # returning the response. Larger requests will be handled in background.
307 # Handler can be set to None to disable
308 API_ACTIONS_MAX_NONBG = int(os.getenv('API_ACTIONS_MAX_NONBG', 100))
309 API_ACTIONS_BG_HANDLER = 'mygpo.api.tasks.episode_actions_celery_handler'
312 ADSENSE_CLIENT = os.getenv('ADSENSE_CLIENT', '')
314 ADSENSE_SLOT_BOTTOM = os.getenv('ADSENSE_SLOT_BOTTOM', '')
316 # we're running behind a proxy that sets the X-Forwarded-Proto header correctly
317 # see https://docs.djangoproject.com/en/dev/ref/settings/#secure-proxy-ssl-header
318 SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
321 # enabled access to staff-only areas with ?staff=<STAFF_TOKEN>
322 STAFF_TOKEN = os.getenv('STAFF_TOKEN', None)
324 # The User-Agent string used for outgoing HTTP requests
325 USER_AGENT = 'gpodder.net (+https://github.com/gpodder/mygpo)'
327 # Base URL of the website that is used if the actually used parameters is not
328 # available. Request handlers, for example, can access the requested domain.
329 # Code that runs in background can not do this, and therefore requires a
330 # default value. This should be set to something like 'http://example.com'
331 DEFAULT_BASE_URL = os.getenv('DEFAULT_BASE_URL', '')
334 ### Celery
336 CELERY_BROKER_URL = os.getenv('BROKER_URL', 'redis://localhost')
337 CELERY_RESULT_BACKEND = 'django-db'
339 CELERY_RESULT_EXPIRES = 60 * 60 # 1h expiry time in seconds
341 CELERY_ACCEPT_CONTENT = ['json']
344 ### Google API
346 GOOGLE_CLIENT_ID = os.getenv('GOOGLE_CLIENT_ID', '')
347 GOOGLE_CLIENT_SECRET = os.getenv('GOOGLE_CLIENT_SECRET', '')
349 # URL where users of the site can get support
350 SUPPORT_URL = os.getenv('SUPPORT_URL', '')
353 FEEDSERVICE_URL = os.getenv('FEEDSERVICE_URL', 'http://feeds.gpodder.net/')
356 # time for how long an activation is valid; after that, an unactivated user
357 # will be deleted
358 ACTIVATION_VALID_DAYS = int(os.getenv('ACTIVATION_VALID_DAYS', 10))
361 OPBEAT = {
362 "ORGANIZATION_ID": os.getenv('OPBEAT_ORGANIZATION_ID', ''),
363 "APP_ID": os.getenv('OPBEAT_APP_ID', ''),
364 "SECRET_TOKEN": os.getenv('OPBEAT_SECRET_TOKEN', ''),
367 LOCALE_PATHS = [
368 os.path.abspath(os.path.join(BASE_DIR, 'locale')),
371 INTERNAL_IPS = os.getenv('INTERNAL_IPS', '').split()
373 EMAIL_BACKEND = os.getenv('EMAIL_BACKEND',
374 'django.core.mail.backends.smtp.EmailBackend')
376 PODCAST_AD_ID = os.getenv('PODCAST_AD_ID')
378 TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
380 NOSE_ARGS = [
381 '--with-doctest',
382 '--stop',
383 '--where=mygpo',
387 SEARCH_CUTOFF = float(os.getenv('SEARCH_CUTOFF', 0.3))