# Create a new file 'settings.py' and copy these contents into that file import secret import os import sys AUTH_MODE = "CAS" BASE_DIR = os.path.dirname(os.path.dirname(__file__)) # DEBUG mode is used to view more details when errors occur # Do not have set True in production DEBUG = False ADMINS = () MANAGERS = ADMINS DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': secret.DB_NAME, 'USER': secret.DB_USER, 'PASSWORD': secret.DB_PASSWORD, 'HOST': secret.DB_HOST, 'PORT': '', } } # The domains this application will be deployed on # e.g. Which domains this app should listen to requests from. ALLOWED_HOSTS = ['127.0.0.1'] # Peoplefinder API PF_URL = "http://api.srct.gmu.edu/pf/v1/" TIME_ZONE = 'America/New_York' LANGUAGE_CODE = 'en-us' SITE_ID = 1 USE_I18N = True USE_L10N = True USE_TZ = True MEDIA_URL = '/media/' MEDIA_ROOT = '' MEDIAFILES_DIRS = ( os.path.join(BASE_DIR, 'media/'), ) STATIC_URL = '/static/' STATIC_ROOT = '' STATICFILES_DIRS = ( os.path.join(BASE_DIR, 'static/'), ) STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', ) SECRET_KEY = secret.SECRET_KEY TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [ os.path.join(BASE_DIR, 'templates') ], 'OPTIONS': { 'context_processors': [ 'django.contrib.auth.context_processors.auth', 'django.template.context_processors.request' ], 'loaders': [ 'django.template.loaders.app_directories.Loader' ], 'debug': DEBUG } } ] 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', ) ROOT_URLCONF = 'settings.urls' WSGI_APPLICATION = 'settings.wsgi.application' INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', 'go', 'django.contrib.admin', 'qrcode', 'crispy_forms', 'bootstrap3_datetime', ) SESSION_SERIALIZER = 'django.contrib.sessions.serializers.JSONSerializer' LOGGING = { 'version': 1, 'disable_existing_loggers': False, 'filters': { 'require_debug_false': { '()': 'django.utils.log.RequireDebugFalse' } }, 'handlers': { 'mail_admins': { 'level': 'ERROR', 'filters': ['require_debug_false'], 'class': 'django.utils.log.AdminEmailHandler' }, 'console': { 'level': 'INFO', 'class': 'logging.StreamHandler', 'stream': sys.stdout } }, 'loggers': { 'django.request': { 'handlers': ['mail_admins'], 'level': 'ERROR', 'propagate': True, }, 'django': { 'handlers': ['console'], 'level': 'INFO', 'propogate': True }, } } LOGIN_URL = '/login' LOGOUT_URL = '/logout' LOGIN_REDIRECT_URL = '/' AUTHENTICATION_BACKENDS = ( 'django.contrib.auth.backends.ModelBackend', ) if AUTH_MODE.lower() == 'ldap': import ldap AUTHENTICATION_BACKENDS += ( 'django_auth_ldap.backend.LDAPBackend', ) AUTH_LDAP_SERVER_URI = "ldaps://directory.gmu.edu:636" # server url AUTH_LDAP_BIND_DN = "ou=people,o=gmu.edu" # bind DN AUTH_LDAP_BIND_AS_AUTHENTICATING_USER = True # use the user AUTH_LDAP_USER_DN_TEMPLATE = "uid=%(user)s,ou=people,o=gmu.edu" AUTH_LDAP_GLOBAL_OPTIONS = { # ignore UAC cert. ldap.OPT_X_TLS: ldap.OPT_X_TLS_DEMAND, ldap.OPT_X_TLS_REQUIRE_CERT: ldap.OPT_X_TLS_NEVER, } AUTH_LDAP_USER_ATTR_MAP = { "first_name": "givenName", "last_name": "sn", "email": "mail" } AUTH_LDAP_ALWAYS_UPDATE_USER = True elif AUTH_MODE.lower() == 'cas': CAS_SERVER_URL = "https://login.gmu.edu" CAS_LOGOUT_COMPLETELY = True CAS_PROVIDE_URL_TO_LOGOUT = True AUTHENTICATION_BACKENDS += ( 'cas.backends.CASBackend', ) CAS_RESPONSE_CALLBACKS = ( 'go.cas_callbacks.create_user', ) INSTALLED_APPS += ( 'cas', ) MIDDLEWARE_CLASSES += ( 'cas.middleware.CASMiddleware', ) CRISPY_TEMPLATE_PACK = 'bootstrap3' # Mail settings EMAIL_HOST = secret.EMAIL_HOST EMAIL_PORT = secret.EMAIL_PORT EMAIL_HOST_USER = secret.EMAIL_HOST_USER EMAIL_HOST_PASSWORD = secret.EMAIL_HOST_PASSWORD EMAIL_FROM = "example@example.com" EMAIL_TO = "to@example.com" # Domain used to email to users. See line 231 in views.py # ie. in Mason's case '@masonlive.gmu.edu' EMAIL_DOMAIN = "@example.com"