]> git.0d.be Git - panikweb.git/blobdiff - panikweb/views.py
feeds: include fragment id in guid
[panikweb.git] / panikweb / views.py
index a161b4b39a0a405600f21442581ac67a4e6fd804..6e5209bbf0707175b5e8d167b126f9d4423fe3e0 100644 (file)
@@ -1,27 +1,30 @@
-from datetime import datetime, timedelta
+from datetime import datetime, timedelta, date
 import math
 import random
 import os
 import stat
 import time
 
+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
 from django.views.decorators.csrf import csrf_exempt
 from django.views.generic.dates import _date_from_string
+from django.views.generic.dates import MonthArchiveView
 
 from django.core.paginator import Paginator
 
 from django.contrib.sites.models import Site
 from django.contrib.syndication.views import Feed, add_domain
-from django.utils.feedgenerator import Atom1Feed
+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
@@ -30,6 +33,9 @@ from emissions.utils import whatsonair, period_program
 
 from newsletter.forms import SubscribeForm
 from nonstop.utils import get_current_nonstop_track
+from nonstop.models import SomaLogLine
+
+from panikombo.models import ItemTopik
 
 from . import utils
 
@@ -96,10 +102,24 @@ class EmissionDetailView(DetailView, EmissionMixin):
 
     def get_context_data(self, **kwargs):
         context = super(EmissionDetailView, self).get_context_data(**kwargs)
-        context['sectionName'] = "Emissions"
         context['schedules'] = Schedule.objects.select_related().filter(
                 emission=self.object).order_by('rerun', 'datetime')
-        context['news'] = NewsItem.objects.all().filter(emission=self.object.id).order_by('-date')[:3]
+        context['news'] = NewsItem.objects.all(
+                ).filter(emission=self.object.id
+                ).exclude(expiration_date__lt=date.today()  # expiration date
+                ).exclude(date__lt=date.today() - timedelta(days=60)
+                ).order_by('-date')[:3]
+        try:
+            nonstop_object = Nonstop.objects.get(slug=self.object.slug)
+        except Nonstop.DoesNotExist:
+            pass
+        else:
+            today = date.today()
+            dates = [today - timedelta(days=x) for x in range(7)]
+            if datetime.now().time() < nonstop_object.start:
+                dates = dates[1:]
+            context['nonstop'] = nonstop_object
+            context['nonstop_dates'] = dates
         context.update(self.get_emission_context(self.object))
         return context
 emission = EmissionDetailView.as_view()
@@ -109,7 +129,6 @@ class EpisodeDetailView(DetailView, EmissionMixin):
 
     def get_context_data(self, **kwargs):
         context = super(EpisodeDetailView, self).get_context_data(**kwargs)
-        context['sectionName'] = "Emissions"
         context['diffusions'] = Diffusion.objects.select_related().filter(
                 episode=self.object.id).order_by('datetime')
         try:
@@ -119,17 +138,47 @@ class EpisodeDetailView(DetailView, EmissionMixin):
         if self.kwargs.get('emission_slug') != context['emission'].slug:
             raise Http404()
         context.update(self.get_emission_context(context['emission']))
+        context['topiks'] = [x.topik for x in ItemTopik.objects.filter(episode=self.object)]
         return context
 episode = EpisodeDetailView.as_view()
 
 
+class NonstopPlaylistView(TemplateView):
+    template_name = 'nonstop_playlist.html'
+
+    def get_context_data(self, **kwargs):
+        context = super(NonstopPlaylistView, self).get_context_data(**kwargs)
+        try:
+            context['emission'] = Emission.objects.get(slug=kwargs.get('slug'))
+        except Emission.DoesNotExist:
+            raise Http404()
+        context['date'] = date(int(kwargs.get('year')),
+                int(kwargs.get('month')), int(kwargs.get('day')))
+        context['future'] = (context['date'] >= date.today())
+
+        nonstop_object = Nonstop.objects.get(slug=kwargs.get('slug'))
+        start = datetime(
+                int(kwargs.get('year')), int(kwargs.get('month')), int(kwargs.get('day')),
+                nonstop_object.start.hour, nonstop_object.start.minute)
+        end = datetime(
+                int(kwargs.get('year')), int(kwargs.get('month')), int(kwargs.get('day')),
+                nonstop_object.end.hour, nonstop_object.end.minute)
+        if end < start:
+            end = end + timedelta(days=1)
+        context['tracks'] = SomaLogLine.objects.filter(
+                play_timestamp__gte=start,
+                play_timestamp__lte=end,
+                on_air=True).select_related()
+        return context
+
+nonstop_playlist = NonstopPlaylistView.as_view()
+
 class EmissionEpisodesDetailView(DetailView, EmissionMixin):
     model = Emission
     template_name = 'emissions/episodes.html'
 
     def get_context_data(self, **kwargs):
         context = super(EmissionEpisodesDetailView, self).get_context_data(**kwargs)
-        context['sectionName'] = "Emissions"
         context['schedules'] = Schedule.objects.select_related().filter(
                 emission=self.object).order_by('rerun', 'datetime')
 
@@ -146,12 +195,43 @@ class EmissionEpisodesDetailView(DetailView, EmissionMixin):
         return context
 emissionEpisodes = EmissionEpisodesDetailView.as_view()
 
+
+class SoundFileEmbedView(DetailView):
+    model = SoundFile
+    template_name = 'soundfiles/embed.html'
+
+    def get_context_data(self, **kwargs):
+        context = super(SoundFileEmbedView, self).get_context_data(**kwargs)
+        if self.kwargs.get('episode_slug') != self.object.episode.slug:
+            raise Http404()
+        if self.kwargs.get('emission_slug') != self.object.episode.emission.slug:
+            raise Http404()
+        context['episode'] = self.object.episode
+        return context
+soundfile_embed = SoundFileEmbedView.as_view()
+
+
+class SoundFileDialogEmbedView(DetailView):
+    model = SoundFile
+    template_name = 'soundfiles/dialog-embed.html'
+
+    def get_context_data(self, **kwargs):
+        context = super(SoundFileDialogEmbedView, self).get_context_data(**kwargs)
+        if self.kwargs.get('episode_slug') != self.object.episode.slug:
+            raise Http404()
+        if self.kwargs.get('emission_slug') != self.object.episode.emission.slug:
+            raise Http404()
+        context['episode'] = self.object.episode
+        return context
+soundfile_dlg_embed = SoundFileDialogEmbedView.as_view()
+
+
+
 class ProgramView(TemplateView):
     template_name = 'program.html'
 
     def get_context_data(self, year=None, week=None, **kwargs):
         context = super(ProgramView, self).get_context_data(**kwargs)
-        context['sectionName'] = "Emissions"
 
         context['weekday'] = datetime.today().weekday()
 
@@ -164,6 +244,7 @@ class ProgramView(TemplateView):
 
 program = ProgramView.as_view()
 
+@python_2_unicode_compatible
 class TimeCell:
     nonstop = None
     w = 1
@@ -185,14 +266,17 @@ class TimeCell:
                 end_time.minute)
         self.schedules.append(schedule)
 
-    def __unicode__(self):
+    def sorted_schedules(self):
+        return sorted(self.schedules, key=lambda x: x.week_sort_key())
+
+    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):
@@ -200,7 +284,6 @@ class Grid(TemplateView):
 
     def get_context_data(self, **kwargs):
         context = super(Grid, self).get_context_data(**kwargs)
-        context['sectionName'] = "Emissions"
 
         nb_lines = 2 * 24 # the cells are half hours
         grid = []
@@ -211,18 +294,20 @@ class Grid(TemplateView):
 
         nonstops = []
         for nonstop in Nonstop.objects.all():
+            if nonstop.start == nonstop.end:
+                continue
             if nonstop.start < nonstop.end:
                 nonstops.append([nonstop.start.hour + nonstop.start.minute/60.,
                                  nonstop.end.hour + nonstop.end.minute/60.,
-                                 nonstop.title, nonstop.slug])
+                                 nonstop.title, nonstop.slug, nonstop])
             else:
                 # crossing midnight
                 nonstops.append([nonstop.start.hour + nonstop.start.minute/60.,
                                  24,
-                                 nonstop.title, nonstop.slug])
+                                 nonstop.title, nonstop.slug, nonstop])
                 nonstops.append([0,
                                  nonstop.end.hour + nonstop.end.minute/60.,
-                                 nonstop.title, nonstop.slug])
+                                 nonstop.title, nonstop.slug, nonstop])
         nonstops.sort()
 
         for i in range(nb_lines):
@@ -234,6 +319,7 @@ class Grid(TemplateView):
             for time_cell in grid[-1]:
                 time_cell.nonstop = nonstop[2]
                 time_cell.nonstop_slug = nonstop[3]
+                time_cell.redirect_path = nonstop[4].redirect_path
                 if nonstop[1] == 5:
                     # the one ending at 5am will be cut down, so we inscribe
                     # its duration manually
@@ -273,7 +359,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(
@@ -379,8 +465,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:
@@ -426,9 +511,8 @@ class Home(TemplateView):
 
     def get_context_data(self, **kwargs):
         context = super(Home, self).get_context_data(**kwargs)
-        context['sectionName'] = "Home"
         context['emissions'] = Emission.objects.filter(archived=False).order_by('-creation_timestamp')[:3]
-        context['newsitems'] = NewsItem.objects.order_by('-date')[:3]
+        context['newsitems'] = NewsItem.objects.exclude(date__gt=date.today()).order_by('-date')[:3]
 
         context['soundfiles'] = SoundFile.objects.prefetch_related('episode__emission__categories').filter(
                 podcastable=True, fragment=False) \
@@ -450,9 +534,9 @@ class NewsItemView(DetailView):
     model = NewsItem
     def get_context_data(self, **kwargs):
         context = super(NewsItemView, self).get_context_data(**kwargs)
-        context['sectionName'] = "News"
         context['categories'] = NewsCategory.objects.all()
         context['news'] = NewsItem.objects.all().order_by('-date')
+        context['topiks'] = [x.topik for x in ItemTopik.objects.filter(newsitem=self.object)]
         return context
 newsitemview = NewsItemView.as_view()
 
@@ -460,20 +544,50 @@ class News(TemplateView):
     template_name = 'news.html'
     def get_context_data(self, **kwargs):
         context = super(News, self).get_context_data(**kwargs)
-        context['sectionName'] = "News"
-        context['focus'] = NewsItem.objects.filter(got_focus__isnull=False).select_related('category').order_by('-date')[:10]
-        context['news'] = NewsItem.objects.all().order_by('-date')
+        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
 
 news = News.as_view()
 
 
+class Agenda(TemplateView):
+    template_name = 'agenda.html'
+    def get_context_data(self, **kwargs):
+        context = super(Agenda, self).get_context_data(**kwargs)
+        context['agenda'] = NewsItem.objects.exclude(date__gt=date.today()).filter(
+                event_date__gte=date.today()).order_by('date')[:20]
+        context['news'] = NewsItem.objects.exclude(date__gt=date.today()).order_by('-date')
+        context['previous_month'] = datetime.today().replace(day=1) - timedelta(days=2)
+        return context
+
+agenda = Agenda.as_view()
+
+
+class AgendaByMonth(MonthArchiveView):
+    template_name = 'agenda.html'
+    queryset = NewsItem.objects.filter(event_date__isnull=False)
+    allow_future = True
+    date_field = 'event_date'
+    month_format = '%m'
+
+    def get_context_data(self, **kwargs):
+        context = super(AgendaByMonth, self).get_context_data(**kwargs)
+        context['agenda'] = context['object_list']
+        context['news'] = NewsItem.objects.all().order_by('-date')
+        return context
+
+agenda_by_month = AgendaByMonth.as_view()
+
+
 class Emissions(TemplateView):
     template_name = 'emissions.html'
 
     def get_context_data(self, **kwargs):
         context = super(Emissions, self).get_context_data(**kwargs)
-        context['sectionName'] = "Emissions"
         context['emissions'] = Emission.objects.prefetch_related('categories').filter(archived=False).order_by('title')
         context['categories'] = Category.objects.all()
         return context
@@ -485,7 +599,6 @@ class EmissionsArchives(TemplateView):
 
     def get_context_data(self, **kwargs):
         context = super(EmissionsArchives, self).get_context_data(**kwargs)
-        context['sectionName'] = "Emissions"
         context['emissions'] = Emission.objects.prefetch_related('categories').filter(archived=True).order_by('title')
         context['categories'] = Category.objects.all()
         return context
@@ -497,7 +610,6 @@ class Listen(TemplateView):
 
     def get_context_data(self, **kwargs):
         context = super(Listen, self).get_context_data(**kwargs)
-        context['sectionName'] = "Listen"
         context['focus'] = SoundFile.objects.prefetch_related('episode__emission__categories').filter(
                 podcastable=True, got_focus__isnull=False) \
                 .select_related().extra(select={
@@ -515,7 +627,7 @@ class Listen(TemplateView):
                     where=['''datetime = (SELECT MIN(datetime)
                                             FROM emissions_diffusion
                                         WHERE episode_id = emissions_episode.id)'''],
-                    tables=['emissions_diffusion'],).order_by('-creation_timestamp').distinct() [:10]
+                    tables=['emissions_diffusion'],).order_by('-creation_timestamp').distinct()
 
 
         return context
@@ -524,7 +636,6 @@ listen = Listen.as_view()
 
 @cache_control(max_age=15)
 @csrf_exempt
-@to_json('api')
 def onair(request):
     d = whatsonair()
     if d.get('episode'):
@@ -533,18 +644,25 @@ def onair(request):
             'url': d['episode'].get_absolute_url()
         }
     if d.get('emission'):
+        chat_url = None
+        if d['emission'].chat_open:
+            chat_url = reverse('emission-chat', kwargs={'slug': d['emission'].slug})
         d['emission'] = {
             'title': d['emission'].title,
-            'url': d['emission'].get_absolute_url()
+            'url': d['emission'].get_absolute_url(),
+            'chat': chat_url,
         }
     if d.get('nonstop'):
+        redirect_path = d['nonstop'].redirect_path
         d['nonstop'] = {
             'title': d['nonstop'].title,
         }
+        if redirect_path:
+            d['nonstop']['url'] = redirect_path
         d.update(get_current_nonstop_track())
     if d.get('current_slot'):
         del d['current_slot']
-    return d
+    return JsonResponse({'data': d})
 
 
 class NewsItemDetailView(DetailView):
@@ -552,23 +670,91 @@ class NewsItemDetailView(DetailView):
 
 newsitem = NewsItemDetailView.as_view()
 
+class RssCustomPodcastsFeed(Rss201rev2Feed):
+    def add_root_elements(self, handler):
+        super(RssCustomPodcastsFeed, self).add_root_elements(handler)
+        emission = self.feed.get('emission')
+        if emission and emission.image and emission.image.url:
+            image_url = emission.image.url
+        else:
+            image_url = '/static/img/logo-panik-500.png'
+        image_url = urlparse.urljoin(self.feed['link'], image_url)
+        handler.startElement('image', {})
+        if emission:
+            handler.addQuickElement('title', emission.title)
+        else:
+            handler.addQuickElement('title', settings.RADIO_NAME)
+        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:
+            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', settings.RADIO_NAME)
+            handler.startElement('itunes:owner', {})
+            handler.addQuickElement('itunes:email', 'info@radiopanik.org')
+            handler.addQuickElement('itunes:name', settings.RADIO_NAME)
+            handler.endElement('itunes:owner')
+
+    def root_attributes(self):
+        attrs = super(RssCustomPodcastsFeed, self).root_attributes()
+        attrs['xmlns:dc'] = 'http://purl.org/dc/elements/1.1/'
+        attrs['xmlns:itunes'] = 'http://www.itunes.com/dtds/podcast-1.0.dtd'
+        return attrs
+
+    def add_item_elements(self, handler, item):
+        super(RssCustomPodcastsFeed, self).add_item_elements(handler, item)
+        explicit = 'no'
+        for tag in item.get('tags') or []:
+            handler.addQuickElement('dc:subject', tag)
+            if tag == 'explicit':
+                explicit = 'yes'
+        if item.get('tags'):
+            handler.addQuickElement('itunes:keywords', ','.join(item.get('tags')))
+        handler.addQuickElement('itunes:explicit', explicit)
+        episode = item.get('episode')
+        if episode and episode.image and episode.image.url:
+            image_url = urlparse.urljoin(self.feed['link'], episode.image.url)
+            handler.addQuickElement('itunes:image', None, {'href': image_url})
+        soundfile = item.get('soundfile')
+        if soundfile.duration:
+            handler.addQuickElement('itunes:duration', '%02d:%02d:%02d' % (
+                soundfile.duration / 3600,
+                soundfile.duration % 3600 / 60,
+                soundfile.duration % 60))
+
 
 class PodcastsFeed(Feed):
-    title = 'Radio Panik - Podcasts'
+    title = '%s - Podcasts' % settings.RADIO_NAME
     link = '/'
     description_template = 'feed/soundfile.html'
+    feed_type = RssCustomPodcastsFeed
 
     def items(self):
         return SoundFile.objects.select_related().filter(
-                podcastable=True).order_by('-creation_timestamp')[:5]
+                podcastable=True).order_by('-creation_timestamp')[:20]
 
     def item_title(self, item):
         if item.fragment:
-            return '%s - %s' % (item.title, item.episode.title)
-        return item.episode.title
+            return '[%s] %s - %s' % (item.episode.emission.title, item.title, item.episode.title)
+        return '[%s] %s' % (item.episode.emission.title, item.episode.title)
 
     def item_link(self, item):
-        return item.episode.get_absolute_url()
+        if item.fragment:
+            return item.episode.get_absolute_url() + '#%s' % item.id
+        return item.episode.get_absolute_url() + '#%s' % item.id
 
     def item_enclosure_url(self, item):
         current_site = Site.objects.get(id=settings.SITE_ID)
@@ -587,25 +773,72 @@ class PodcastsFeed(Feed):
     def item_pubdate(self, item):
         return item.creation_timestamp
 
+    def item_extra_kwargs(self, item):
+        return {'tags': [x.name for x in item.episode.tags.all()],
+                'soundfile': item,
+                'episode': item.episode}
+
 podcasts_feed = PodcastsFeed()
 
 
 class RssNewsFeed(Feed):
-    title = 'Radio Panik'
+    title = settings.RADIO_NAME
     link = '/news/'
     description_template = 'feed/newsitem.html'
 
     def items(self):
-        return NewsItem.objects.order_by('-date')[:10]
+        return NewsItem.objects.order_by('-date')[:20]
 
 rss_news_feed = RssNewsFeed()
 
+class Atom1FeedWithBaseXml(Atom1Feed):
+    def root_attributes(self):
+        root_attributes = super(Atom1FeedWithBaseXml, self).root_attributes()
+        scheme, netloc, path, params, query, fragment  = urlparse.urlparse(self.feed['feed_url'])
+        root_attributes['xml:base'] = urlparse.urlunparse((scheme, netloc, '/', params, query, fragment))
+        return root_attributes
+
 class AtomNewsFeed(RssNewsFeed):
-    feed_type = Atom1Feed
+    feed_type = Atom1FeedWithBaseXml
 
 atom_news_feed = AtomNewsFeed()
 
 
+class EmissionPodcastsFeed(PodcastsFeed):
+    description_template = 'feed/soundfile.html'
+    feed_type = RssCustomPodcastsFeed
+
+    def __call__(self, request, *args, **kwargs):
+        self.emission = Emission.objects.get(slug=kwargs.get('slug'))
+        return super(EmissionPodcastsFeed, self).__call__(request, *args, **kwargs)
+
+    def item_title(self, item):
+        if item.fragment:
+            return '%s - %s' % (item.title, item.episode.title)
+        return item.episode.title
+
+    @property
+    def title(self):
+        return self.emission.title
+
+    @property
+    def description(self):
+        return self.emission.subtitle
+
+    @property
+    def link(self):
+        return reverse('emission-view', kwargs={'slug': self.emission.slug})
+
+    def feed_extra_kwargs(self, obj):
+        return {'emission': self.emission}
+
+    def items(self):
+        return SoundFile.objects.select_related().filter(
+                podcastable=True,
+                episode__emission__slug=self.emission.slug).order_by('-creation_timestamp')[:20]
+
+emission_podcasts_feed = EmissionPodcastsFeed()
+
 
 class Party(TemplateView):
     template_name = 'party.html'
@@ -632,3 +865,11 @@ class Party(TemplateView):
         return context
 
 party = Party.as_view()
+
+
+
+class Chat(DetailView, EmissionMixin):
+    model = Emission
+    template_name = 'chat.html'
+
+chat = cache_control(max_age=15)(Chat.as_view())