Add a custom (inherited) user object named HTSUser to the samples table.
[htsworkflow.git] / htsworkflow / frontend / settings.py
index d971bbcbe004fe97ce839fa7d0a85089cd7deee0..d4f94a8e3771a0d2d38696e1bed41a6f4a65ba3c 100644 (file)
@@ -55,12 +55,25 @@ options = ConfigParser.SafeConfigParser(
                os.path.abspath('/htsworkflow/htswfrontend/dev_fctracker.db'),
              'time_zone': 'America/Los_Angeles',
              'default_pm': '5',
-             'link_flowcell_storage_device_url': "http://localhost:8000/inventory/lts/link/"
+             'link_flowcell_storage_device_url': "http://localhost:8000/inventory/lts/link/",
+             'printer1_host': '127.0.0.1',
+             'printer1_port': '9100',
+             'printer2_host': '127.0.0.1',
+             'printer2_port': '9100',
            })
 
 options.read([os.path.expanduser("~/.htsworkflow.ini"),
               '/etc/htsworkflow.ini',])
 
+# OptionParser will use the dictionary passed into the config parser as
+# 'Default' values in any section. However it still needs an empty section
+# to exist in order to retrieve anything.
+if not options.has_section('frontend'):
+    options.add_section('frontend')
+if not options.has_section('bcprinter'):
+    options.add_section('bcprinter')
+
+
 # Django settings for elandifier project.
 
 DEBUG = True
@@ -71,6 +84,9 @@ options_to_list(ADMINS, 'admins')
 
 MANAGERS = ADMINS
 
+AUTHENTICATION_BACKENDS = ( 'samples.auth_backend.HTSUserModelBackend', )
+CUSTOM_USER_MODEL = 'samples.HTSUser' 
+
 EMAIL_HOST = options.get('frontend', 'email_host')
 EMAIL_PORT = int(options.get('frontend', 'email_port'))
 
@@ -155,6 +171,8 @@ INSTALLED_APPS = (
     'htsworkflow.frontend.analysis', 
     'htsworkflow.frontend.reports',
     'htsworkflow.frontend.inventory',
+    'htsworkflow.frontend.bcmagic',
+    'htsworkflow.frontend.bcprinter',
     'django.contrib.databrowse',
 )
 
@@ -172,4 +190,9 @@ options_to_dict(ALLOWED_ANALYS_IPS, 'allowed_analysis_hosts')
 RESULT_HOME_DIR='/Users/diane/proj/solexa/results/flowcells'
 
 LINK_FLOWCELL_STORAGE_DEVICE_URL = options.get('frontend', 'link_flowcell_storage_device_url')
-
+# PORT 9100 is default for Zebra tabletop/desktop printers
+# PORT 6101 is default for Zebra mobile printers
+BCPRINTER_PRINTER1_HOST = options.get('bcprinter', 'printer1_host')
+BCPRINTER_PRINTER1_PORT = int(options.get('bcprinter', 'printer1_port'))
+BCPRINTER_PRINTER2_HOST = options.get('bcprinter', 'printer2_host')
+BCPRINTER_PRINTER2_PORT = int(options.get('bcprinter', 'printer2_port'))