# Django settings for cc-core project.

DEBUG = False
DEVELOPMENT = False
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': 'svtgbi',
        'PASSWORD': 'wmRU6DZdMHXhWs6e',
        'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
        'PORT': '', # Set to empty string for default.
    }
}

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

ROOT = '/var/www/svtgbi.org/svtgbi'

PRIVATE_FILES = '/var/www/svtgbi.org/private'

URL = 'https://www.svtgbi.org.uk'
PAYMENT_URL = 'https://www.svtgbi.org.uk'

CONTACT_EMAIL = 'admin@svtgbi.org'
MEMBERS_EMAIL = 'admin@svtgbi.org'

LOGIN_URL = '/login/'

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

RECAPTCHA_PUBLIC_KEY = '6LfrL00UAAAAAEr-8tOkIbQO9KeJXlQ2a_c4I-iP'
RECAPTCHA_PRIVATE_KEY = '6LfrL00UAAAAAAo3qW8OFH23qjAkqmGs6bQXFcNB'

WORLD_PAY_SECRET_KEY = 'Apples&Pairsd0wntheSta1rs'
WORLD_PAY_INSTALLATION_ID = '269045'
WORLD_PAY_URL = 'https://secure.worldpay.com/wcc/purchase'
WORLD_PAY_TEST = False
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 = ['svtgbi.capabilitycloud.co.uk','www.svtgbi.org.uk']

# 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',
    'impersonate.middleware.ImpersonateMiddleware'
)

ROOT_URLCONF = 'core.urls'

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


TEMPLATE_DIRS = (
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
    # Always use forward slashes, even on Windows.
    # Don't forget to use absolute paths, not relative paths.
    ROOT + '/templates/',
)

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',
    'snowpenguin.django.recaptcha2',
    '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.mediacentre',
    'modules.meeting_booking',
    'modules.members',
    'modules.notifications',
    'modules.pages',
    'modules.papers',
    'modules.payments',
    'modules.resources',
    'modules.theory_exam',
    'modules.jobs',
)

TEMPLATE_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.members.context_processors.get_journal_url',
    'modules.core.context_processors.get_settings',
)


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

AUTH_PROFILE_MODULE = 'core.UserProfile'

JOURNAL_ORIGIN_ID = 'C000389009'
JOURNAL_SALT = 'd!i:oVrgjGc7wS7TTvJ.;lQznU7ce;qD'

EMAIL_HOST = 'smtp-relay.brevo.com'
EMAIL_HOST_USER = 'daniel@capabilitycloud.co.uk'
EMAIL_HOST_PASSWORD = 'azD7GCFSNkmJvf4x'
EMAIL_PORT = 587
EMAIL_USE_TLS = True

from modules.safelogging.settings import *
