def handle_GET(self, request, context): # Check whether the referer header is from the same host as the server # is responding as try: internal_referer = request.META.get('HTTP_REFERER', '').split('/')[2] == request.META.get('HTTP_HOST') except IndexError: internal_referer = False # Redirects if the user is a desktop browser who hasn't been referred # from this site. Also extra checks for preview mode and DEBUG. if ("generic_web_browser" in device_parents[request.device.devid] and not request.session.get('home:desktop_shown', False) and not request.GET.get('preview') == 'true' and not internal_referer and not settings.DEBUG and conf.has_app('molly.apps.desktop')): return HttpResponseRedirect(reverse('desktop:index')) applications = [{ 'application_name': app.application_name, 'local_name': app.local_name, 'title': app.title, 'url': reverse('%s:index' % app.local_name) if app.has_urlconf else None, 'display_to_user': app.display_to_user, } for app in conf.all_apps()] context = { 'applications': applications, 'hide_feedback_link': True, } return self.render(request, context, 'home/index')
def handle_GET(self, request, context): # Check whether the referer header is from the same host as the server # is responding as try: referer_host = request.META.get('HTTP_REFERER', '').split('/')[2] internal_referer = referer_host == request.META.get('HTTP_HOST') except IndexError: internal_referer = False # Redirects if the user is a desktop browser who hasn't been referred # from this site. Also extra checks for preview mode and DEBUG. if ("generic_web_browser" in device_parents[request.device.devid] and not request.session.get('home:desktop_shown', False) and not request.GET.get('preview') == 'true' and not internal_referer and not settings.DEBUG and conf.has_app('molly.apps.desktop')): return HttpResponseRedirect(reverse('desktop:index')) # Add any one-off messages to be shown to this user messages = [] if not request.session.get('home:opera_mini_warning', False) \ and request.browser.mobile_browser == u'Opera Mini': messages.append("""Please note that the "Mobile View" on Opera Mini does not display this site correctly. To ensure correct operation of this site, ensure "Mobile View" is set to Off in Opera settings""") request.session['home:opera_mini_warning'] = True applications = [{ 'application_name': app.application_name, 'local_name': app.local_name, 'title': app.title, 'url': reverse('%s:index' % app.local_name) \ if app.has_urlconf else None, 'display_to_user': app.display_to_user, } for app in conf.all_apps()] # Add accesskeys to the first 9 apps to be displayed to the user for i, app in enumerate( [app for app in applications if app['display_to_user']][:9]): app['accesskey'] = i + 1 context = { 'applications': applications, 'hide_feedback_link': True, 'is_christmas': datetime.now().month == 12, 'messages': messages, 'favourites': get_favourites(request), } return self.render(request, context, 'home/index', expires=timedelta(minutes=10))
def handle_GET(self, request, context): # Check whether the referer header is from the same host as the server # is responding as try: referer_host = request.META.get('HTTP_REFERER', '').split('/')[2] internal_referer = referer_host == request.META.get('HTTP_HOST') except IndexError: internal_referer = False # Redirects if the user is a desktop browser who hasn't been referred # from this site. Also extra checks for preview mode and DEBUG. if ("generic_web_browser" in device_parents[request.device.devid] and not request.session.get('home:desktop_shown', False) and not request.GET.get('preview') == 'true' and not internal_referer and not settings.DEBUG and conf.has_app('molly.apps.desktop')): return HttpResponseRedirect(reverse('desktop:index')) # Add any one-off messages to be shown to this user messages = [] if not request.session.get('home:opera_mini_warning', False) \ and request.browser.mobile_browser == u'Opera Mini': messages.append("""Please note that the "Mobile View" on Opera Mini does not display this site correctly. To ensure correct operation of this site, ensure "Mobile View" is set to Off in Opera settings""") request.session['home:opera_mini_warning'] = True applications = [{ 'application_name': app.application_name, 'local_name': app.local_name, 'title': app.title, 'url': reverse('%s:index' % app.local_name) \ if app.has_urlconf else None, 'display_to_user': app.display_to_user, } for app in conf.all_apps()] # Add accesskeys to the first 9 apps to be displayed to the user for i, app in enumerate( [app for app in applications if app['display_to_user']][:9] ): app['accesskey'] = i + 1 context = { 'applications': applications, 'hide_feedback_link': True, 'is_christmas': datetime.now().month == 12, 'messages': messages, 'favourites': get_favourites(request), } return self.render(request, context, 'home/index', expires=timedelta(minutes=10))
def handle_GET(self, request, context): # Check whether the referer header is from the same host as the server # is responding as try: referer_host = request.META.get('HTTP_REFERER', '').split('/')[2] internal_referer = referer_host == request.META.get('HTTP_HOST') except IndexError: internal_referer = False # Redirects if the user is a desktop browser who hasn't been referred # from this site. Also extra checks for preview mode and DEBUG. if ("generic_web_browser" in device_parents[request.device.devid] and not request.session.get('home:desktop_shown', False) and not request.GET.get('preview') == 'true' and not internal_referer and not settings.DEBUG and conf.has_app('molly.apps.desktop') and request.REQUEST.get('format') is None): return self.redirect(reverse('desktop:index'), request) messages = [] # Add any one-off messages to be shown to this user if UserMessage.objects.filter( read=False, session_key=request.session.session_key).count(): messages.append({ 'url': reverse('home:messages'), 'body': _('You have a message from the developers') }) # Warn users who use Opera devices if not request.session.get('home:opera_mini_warning', False) \ and request.browser.mobile_browser == u'Opera Mini': messages.append({ 'body': _("""Please note that the "Mobile View" on Opera Mini does not display this site correctly. To ensure correct operation of this site, ensure "Mobile View" is set to Off in Opera settings""" ) }) request.session['home:opera_mini_warning'] = True if has_app_by_application_name('molly.apps.weather'): weather_id = app_by_application_name( 'molly.apps.weather').location_id try: weather = Weather.objects.get(ptype='o', location_id=weather_id) except Weather.DoesNotExist: weather = None else: weather = None applications = [{ 'application_name': app.application_name, 'local_name': app.local_name, 'title': app.title, 'url': reverse('%s:index' % app.local_name) \ if app.has_urlconf else None, 'display_to_user': app.display_to_user, } for app in conf.all_apps()] # Add accesskeys to the first 9 apps to be displayed to the user for i, app in enumerate( [app for app in applications if app['display_to_user']][:9]): app['accesskey'] = i + 1 context = { 'applications': applications, 'hide_feedback_link': True, 'messages': messages, 'favourites': get_favourites(request), 'weather': weather, } return self.render(request, context, 'home/index', expires=timedelta(minutes=10))
def handle_GET(self, request, context): # Check whether the referer header is from the same host as the server # is responding as try: referer_host = request.META.get('HTTP_REFERER', '').split('/')[2] internal_referer = referer_host == request.META.get('HTTP_HOST') except IndexError: internal_referer = False # Redirects if the user is a desktop browser who hasn't been referred # from this site. Also extra checks for preview mode and DEBUG. if ("generic_web_browser" in device_parents[request.device.devid] and not request.session.get('home:desktop_shown', False) and not request.GET.get('preview') == 'true' and not internal_referer and not settings.DEBUG and conf.has_app('molly.apps.desktop') and request.REQUEST.get('format') is None): return self.redirect(reverse('desktop:index'), request) messages = [] # Add any one-off messages to be shown to this user if UserMessage.objects.filter( read=False, session_key=request.session.session_key).count(): messages.append({ 'url': reverse('home:messages'), 'body': _('You have a message from the developers') }) # Warn users who use Opera devices if not request.session.get('home:opera_mini_warning', False) \ and request.browser.mobile_browser == u'Opera Mini': messages.append( { 'body': _("""Please note that the "Mobile View" on Opera Mini does not display this site correctly. To ensure correct operation of this site, ensure "Mobile View" is set to Off in Opera settings""") }) request.session['home:opera_mini_warning'] = True if has_app_by_application_name('molly.apps.weather'): weather_id = app_by_application_name('molly.apps.weather').location_id try: weather = Weather.objects.get(ptype='o', location_id=weather_id) except Weather.DoesNotExist: weather = None else: weather = None applications = [{ 'application_name': app.application_name, 'local_name': app.local_name, 'title': app.title, 'url': reverse('%s:index' % app.local_name) \ if app.has_urlconf else None, 'display_to_user': app.display_to_user, } for app in conf.all_apps()] # Add accesskeys to the first 9 apps to be displayed to the user for i, app in enumerate( [app for app in applications if app['display_to_user']][:9] ): app['accesskey'] = i + 1 context = { 'applications': applications, 'hide_feedback_link': True, 'messages': messages, 'favourites': get_favourites(request), 'weather': weather, } return self.render(request, context, 'home/index', expires=timedelta(minutes=10))