Ben Sturmfels
acd2cef276
It's much simpler if "podjango" is the name of the Django app with a single urls.py etc. The reason this is required is because podjango was originally a fully-blown Django website and now it's become a Django app within the Conservancy website.
82 lines
3.6 KiB
Python
82 lines
3.6 KiB
Python
# Copyright (C) 2008 Bradley M. Kuhn <bkuhn@ebb.org>
|
|
# Copyright (C) 2006, 2007 Software Freedom Law Center, Inc.
|
|
#
|
|
# This software's license gives you freedom; you can copy, convey,
|
|
# propogate, redistribute and/or modify this program under the terms of
|
|
# the GNU Affero General Public License (AGPL) as published by the Free
|
|
# Software Foundation (FSF), either version 3 of the License, or (at your
|
|
# option) any later version of the AGPL published by the FSF.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
# General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program in a file in the toplevel directory called
|
|
# "AGPLv3". If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
from django.db import models
|
|
from django.conf import settings
|
|
from django.urls import reverse
|
|
from datetime import datetime, timedelta
|
|
|
|
|
|
class CastTag(models.Model):
|
|
"""Tagging for casts"""
|
|
|
|
label = models.CharField(max_length=100)
|
|
slug = models.SlugField()
|
|
|
|
class Meta:
|
|
db_table = 'cast_tags' # legacy
|
|
|
|
def __str__(self):
|
|
return self.label
|
|
|
|
def get_absolute_url(self):
|
|
return reverse('podjango:cast') + "?tag=%s" % self.slug
|
|
|
|
|
|
class Cast(models.Model):
|
|
"""Cast"""
|
|
|
|
title = models.CharField(max_length=200)
|
|
slug = models.SlugField(unique=True)
|
|
summary = models.TextField(help_text="Use raw HTML. This summary is not included at the beginning of the body when the entry is displayed. It used only for the material on the front page.")
|
|
body = models.TextField(help_text="Use raw HTML. Include the full body of any show notes or other information about this episode. It will be labelled on the site as Show Notes. It is included on the detail entry, and in the description data on the cast RSS feed.")
|
|
pub_date = models.DateTimeField()
|
|
tags = models.ManyToManyField(CastTag, blank=True)
|
|
ogg_path = models.CharField(max_length=300, blank=True,
|
|
help_text="Local filename of the Ogg file, relative to webroot. File should be uploaded into the static media area for casts.")
|
|
mp3_path = models.CharField(max_length=300, blank=True,
|
|
help_text="Local filename of the mp3 file, relative to webroot. File should be uploaded into the static media area for casts.")
|
|
ogg_length = models.IntegerField(blank=False, help_text="size in bytes of ogg file")
|
|
mp3_length = models.IntegerField(blank=False, help_text="size in bytes of mp3 file")
|
|
duration = models.CharField(max_length=8, blank=False, help_text="length in hh:mm:ss of mp3 file")
|
|
date_created = models.DateTimeField(auto_now_add=True)
|
|
date_last_modified = models.DateTimeField(auto_now=True)
|
|
|
|
class Meta:
|
|
db_table = 'casts_entries' # legacy
|
|
verbose_name_plural = 'casts'
|
|
ordering = ('-pub_date',)
|
|
get_latest_by = 'pub_date'
|
|
|
|
def __str__(self):
|
|
return self.title
|
|
|
|
def get_absolute_url(self):
|
|
return reverse(
|
|
'podjango:detail',
|
|
kwargs={
|
|
'year': self.pub_date.year,
|
|
'month': self.pub_date.strftime("%b").lower(),
|
|
'day': self.pub_date.day,
|
|
'slug': self.slug,
|
|
}
|
|
)
|
|
|
|
def is_recent(self):
|
|
return self.pub_date > (datetime.now() - timedelta(days=14))
|
|
# question: does datetime.now() do a syscall each time is it called?
|