# Django settings for cc-core project.
import os

DEBUG = True
DEVELOPMENT = True
TEMPLATE_DEBUG = DEBUG

ADMINS = (
    ('Calm Digital', 'dan@calmdigital.com'),
)

MANAGERS = ADMINS

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': 'svtgbi',                      # Or path to database file if using sqlite3.
        'USER': 'root',
        'PASSWORD': '',
    }
}

WEBSITE_NAME = 'The Society for Vascular Technology'
WEBSITE_CODE = 'SVTGBI'
WEBSITE_SLOGAN = 'Promoting Vascular Technology for Healthcare Professionals'

ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

PRIVATE_FILES = ROOT + '/private'

URL = 'http://127.0.0.1:8000'
PAYMENT_URL = 'http://21098001.ngrok.io'

CONTACT_EMAIL = 'daniel@calmdigital.com'

EMAIL_HOST = 'smtp.sendgrid.net'
EMAIL_HOST_USER = 'amurphy826'
EMAIL_HOST_PASSWORD = 'qKL*M5tV'
EMAIL_PORT = 587
EMAIL_USE_TLS = True

LOGIN_URL = '/login/'

SETTINGS_IN_CONTEXT = ['WEBSITE_NAME','WEBSITE_CODE','URL','CONTACT_EMAIL']

RECAPTCHA_PUBLIC_KEY = '6LfUfwYAAAAAAESuDyPumAe4kHVURZMvOK91GpSs'
RECAPTCHA_PRIVATE_KEY = '6LfUfwYAAAAAAIW8YrjQL16Vi13dABndqZb_Rb0a'

WORLD_PAY_SECRET_KEY = 'Apples&Pairsd0wntheSta1rs'
WORLD_PAY_INSTALLATION_ID = '269045'
WORLD_PAY_URL = 'https://secure-test.worldpay.com/wcc/purchase'
WORLD_PAY_TEST = True
WORLD_PAY_PASSWORD = 'hdfskj!f%hse39w20934wosd'

# Hosts/domain names that are valid for this site; required if DEBUG is False
# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
ALLOWED_HOSTS = []

# 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.
# In a Windows environment this must be set to your system time zone.
TIME_ZONE = 'Europe/London'

# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = 'en-GB'

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

# If you set this to False, Django will not format dates, numbers and
# calendars according to the current locale.
USE_L10N = True

# If you set this to False, Django will not use timezone-aware datetimes.
USE_TZ = True

# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/var/www/example.com/media/"
MEDIA_ROOT = ROOT + '/static/uploads/'

# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
# Examples: "http://example.com/media/", "http://media.example.com/"
MEDIA_URL = '/media/'

# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/var/www/example.com/static/"
STATIC_ROOT = ROOT + '/static/'

# URL prefix for static files.
# Example: "http://example.com/static/", "http://static.example.com/"
STATIC_URL = '/static/'

# 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.
    ROOT + '/static/common/',
)

# 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',
)

# Make this unique, and don't share it with anybody.
SECRET_KEY = '689+%g&enow!h7^9h%nd3&j1igquvs!jcudfrij7qqy36_(&h6'

# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',
#     'django.template.loaders.eggs.Loader',
)

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    #'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    # Uncomment the next line for simple clickjacking protection:
    # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
)

ROOT_URLCONF = 'core.urls'

# Python dotted path to the WSGI application used by Django's runserver.
WSGI_APPLICATION = 'core.wsgi.application'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [ROOT + '/templates/',],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.core.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
                'django.core.context_processors.static',
                'modules.blocks.context_processors.get_menus',
                'modules.blocks.context_processors.get_sidebar',
                'modules.core.context_processors.get_login_form',
                'modules.members.context_processors.get_member',
                'modules.core.context_processors.get_settings',
            ],
        },
    },
]

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'django.contrib.admin',
    'django.contrib.admindocs',
    'bootstrap3',
    'impersonate',
    'captcha',
    'easy_thumbnails',
    'modules.abstracts',
    'modules.admin_users',
    'modules.blocks',
    'modules.contact',
    'modules.core',
    'modules.cpd',
    'modules.donations',
    'modules.elections',
    'modules.exam_application',
    'modules.file_manager',
    'modules.jobs',
    'modules.mediacentre',
    'modules.meeting_booking',
    'modules.members',
    'modules.notifications',
    'modules.pages',
    'modules.papers',
    'modules.payments',
    'modules.resources',
    'modules.theory_exam'
)

BOOTSTRAP3 = {
    'horizontal_label_class': 'col-md-3',
    'horizontal_field_class': 'col-md-9',
    'set_required': True,
    'set_placeholder': False,
}

AUTH_PROFILE_MODULE = 'core.UserProfile'
