2013-04-29 19:34:51 +02:00
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
'''
|
2013-05-05 20:36:35 +02:00
|
|
|
|
feedgen.ext.podcast
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
2013-04-29 19:34:51 +02:00
|
|
|
|
|
2013-05-04 22:54:43 +02:00
|
|
|
|
Extends the FeedGenerator to produce podcasts.
|
2013-04-29 19:34:51 +02:00
|
|
|
|
|
|
|
|
|
:copyright: 2013, Lars Kiesow <lkiesow@uos.de>
|
|
|
|
|
|
2013-05-03 17:13:08 +02:00
|
|
|
|
:license: FreeBSD and LGPL, see license.* for more details.
|
2013-04-29 19:34:51 +02:00
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
from lxml import etree
|
2013-05-05 18:17:44 +02:00
|
|
|
|
from feedgen.ext.base import BaseExtension
|
2016-03-21 15:38:44 +01:00
|
|
|
|
from feedgen.util import ensure_format
|
2013-04-29 19:34:51 +02:00
|
|
|
|
|
|
|
|
|
|
2013-05-05 18:17:44 +02:00
|
|
|
|
class PodcastExtension(BaseExtension):
|
2013-05-04 20:08:08 +02:00
|
|
|
|
'''FeedGenerator extension for podcasts.
|
|
|
|
|
'''
|
2013-04-29 19:34:51 +02:00
|
|
|
|
|
|
|
|
|
|
2013-05-16 19:04:03 +02:00
|
|
|
|
def __init__(self):
|
|
|
|
|
## ITunes tags
|
|
|
|
|
# http://www.apple.com/itunes/podcasts/specs.html#rss
|
|
|
|
|
self.__itunes_author = None
|
|
|
|
|
self.__itunes_block = None
|
|
|
|
|
self.__itunes_category = None
|
|
|
|
|
self.__itunes_image = None
|
|
|
|
|
self.__itunes_explicit = None
|
|
|
|
|
self.__itunes_complete = None
|
|
|
|
|
self.__itunes_new_feed_url = None
|
|
|
|
|
self.__itunes_owner = None
|
|
|
|
|
self.__itunes_subtitle = None
|
|
|
|
|
self.__itunes_summary = None
|
2013-04-29 19:34:51 +02:00
|
|
|
|
|
|
|
|
|
|
2014-05-01 01:18:30 +02:00
|
|
|
|
def extend_ns(self):
|
|
|
|
|
return {'itunes' : 'http://www.itunes.com/dtds/podcast-1.0.dtd'}
|
2013-04-29 19:34:51 +02:00
|
|
|
|
|
|
|
|
|
|
2013-05-05 18:17:44 +02:00
|
|
|
|
def extend_rss(self, rss_feed):
|
2014-05-12 19:04:55 +02:00
|
|
|
|
'''Extend an RSS feed root with set itunes fields.
|
2013-04-29 19:34:51 +02:00
|
|
|
|
|
2014-05-12 19:04:55 +02:00
|
|
|
|
:returns: The feed root element.
|
2013-04-29 19:34:51 +02:00
|
|
|
|
'''
|
|
|
|
|
ITUNES_NS = 'http://www.itunes.com/dtds/podcast-1.0.dtd'
|
2014-05-12 19:04:55 +02:00
|
|
|
|
channel = rss_feed[0]
|
2013-04-29 19:34:51 +02:00
|
|
|
|
|
|
|
|
|
if self.__itunes_author:
|
|
|
|
|
author = etree.SubElement(channel, '{%s}author' % ITUNES_NS)
|
|
|
|
|
author.text = self.__itunes_author
|
|
|
|
|
|
|
|
|
|
if not self.__itunes_block is None:
|
|
|
|
|
block = etree.SubElement(channel, '{%s}block' % ITUNES_NS)
|
|
|
|
|
block.text = 'yes' if self.__itunes_block else 'no'
|
|
|
|
|
|
2016-03-21 15:38:44 +01:00
|
|
|
|
for c in self.__itunes_category or []:
|
|
|
|
|
if not c.get('cat'):
|
|
|
|
|
continue
|
|
|
|
|
category = channel.find('{%s}category[@text="%s"]' % (ITUNES_NS,c.get('cat')))
|
|
|
|
|
if category == None:
|
|
|
|
|
category = etree.SubElement(channel, '{%s}category' % ITUNES_NS)
|
|
|
|
|
category.attrib['text'] = c.get('cat')
|
|
|
|
|
|
|
|
|
|
if c.get('sub'):
|
2013-04-29 19:34:51 +02:00
|
|
|
|
subcategory = etree.SubElement(category, '{%s}category' % ITUNES_NS)
|
2016-03-21 15:38:44 +01:00
|
|
|
|
subcategory.attrib['text'] = c.get('sub')
|
2013-04-29 19:34:51 +02:00
|
|
|
|
|
2013-05-03 14:19:04 +02:00
|
|
|
|
if self.__itunes_image:
|
|
|
|
|
image = etree.SubElement(channel, '{%s}image' % ITUNES_NS)
|
2013-08-15 10:34:02 +02:00
|
|
|
|
image.attrib['href'] = self.__itunes_image
|
2013-05-03 14:19:04 +02:00
|
|
|
|
|
2013-04-30 17:54:38 +02:00
|
|
|
|
if self.__itunes_explicit in ('yes', 'no', 'clean'):
|
|
|
|
|
explicit = etree.SubElement(channel, '{%s}explicit' % ITUNES_NS)
|
|
|
|
|
explicit.text = self.__itunes_explicit
|
|
|
|
|
|
|
|
|
|
if self.__itunes_complete in ('yes', 'no'):
|
|
|
|
|
complete = etree.SubElement(channel, '{%s}complete' % ITUNES_NS)
|
|
|
|
|
complete.text = self.__itunes_complete
|
|
|
|
|
|
|
|
|
|
if self.__itunes_new_feed_url:
|
|
|
|
|
new_feed_url = etree.SubElement(channel, '{%s}new-feed-url' % ITUNES_NS)
|
|
|
|
|
new_feed_url.text = self.__itunes_new_feed_url
|
|
|
|
|
|
2013-05-02 14:21:46 +02:00
|
|
|
|
if self.__itunes_owner:
|
|
|
|
|
owner = etree.SubElement(channel, '{%s}owner' % ITUNES_NS)
|
|
|
|
|
owner_name = etree.SubElement(owner, '{%s}name' % ITUNES_NS)
|
|
|
|
|
owner_name.text = self.__itunes_owner.get('name')
|
|
|
|
|
owner_email = etree.SubElement(owner, '{%s}email' % ITUNES_NS)
|
|
|
|
|
owner_email.text = self.__itunes_owner.get('email')
|
|
|
|
|
|
|
|
|
|
if self.__itunes_subtitle:
|
|
|
|
|
subtitle = etree.SubElement(channel, '{%s}subtitle' % ITUNES_NS)
|
|
|
|
|
subtitle.text = self.__itunes_subtitle
|
|
|
|
|
|
|
|
|
|
if self.__itunes_summary:
|
|
|
|
|
summary = etree.SubElement(channel, '{%s}summary' % ITUNES_NS)
|
|
|
|
|
summary.text = self.__itunes_summary
|
|
|
|
|
|
2014-05-12 19:04:55 +02:00
|
|
|
|
return rss_feed
|
2013-04-29 19:34:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def itunes_author(self, itunes_author=None):
|
|
|
|
|
'''Get or set the itunes:author. The content of this tag is shown in the
|
|
|
|
|
Artist column in iTunes. If the tag is not present, iTunes uses the
|
|
|
|
|
contents of the <author> tag. If <itunes:author> is not present at the
|
|
|
|
|
feed level, iTunes will use the contents of <managingEditor>.
|
|
|
|
|
|
|
|
|
|
:param itunes_author: The author of the podcast.
|
|
|
|
|
:returns: The author of the podcast.
|
|
|
|
|
'''
|
|
|
|
|
if not itunes_author is None:
|
|
|
|
|
self.__itunes_author = itunes_author
|
|
|
|
|
return self.__itunes_author
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def itunes_block(self, itunes_block=None):
|
|
|
|
|
'''Get or set the ITunes block attribute. Use this to prevent the entire
|
2014-05-11 20:24:48 +02:00
|
|
|
|
podcast from appearing in the iTunes podcast directory.
|
2013-04-29 19:34:51 +02:00
|
|
|
|
|
|
|
|
|
:param itunes_block: Block the podcast.
|
|
|
|
|
:returns: If the podcast is blocked.
|
|
|
|
|
'''
|
|
|
|
|
if not itunes_block is None:
|
|
|
|
|
self.__itunes_block = itunes_block
|
|
|
|
|
return self.__itunes_block
|
|
|
|
|
|
2016-03-21 15:38:44 +01:00
|
|
|
|
def itunes_category(self, itunes_category=None, replace=False, **kwargs):
|
2013-04-29 19:34:51 +02:00
|
|
|
|
'''Get or set the ITunes category which appears in the category column
|
|
|
|
|
and in iTunes Store Browser.
|
|
|
|
|
|
|
|
|
|
The (sub-)category has to be one from the values defined at
|
|
|
|
|
http://www.apple.com/itunes/podcasts/specs.html#categories
|
|
|
|
|
|
2016-03-21 15:38:44 +01:00
|
|
|
|
This method can be called with:
|
|
|
|
|
- the fields of an itunes_category as keyword arguments
|
|
|
|
|
- the fields of an itunes_category as a dictionary
|
|
|
|
|
- a list of dictionaries containing the itunes_category fields
|
|
|
|
|
|
|
|
|
|
An itunes_category has the following fields:
|
|
|
|
|
- *cat* name for a category.
|
|
|
|
|
- *sub* name for a subcategory, child of category
|
|
|
|
|
|
|
|
|
|
If a podcast has more than one subcategory from the same category, the
|
|
|
|
|
category is called more than once.
|
|
|
|
|
Like: [{"cat":"Arts","sub":"Design"},{"cat":"Arts","sub":"Food"}]
|
|
|
|
|
The code will be:
|
|
|
|
|
<itunes:category text="Arts">
|
|
|
|
|
<itunes:category text="Design"/>
|
|
|
|
|
<itunes:category text="Food"/>
|
|
|
|
|
</itunes:category>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:param itunes_category: Dictionary or list of dictionaries with itunes_category data.
|
|
|
|
|
:param replace: Add or replace old data.
|
|
|
|
|
:returns: List of itunes_categories as dictionaries.
|
2013-04-29 19:34:51 +02:00
|
|
|
|
'''
|
2016-03-21 15:38:44 +01:00
|
|
|
|
if itunes_category is None and kwargs:
|
|
|
|
|
itunes_category = kwargs
|
2013-04-29 19:34:51 +02:00
|
|
|
|
if not itunes_category is None:
|
2016-03-21 15:38:44 +01:00
|
|
|
|
if replace or self.__itunes_category is None:
|
|
|
|
|
self.__itunes_category = []
|
|
|
|
|
self.__itunes_category += ensure_format( itunes_category,
|
|
|
|
|
set(['cat', 'sub']), set(['cat']))
|
2013-04-29 19:34:51 +02:00
|
|
|
|
return self.__itunes_category
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def itunes_image(self, itunes_image=None):
|
|
|
|
|
'''Get or set the image for the podcast. This tag specifies the artwork
|
|
|
|
|
for your podcast. Put the URL to the image in the href attribute. iTunes
|
|
|
|
|
prefers square .jpg images that are at least 1400x1400 pixels, which is
|
|
|
|
|
different from what is specified for the standard RSS image tag. In order
|
|
|
|
|
for a podcast to be eligible for an iTunes Store feature, the
|
|
|
|
|
accompanying image must be at least 1400x1400 pixels.
|
|
|
|
|
|
|
|
|
|
iTunes supports images in JPEG and PNG formats with an RGB color space
|
|
|
|
|
(CMYK is not supported). The URL must end in ".jpg" or ".png". If the
|
|
|
|
|
<itunes:image> tag is not present, iTunes will use the contents of the
|
|
|
|
|
RSS image tag.
|
|
|
|
|
|
|
|
|
|
If you change your podcast’s image, also change the file’s name. iTunes
|
|
|
|
|
may not change the image if it checks your feed and the image URL is the
|
|
|
|
|
same. The server hosting your cover art image must allow HTTP head
|
|
|
|
|
requests for iTS to be able to automatically update your cover art.
|
|
|
|
|
|
|
|
|
|
:param itunes_image: Image of the podcast.
|
|
|
|
|
:returns: Image of the podcast.
|
|
|
|
|
'''
|
|
|
|
|
if not itunes_image is None:
|
|
|
|
|
if not ( itunes_image.endswith('.jpg') or itunes_image.endswith('.png') ):
|
|
|
|
|
ValueError('Image file must be png or jpg')
|
|
|
|
|
self.__itunes_image = itunes_image
|
|
|
|
|
return self.__itunes_image
|
|
|
|
|
|
|
|
|
|
|
2013-04-30 17:54:38 +02:00
|
|
|
|
def itunes_explicit(self, itunes_explicit=None):
|
|
|
|
|
'''Get or the the itunes:explicit value of the podcast. This tag should
|
|
|
|
|
be used to indicate whether your podcast contains explicit material. The
|
|
|
|
|
three values for this tag are "yes", "no", and "clean".
|
|
|
|
|
|
|
|
|
|
If you populate this tag with "yes", an "explicit" parental advisory
|
|
|
|
|
graphic will appear next to your podcast artwork on the iTunes Store and
|
|
|
|
|
in the Name column in iTunes. If the value is "clean", the parental
|
|
|
|
|
advisory type is considered Clean, meaning that no explicit language or
|
|
|
|
|
adult content is included anywhere in the episodes, and a "clean" graphic
|
|
|
|
|
will appear. If the explicit tag is present and has any other value
|
|
|
|
|
(e.g., "no"), you see no indicator — blank is the default advisory type.
|
|
|
|
|
|
|
|
|
|
:param itunes_explicit: If the podcast contains explicit material.
|
|
|
|
|
:returns: If the podcast contains explicit material.
|
|
|
|
|
'''
|
|
|
|
|
if not itunes_explicit is None:
|
|
|
|
|
if not itunes_explicit in ('', 'yes', 'no', 'clean'):
|
|
|
|
|
raise ValueError('Invalid value for explicit tag')
|
|
|
|
|
self.__itunes_explicit = itunes_explicit
|
|
|
|
|
return self.__itunes_explicit
|
2013-04-29 19:34:51 +02:00
|
|
|
|
|
|
|
|
|
|
2013-04-30 17:54:38 +02:00
|
|
|
|
def itunes_complete(self, itunes_complete=None):
|
|
|
|
|
'''Get or set the itunes:complete value of the podcast. This tag can be
|
|
|
|
|
used to indicate the completion of a podcast.
|
|
|
|
|
|
|
|
|
|
If you populate this tag with "yes", you are indicating that no more
|
|
|
|
|
episodes will be added to the podcast. If the <itunes:complete> tag is
|
|
|
|
|
present and has any other value (e.g. “no”), it will have no effect on
|
|
|
|
|
the podcast.
|
|
|
|
|
|
|
|
|
|
:param itunes_complete: If the podcast is complete.
|
|
|
|
|
:returns: If the podcast is complete.
|
|
|
|
|
'''
|
|
|
|
|
if not itunes_complete is None:
|
|
|
|
|
if not itunes_complete in ('yes', 'no', '', True, False):
|
|
|
|
|
raise ValueError('Invalid value for complete tag')
|
|
|
|
|
if itunes_complete == True:
|
|
|
|
|
itunes_complete = 'yes'
|
|
|
|
|
if itunes_complete == False:
|
|
|
|
|
itunes_complete = 'no'
|
|
|
|
|
self.__itunes_complete = itunes_complete
|
|
|
|
|
return self.__itunes_complete
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def itunes_new_feed_url(self, itunes_new_feed_url=None):
|
|
|
|
|
'''Get or set the new-feed-url property of the podcast. This tag allows
|
|
|
|
|
you to change the URL where the podcast feed is located
|
|
|
|
|
|
|
|
|
|
After adding the tag to your old feed, you should maintain the old feed
|
|
|
|
|
for 48 hours before retiring it. At that point, iTunes will have updated
|
|
|
|
|
the directory with the new feed URL.
|
|
|
|
|
|
|
|
|
|
:param itunes_new_feed_url: New feed URL.
|
|
|
|
|
:returns: New feed URL.
|
|
|
|
|
'''
|
|
|
|
|
if not itunes_new_feed_url is None:
|
|
|
|
|
self.__itunes_new_feed_url = itunes_new_feed_url
|
|
|
|
|
return self.__itunes_new_feed_url
|
|
|
|
|
|
2013-04-29 19:34:51 +02:00
|
|
|
|
|
2013-05-02 14:21:46 +02:00
|
|
|
|
def itunes_owner(self, name=None, email=None):
|
|
|
|
|
'''Get or set the itunes:owner of the podcast. This tag contains
|
|
|
|
|
information that will be used to contact the owner of the podcast for
|
|
|
|
|
communication specifically about the podcast. It will not be publicly
|
|
|
|
|
displayed.
|
|
|
|
|
|
|
|
|
|
:param itunes_owner: The owner of the feed.
|
|
|
|
|
:returns: Data of the owner of the feed.
|
|
|
|
|
'''
|
|
|
|
|
if not name is None:
|
|
|
|
|
if name and email:
|
|
|
|
|
self.__itunes_owner = {'name':name, 'email':email}
|
|
|
|
|
elif not name and not email:
|
|
|
|
|
self.__itunes_owner = None
|
|
|
|
|
else:
|
|
|
|
|
raise ValueError('Both name and email have to be set.')
|
|
|
|
|
return self.__itunes_owner
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def itunes_subtitle(self, itunes_subtitle=None):
|
|
|
|
|
'''Get or set the itunes:subtitle value for the podcast. The contents of
|
|
|
|
|
this tag are shown in the Description column in iTunes. The subtitle
|
|
|
|
|
displays best if it is only a few words long.
|
|
|
|
|
|
|
|
|
|
:param itunes_subtitle: Subtitle of the podcast.
|
|
|
|
|
:returns: Subtitle of the podcast.
|
|
|
|
|
'''
|
|
|
|
|
if not itunes_subtitle is None:
|
|
|
|
|
self.__itunes_subtitle = itunes_subtitle
|
|
|
|
|
return self.__itunes_subtitle
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def itunes_summary(self, itunes_summary=None):
|
|
|
|
|
'''Get or set the itunes:summary value for the podcast. The contents of
|
|
|
|
|
this tag are shown in a separate window that appears when the "circled i"
|
|
|
|
|
in the Description column is clicked. It also appears on the iTunes page
|
|
|
|
|
for your podcast. This field can be up to 4000 characters. If
|
|
|
|
|
<itunes:summary> is not included, the contents of the <description> tag
|
|
|
|
|
are used.
|
|
|
|
|
|
|
|
|
|
:param itunes_summary: Summary of the podcast.
|
|
|
|
|
:returns: Summary of the podcast.
|
|
|
|
|
'''
|
|
|
|
|
if not itunes_summary is None:
|
|
|
|
|
self.__itunes_summary = itunes_summary
|
|
|
|
|
return self.__itunes_summary
|
|
|
|
|
|
|
|
|
|
|
2013-04-29 19:34:51 +02:00
|
|
|
|
_itunes_categories = {
|
|
|
|
|
'Arts': [ 'Design', 'Fashion & Beauty', 'Food', 'Literature',
|
|
|
|
|
'Performing Arts', 'Visual Arts' ],
|
2014-05-11 20:24:48 +02:00
|
|
|
|
'Business' : [ 'Business News', 'Careers', 'Investing',
|
2013-04-29 19:34:51 +02:00
|
|
|
|
'Management & Marketing', 'Shopping' ],
|
|
|
|
|
'Comedy' : [],
|
2014-05-11 20:24:48 +02:00
|
|
|
|
'Education' : [ 'Education', 'Education Technology',
|
2013-04-29 19:34:51 +02:00
|
|
|
|
'Higher Education', 'K-12', 'Language Courses', 'Training' ],
|
|
|
|
|
'Games & Hobbies' : [ 'Automotive', 'Aviation', 'Hobbies',
|
|
|
|
|
'Other Games', 'Video Games' ],
|
|
|
|
|
'Government & Organizations' : [ 'Local', 'National', 'Non-Profit',
|
|
|
|
|
'Regional' ],
|
|
|
|
|
'Health' : [ 'Alternative Health', 'Fitness & Nutrition', 'Self-Help',
|
|
|
|
|
'Sexuality' ],
|
|
|
|
|
'Kids & Family' : [],
|
|
|
|
|
'Music' : [],
|
|
|
|
|
'News & Politics' : [],
|
|
|
|
|
'Religion & Spirituality' : [ 'Buddhism', 'Christianity', 'Hinduism',
|
|
|
|
|
'Islam', 'Judaism', 'Other', 'Spirituality' ],
|
|
|
|
|
'Science & Medicine' : [ 'Medicine', 'Natural Sciences',
|
|
|
|
|
'Social Sciences' ],
|
|
|
|
|
'Society & Culture' : [ 'History', 'Personal Journals', 'Philosophy',
|
|
|
|
|
'Places & Travel' ],
|
|
|
|
|
'Sports & Recreation' : [ 'Amateur', 'College & High School',
|
|
|
|
|
'Outdoor', 'Professional' ],
|
|
|
|
|
'Technology' : [ 'Gadgets', 'Tech News', 'Podcasting',
|
|
|
|
|
'Software How-To' ],
|
|
|
|
|
'TV & Film' : []
|
|
|
|
|
}
|