]> git.0d.be Git - panikweb.git/blobdiff - panikweb/views.py
templates: strip label of embed dialog
[panikweb.git] / panikweb / views.py
index 31385ebb53d7de7ef38ba86b25f05120866a7e53..f918932890c383817649aeb3513441ffb830cf8e 100644 (file)
@@ -6,11 +6,13 @@ import random
 import os
 import stat
 import time
-import urlparse
 
 from django.core.urlresolvers import reverse
 from django.conf import settings
-from django.http import Http404
+from django.http import Http404, JsonResponse
+from django.utils.encoding import force_text
+from django.utils.encoding import python_2_unicode_compatible
+from django.utils.six.moves.urllib import parse as urlparse
 from django.views.decorators.cache import cache_control
 from django.views.generic.base import TemplateView
 from django.views.generic.detail import DetailView
@@ -25,7 +27,6 @@ from django.contrib.syndication.views import Feed, add_domain
 from django.utils.feedgenerator import Atom1Feed, Rss201rev2Feed
 
 from haystack.query import SearchQuerySet
-from jsonresponse import to_json
 
 from emissions.models import Category, Emission, Episode, Diffusion, SoundFile, \
         Schedule, Nonstop, NewsItem, NewsCategory, Focus
@@ -81,7 +82,7 @@ class EmissionMixin:
         if emission.archived:
             current_year = emission.creation_timestamp.replace(month=5, day=1)
         else:
-            current_year = datetime.now().replace(month=5, day=1)
+            current_year = datetime.now().replace(month=5, day=1).replace(year=2019)
 
         context['all_episodes'] = episodes_queryset.filter(
                 creation_timestamp__gt=current_year
@@ -142,6 +143,10 @@ emission = EmissionDetailView.as_view()
 class EpisodeDetailView(DetailView, EmissionMixin):
     model = Episode
 
+    def get_queryset(self, *args, **kwargs):
+        queryset = super(EpisodeDetailView, self).get_queryset(*args, **kwargs)
+        return queryset.filter(emission__slug=self.kwargs['emission_slug'])
+
     def get_context_data(self, **kwargs):
         context = super(EpisodeDetailView, self).get_context_data(**kwargs)
         context['diffusions'] = Diffusion.objects.select_related().filter(
@@ -259,6 +264,7 @@ class ProgramView(TemplateView):
 
 program = ProgramView.as_view()
 
+@python_2_unicode_compatible
 class TimeCell:
     nonstop = None
     w = 1
@@ -280,14 +286,14 @@ class TimeCell:
                 end_time.minute)
         self.schedules.append(schedule)
 
-    def __unicode__(self):
+    def __str__(self):
         if self.schedules:
             return ', '.join([x.emission.title for x in self.schedules])
         else:
             return self.nonstop
 
     def __eq__(self, other):
-        return (unicode(self) == unicode(other) and self.time_label == other.time_label)
+        return (force_text(self) == force_text(other) and self.time_label == other.time_label)
 
 
 class Grid(TemplateView):
@@ -299,6 +305,8 @@ class Grid(TemplateView):
         nb_lines = 2 * 24 # the cells are half hours
         grid = []
 
+        Schedule.DAY_HOUR_START = 12
+
         times = ['%02d:%02d' % (x/2, x%2*30) for x in range(nb_lines)]
         # start grid after the night programs
         times = times[2*Schedule.DAY_HOUR_START:] + times[:2*Schedule.DAY_HOUR_START]
@@ -326,7 +334,10 @@ class Grid(TemplateView):
             for j in range(7):
                 grid[-1].append(TimeCell(i, j))
 
-            nonstop = [x for x in nonstops if i>=x[0]*2 and i<x[1]*2][0]
+            try:
+                nonstop = [x for x in nonstops if i>=x[0]*2 and i<x[1]*2][0]
+            except IndexError:
+                pass
             for time_cell in grid[-1]:
                 time_cell.nonstop = nonstop[2]
                 time_cell.nonstop_slug = nonstop[3]
@@ -336,7 +347,7 @@ class Grid(TemplateView):
                     time_cell.time_label = '%02d:00-%02d:00' % (
                             nonstop[0], nonstop[1])
 
-        for schedule in Schedule.objects.prefetch_related(
+        for schedule in Schedule.objects.filter(emission__archived=False).prefetch_related(
                 'emission__categories').select_related().order_by('datetime'):
             row_start = schedule.datetime.hour * 2 + \
                     int(math.ceil(schedule.datetime.minute / 30))
@@ -369,7 +380,7 @@ class Grid(TemplateView):
                             continue
                         # here it is, same cell, same emission, several
                         # schedules
-                        schedule_list.sort(lambda x,y: cmp(x.get_duration(), y.get_duration()))
+                        schedule_list.sort(key=lambda x: x.get_duration())
 
                         schedule = schedule_list[0]
                         end_time = schedule.datetime + timedelta(
@@ -475,8 +486,7 @@ class Grid(TemplateView):
                                     grid[i][j].time_label = same_cell_below.time_label
                                     # then we sort emissions so the longest are
                                     # put first
-                                    grid[i][j].schedules.sort(
-                                            lambda x, y: -cmp(x.get_duration(), y.get_duration()))
+                                    grid[i][j].schedules.sort(key=lambda x: -x.get_duration())
                                     # then we add individual time labels to the
                                     # other schedules
                                     for schedule in current_cell_schedules:
@@ -502,9 +512,9 @@ class Grid(TemplateView):
                 except IndexError:
                     pass
 
-        # cut night at 3am
-        grid = grid[:42]
-        times = times[:42]
+        # cut night
+        grid = grid[:28]
+        times = times[:28]
 
         context['grid'] = grid
         context['times'] = times
@@ -557,7 +567,10 @@ class News(TemplateView):
     template_name = 'news.html'
     def get_context_data(self, **kwargs):
         context = super(News, self).get_context_data(**kwargs)
-        context['focus'] = NewsItem.objects.exclude(date__gt=date.today()).filter(got_focus__isnull=False).select_related('category').order_by('-date')[:10]
+        context['focus'] = NewsItem.objects.exclude(date__gt=date.today()  # publication date
+                ).exclude(expiration_date__lt=date.today()  # expiration date
+                ).filter(got_focus__isnull=False
+                ).select_related('category').order_by('-date')[:10]
         context['news'] = NewsItem.objects.exclude(date__gt=date.today()).order_by('-date')
         return context
 
@@ -646,13 +659,16 @@ listen = Listen.as_view()
 
 @cache_control(max_age=15)
 @csrf_exempt
-@to_json('api')
 def onair(request):
-    if date.today() < date(2018, 7, 30):
-        return {'emission': {'title': 'À partir du 31 juillet 18h', 'url': '/'}}
-    if date.today() > date(2018, 8, 5):
-        return {'emission': {'title': "À l'année prochaine, découvrez les podcasts !", 'url': '/'}}
-    d = whatsonair()
+    if datetime.now() < datetime(2019, 7, 30, 17, 0):
+        class FakeNonstop(object):
+            title = 'Le festival arrive, découvrez déjà la musique !'
+        d = {'title': 'XXX', 'nonstop': FakeNonstop()}
+        #return JsonResponse({'data': {'emission': {'title': 'À partir du 31 juillet 18h', 'url': '/'}}})
+    elif date.today() >= date(2019, 8, 5):
+        return JsonResponse({'data': {'emission': {'title': "À l'année prochaine, découvrez les podcasts !", 'url': '/'}}})
+    else:
+        d = whatsonair()
     if d.get('episode'):
         d['episode'] = {
             'title': d['episode'].title,
@@ -667,16 +683,30 @@ def onair(request):
             'url': d['emission'].get_absolute_url(),
             'chat': chat_url,
         }
+
+    track_title = None
+    playing_txt = os.path.join(settings.MEDIA_ROOT, 'playing.txt')
+    if os.path.exists(playing_txt):
+        track_title = open(playing_txt).read().strip()
+        if len(track_title) < 6:
+            track_title = None
     if d.get('nonstop'):
         d['nonstop'] = {
             'title': d['nonstop'].title,
         }
-        playing_txt = os.path.join(settings.MEDIA_ROOT, 'playing.txt')
-        if os.path.exists(os.path.join(playing_txt)):
-            d['track_title'] = open(playing_txt).read().strip()
+        if track_title:
+            d['track_title'] = track_title
+    elif d.get('emission') and not d.get('episode') and track_title:
+        # live emission, if there's a track playing, and no known episode,
+        # display it.
+        d['episode'] = {
+            'title': track_title,
+            'url': d['emission']['url'],
+        }
+
     if d.get('current_slot'):
         del d['current_slot']
-    return d
+    return JsonResponse({'data': d})
 
 
 class NewsItemDetailView(DetailView):
@@ -700,9 +730,27 @@ class RssCustomPodcastsFeed(Rss201rev2Feed):
             handler.addQuickElement('title', 'Radio Esperanzah!')
         handler.addQuickElement('url', image_url)
         handler.endElement('image')
+        handler.addQuickElement('itunes:explicit', 'no')  # invidividual items will get their own value
         handler.addQuickElement('itunes:image', None, {'href': image_url})
-        if emission and emission.subtitle:
-            handler.addQuickElement('itunes:subtitle', emission.subtitle)
+        if emission:
+            if emission.subtitle:
+                handler.addQuickElement('itunes:subtitle', emission.subtitle)
+            for category in emission.categories.all():
+                if category.itunes_category:
+                    handler.addQuickElement('itunes:category', None, {'text': category.itunes_category})
+
+            handler.addQuickElement('itunes:author', emission.title)
+            handler.startElement('itunes:owner', {})
+            if emission.email:
+                handler.addQuickElement('itunes:email', emission.email)
+            handler.addQuickElement('itunes:name', emission.title)
+            handler.endElement('itunes:owner')
+        else:
+            handler.addQuickElement('itunes:author', 'Radio Esperanzah!')
+            handler.startElement('itunes:owner', {})
+            handler.addQuickElement('itunes:email', 'radio@esperanzah.be')
+            handler.addQuickElement('itunes:name', 'Radio Esperanzah!')
+            handler.endElement('itunes:owner')
 
     def root_attributes(self):
         attrs = super(RssCustomPodcastsFeed, self).root_attributes()
@@ -808,7 +856,7 @@ class EmissionPodcastsFeed(PodcastsFeed):
 
     @property
     def title(self):
-        return '%s - Podcasts' % self.emission.title
+        return self.emission.title
 
     @property
     def link(self):
@@ -866,7 +914,7 @@ class ArchivesView(TemplateView):
 
     def get_context_data(self, **kwargs):
         context = super(ArchivesView, self).get_context_data(**kwargs)
-        context['diffusions'] = Diffusion.objects.filter(episode__soundfile__isnull=False).select_related().order_by('-datetime')
+        context['diffusions'] = Diffusion.objects.filter(episode__soundfile__isnull=False).distinct().order_by('-datetime')
         return context
 
 archives = ArchivesView.as_view()