46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
from django.conf import settings
|
|
from django.core.urlresolvers import reverse
|
|
from django.shortcuts import redirect
|
|
from django_future.csrf import ensure_csrf_cookie
|
|
|
|
import student.views
|
|
import branding
|
|
import courseware.views
|
|
from util.cache import cache_if_anonymous
|
|
|
|
|
|
@ensure_csrf_cookie
|
|
@cache_if_anonymous
|
|
def index(request):
|
|
'''
|
|
Redirects to main page -- info page if user authenticated, or marketing if not
|
|
'''
|
|
|
|
if settings.COURSEWARE_ENABLED and request.user.is_authenticated():
|
|
return redirect(reverse('dashboard'))
|
|
|
|
if settings.MITX_FEATURES.get('AUTH_USE_MIT_CERTIFICATES'):
|
|
from external_auth.views import ssl_login
|
|
return ssl_login(request)
|
|
|
|
university = branding.get_university(request.META.get('HTTP_HOST'))
|
|
if university is None:
|
|
return student.views.index(request, user=request.user)
|
|
|
|
return courseware.views.university_profile(request, university)
|
|
|
|
|
|
@ensure_csrf_cookie
|
|
@cache_if_anonymous
|
|
def courses(request):
|
|
"""
|
|
Render the "find courses" page. If subdomain branding is on, this is the
|
|
university profile page, otherwise it's the edX courseware.views.courses page
|
|
"""
|
|
|
|
university = branding.get_university(request.META.get('HTTP_HOST'))
|
|
if university is None:
|
|
return courseware.views.courses(request)
|
|
|
|
return courseware.views.university_profile(request, university)
|