remove deprecated module django.contrib.databrowse
[htsworkflow.git] / htsworkflow / settings.py
1 """
2 Generate settings for the Django Application.
3
4 To make it easier to customize the application the settings can be
5 defined in a configuration file read by ConfigParser.
6
7 The options understood by this module are (with their defaults):
8
9   [frontend]
10   email_host=localhost
11   email_port=25
12   database=<section_name>
13
14   [database_name]
15   engine=sqlite3
16   name=/path/to/database
17
18   [admins]
19   #name1=email1
20
21   [allowed_hosts]
22   #name1=ip
23   localhost=127.0.0.1
24
25   [allowed_analysis_hosts]
26   #name1=ip
27   localhost=127.0.0.1
28
29 """
30 import ConfigParser
31 import logging
32 import os
33 import shlex
34 import htsworkflow
35 import django
36 from django.conf import global_settings
37
38 from htsworkflow.util.api import make_django_secret_key
39
40 HTSWORKFLOW_ROOT = os.path.abspath(os.path.split(htsworkflow.__file__)[0])
41 LOGGER = logging.getLogger(__name__)
42
43 # make epydoc happy
44 __docformat__ = "restructuredtext en"
45
46 def options_to_list(options, dest, section_name, option_name):
47   """
48   Load a options from section_name and store in a dictionary
49   """
50   if options.has_option(section_name, option_name):
51     opt = options.get(section_name, option_name)
52     dest.extend( shlex.split(opt) )
53
54 def options_to_dict(dest, section_name):
55   """
56   Load a options from section_name and store in a dictionary
57   """
58   if options.has_section(section_name):
59     for name in options.options(section_name):
60       dest[name] = options.get(section_name, name)
61
62 # define your defaults here
63 options = ConfigParser.SafeConfigParser()
64
65 def save_options(filename, options):
66     try:
67         ini_stream = open(filename, 'w')
68         options.write(ini_stream)
69         ini_stream.close()
70     except IOError, e:
71         LOGGER.debug("Error saving setting: %s" % (str(e)))
72
73 INI_FILE = options.read([os.path.expanduser("~/.htsworkflow.ini"),
74                          '/etc/htsworkflow.ini',])
75
76 # OptionParser will use the dictionary passed into the config parser as
77 # 'Default' values in any section. However it still needs an empty section
78 # to exist in order to retrieve anything.
79 if not options.has_section('frontend'):
80     options.add_section('frontend')
81 if not options.has_section('bcprinter'):
82     options.add_section('bcprinter')
83
84
85 # Django settings for elandifier project.
86
87 DEBUG = True
88 TEMPLATE_DEBUG = DEBUG
89
90 ADMINS = []
91 options_to_list(options, ADMINS, 'frontend', 'admins')
92
93 MANAGERS = []
94 options_to_list(options, MANAGERS, 'frontend', 'managers')
95
96 if options.has_option('front', 'default_pm'):
97     DEFAULT_PM=int(options.get('frontend', 'default_pm'))
98 else:
99     DEFAULT_PM=5
100
101 AUTHENTICATION_BACKENDS = (
102   'htsworkflow.frontend.samples.auth_backend.HTSUserModelBackend', )
103 CUSTOM_USER_MODEL = 'samples.HTSUser'
104
105 EMAIL_HOST='localhost'
106 if options.has_option('frontend', 'email_host'):
107   EMAIL_HOST = options.get('frontend', 'email_host')
108
109 EMAIL_PORT = 25
110 if options.has_option('frontend', 'email_port'):
111   EMAIL_PORT = int(options.get('frontend', 'email_port'))
112
113 if options.has_option('frontend', 'notification_sender'):
114     NOTIFICATION_SENDER = options.get('frontend', 'notification_sender')
115 else:
116     NOTIFICATION_SENDER = "noreply@example.com"
117 NOTIFICATION_BCC = []
118 options_to_list(options, NOTIFICATION_BCC, 'frontend', 'notification_bcc')
119
120 if not options.has_option('frontend', 'database'):
121   raise ConfigParser.NoSectionError(
122     "Please define [frontend] database=<Section>")
123
124 database_section = options.get('frontend', 'database')
125
126 if not options.has_section(database_section):
127     raise ConfigParser.NoSectionError(
128         "No database=<database_section_name> defined")
129
130 # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
131 DATABASE_ENGINE = options.get(database_section, 'engine')
132 DATABASE_NAME = options.get(database_section, 'name')
133 if options.has_option(database_section, 'user'):
134     DATABASE_USER = options.get(database_section, 'user')
135 if options.has_option(database_section, 'host'):
136     DATABASE_HOST = options.get(database_section, 'host')
137 if options.has_option(database_section, 'port'):
138     DATABASE_PORT = options.get(database_section, 'port')
139
140 if options.has_option(database_section, 'password_file'):
141     password_file = options.get(database_section, 'password_file')
142     DATABASE_PASSWORD = open(password_file,'r').readline()
143 elif options.has_option(database_section, 'password'):
144     DATABASE_PASSWORD = options.get(database_section, 'password')
145
146 DATABASES = {
147     'default': {
148         'ENGINE': 'django.db.backends.sqlite3',
149         'NAME': DATABASE_NAME,
150     }
151 }
152
153 # Local time zone for this installation. Choices can be found here:
154 # http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE
155 # although not all variations may be possible on all operating systems.
156 # If running in a Windows environment this must be set to the same as your
157 # system time zone.
158 if options.has_option('frontend', 'time_zone'):
159   TIME_ZONE = options.get('frontend', 'time_zone')
160 else:
161   TIME_ZONE = 'America/Los_Angeles'
162
163 # Language code for this installation. All choices can be found here:
164 # http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes
165 # http://blogs.law.harvard.edu/tech/stories/storyReader$15
166 LANGUAGE_CODE = 'en-us'
167
168 SITE_ID = 1
169
170 # If you set this to False, Django will make some optimizations so as not
171 # to load the internationalization machinery.
172 USE_I18N = True
173
174 # Absolute path to the directory that holds media.
175 # Example: "/home/media/media.lawrence.com/"
176 MEDIA_ROOT = os.path.join(HTSWORKFLOW_ROOT, 'frontend', 'static', '')
177
178 # URL that handles the media served from MEDIA_ROOT.
179 # Example: "http://media.lawrence.com"
180 MEDIA_URL = '/static/'
181
182 # URL prefix for static media -- CSS, JavaScript and images. Make sure to use a
183 # trailing slash.
184 STATIC_URL = '/media/'
185
186 # Make this unique, and don't share it with anybody.
187 if not options.has_option('frontend', 'secret'):
188     options.set('frontend', 'secret_key', make_django_secret_key(458))
189     save_options(INI_FILE[0], options)
190 SECRET_KEY = options.get('frontend', 'secret_key')
191
192 # some of our urls need an api key
193 DEFAULT_API_KEY = 'n7HsXGHIi0vp9j5u4TIRJyqAlXYc4wrH'
194
195 # List of callables that know how to import templates from various sources.
196 TEMPLATE_LOADERS = (
197     'django.template.loaders.filesystem.Loader',
198     'django.template.loaders.app_directories.Loader',
199 )
200
201 MIDDLEWARE_CLASSES = (
202     'django.middleware.csrf.CsrfViewMiddleware',
203     'django.middleware.common.CommonMiddleware',
204     'django.contrib.sessions.middleware.SessionMiddleware',
205     'django.contrib.auth.middleware.AuthenticationMiddleware',
206     'django.contrib.messages.middleware.MessageMiddleware',
207     'django.middleware.doc.XViewMiddleware',
208 )
209
210 TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
211     'htsworkflow.frontend.thispage.thispage',
212 )
213 ROOT_URLCONF = 'htsworkflow.frontend.urls'
214
215 TEMPLATE_DIRS = (
216     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
217     # Always use forward slashes, even on Windows.
218     # Don't forget to use absolute paths, not relative paths.
219     '/usr/share/python-support/python-django/django/contrib/admin/templates',
220     #'/usr/lib/pymodules/python2.6/django/contrib/admin/templates/',
221     os.path.join(HTSWORKFLOW_ROOT, 'frontend', 'templates'),
222     os.path.join(HTSWORKFLOW_ROOT, 'templates'),
223 )
224
225 INSTALLED_APPS = (
226     'django.contrib.admin',
227     'django.contrib.auth',
228     'django.contrib.contenttypes',
229     'django.contrib.staticfiles',
230     'django.contrib.humanize',
231     'django.contrib.sessions',
232     'django.contrib.sites',
233     'htsworkflow.frontend.eland_config',
234     'htsworkflow.frontend.samples',
235     # modules from htsworkflow branch
236     'htsworkflow.frontend.experiments',
237     'htsworkflow.frontend.analysis',
238     'htsworkflow.frontend.reports',
239     'htsworkflow.frontend.inventory',
240     'htsworkflow.frontend.bcmagic',
241     'htsworkflow.frontend.labels',
242 )
243
244 # Project specific settings
245
246 ALLOWED_IPS={'127.0.0.1': '127.0.0.1'}
247 options_to_dict(ALLOWED_IPS, 'allowed_hosts')
248
249 ALLOWED_ANALYS_IPS = {'127.0.0.1': '127.0.0.1'}
250 options_to_dict(ALLOWED_ANALYS_IPS, 'allowed_analysis_hosts')
251 #UPLOADTO_HOME = os.path.abspath('../../uploads')
252 #UPLOADTO_CONFIG_FILE = os.path.join(UPLOADTO_HOME, 'eland_config')
253 #UPLOADTO_ELAND_RESULT_PACKS = os.path.join(UPLOADTO_HOME, 'eland_results')
254 #UPLOADTO_BED_PACKS = os.path.join(UPLOADTO_HOME, 'bed_packs')
255 # Where "results_dir" means directory with all the flowcells
256 if options.has_option('frontend', 'results_dir'):
257     RESULT_HOME_DIR=os.path.expanduser(options.get('frontend', 'results_dir'))
258 else:
259     RESULT_HOME_DIR='/tmp'
260
261 if options.has_option('frontend', 'link_flowcell_storage_device_url'):
262     LINK_FLOWCELL_STORAGE_DEVICE_URL = options.get('frontend',
263                                                    'link_flowcell_storage_device_url')
264 else:
265     LINK_FLOWCELL_STORAGE_DEVICE_URL = None
266 # PORT 9100 is default for Zebra tabletop/desktop printers
267 # PORT 6101 is default for Zebra mobile printers
268 BCPRINTER_PRINTER1_HOST = None
269 if options.has_option('bcprinter', 'printer1_host'):
270     BCPRINTER_PRINTER1_HOST = options.get('bcprinter', 'printer1_host')
271 BCPRINTER_PRINTER1_PORT=9100
272 if options.has_option('bcprinter', 'printer1_port'):
273     BCPRINTER_PRINTER1_PORT = int(options.get('bcprinter', 'printer1_port'))
274 BCPRINTER_PRINTER2_HOST = None
275 if options.has_option('bcprinter', 'printer2_host'):
276     BCPRINTER_PRINTER1_HOST = options.get('bcprinter', 'printer2_host')
277 BCPRINTER_PRINTER2_PORT=9100
278 if options.has_option('bcprinter', 'printer2_port'):
279     BCPRINTER_PRINTER2_PORT = int(options.get('bcprinter', 'printer2_port'))
280