1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
# Miro - an RSS based video player application
# Copyright (C) 2007-2010 Participatory Culture Foundation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# In addition, as a special exception, the copyright holders give
# permission to link the code of portions of this program with the OpenSSL
# library.
#
# You must obey the GNU General Public License in all respects for all of
# the code used other than OpenSSL. If you modify file(s) with this
# exception, you may extend this exception to your version of the file(s),
# but you are not obligated to do so. If you do not wish to do so, delete
# this exception statement from your version. If you delete this exception
# statement from all source files in the program, then also delete it here.
"""``miro.theme`` -- Holds the ThemeHistory object.
"""
from miro.gtcache import gettext as _
import logging
from miro import config
from miro import prefs
import os
from miro.eventloop import as_urgent
from miro.database import DDBObject, ObjectNotFoundError
from miro import opml
from miro.plat import resources
from miro import guide
from miro import feed
from miro import folder
from miro import playlist
from miro import signals
class ThemeHistory(DDBObject):
"""DDBObject that keeps track of the themes used in regards
to setting up new themes and changing themes.
"""
def setup_new(self):
self.lastTheme = None
self.pastThemes = []
self.theme = config.get(prefs.THEME_NAME)
if self.theme is not None:
self.theme = unicode(self.theme)
# if we don't have a theme, self.theme will be None
self.pastThemes.append(self.theme)
self.on_first_run()
# We used to do this on restore, but we need to make sure that the
# whole database is loaded because we're checking to see if objects
# are present. So, we call it when we access the object in app.py
def check_new_theme(self):
self.theme = config.get(prefs.THEME_NAME)
if self.theme is not None:
self.theme = unicode(self.theme)
if self.theme not in self.pastThemes:
self.pastThemes.append(self.theme)
self.on_first_run()
self.signal_change()
if self.lastTheme != self.theme:
self.lastTheme = self.theme
self.on_theme_change()
@as_urgent
def on_theme_change(self):
if self.theme is None: # vanilla Miro
guide_url = config.get(prefs.CHANNEL_GUIDE_URL)
if guide.get_guide_by_url(guide_url) is None:
# This happens when the DB is initialized with a theme that
# doesn't have it's own set of default channels; None is
# artificially added to the pastThemes lists to prevent the
# default channels from being added again. However, it means
# that we need to add the Miro Guide to the DB ourselves.
logging.warn('Installing default guide after switch to vanilla Miro')
guide.ChannelGuide(guide_url,
unicode(config.get(
prefs.CHANNEL_GUIDE_ALLOWED_URLS)).split())
self.signal_change()
def on_first_run(self):
logging.info("Spawning Miro Guide...")
guide_url = unicode(config.get(prefs.CHANNEL_GUIDE_URL))
if guide.get_guide_by_url(guide_url) is None:
allowed_urls = config.get(prefs.CHANNEL_GUIDE_ALLOWED_URLS)
guide.ChannelGuide(guide_url, unicode(allowed_urls).split())
if self.theme is not None:
# we have a theme
new_guides = unicode(config.get(prefs.ADDITIONAL_CHANNEL_GUIDES)).split()
for temp_guide in new_guides:
if guide.get_guide_by_url(temp_guide) is None:
guide.ChannelGuide(temp_guide)
if (((config.get(prefs.DEFAULT_CHANNELS_FILE) is not None)
and (config.get(prefs.THEME_NAME) is not None))):
importer = opml.Importer()
filepath = resources.theme_path(config.get(prefs.THEME_NAME),
config.get(prefs.DEFAULT_CHANNELS_FILE))
if os.path.exists(filepath):
importer.import_subscriptions(filepath,
show_summary=False)
else:
logging.warn("Theme subscription file doesn't exist: %s",
filepath)
elif None not in self.pastThemes:
# We pretend to have run the default theme, and then
# install the default channels. XXX: If Miro Guide isn't
# installed by the theme and it doesn't provide a default
# set of channels, we'll never install the Miro Guide.
# This code would install the Miro Guide if it isn't
# already installed
# if guide.get_guide_by_url(prefs.CHANNEL_GUIDE_URL.default) is None:
# guide.ChannelGuide(prefs.CHANNEL_GUIDE_URL.default)
self.pastThemes.append(None)
self._install_default_feeds()
else:
# no theme
self._install_default_feeds()
signals.system.theme_first_run(self.theme)
def _add_default(self, default, section):
# folder
if isinstance(default, tuple) and isinstance(default[1], list):
defaultFolder = default
try:
c_folder = folder.ChannelFolder.get_by_title(defaultFolder[0])
except ObjectNotFoundError:
c_folder = folder.ChannelFolder(defaultFolder[0])
c_folder.section = section
c_folder.signal_change()
for url, autodownload in defaultFolder[1]:
logging.info("adding feed %s in section %s" % (url, section))
try:
d_feed = feed.Feed.get_by_url(default[0])
except ObjectNotFoundError:
d_feed = feed.Feed(url, initiallyAutoDownloadable=autodownload)
d_feed.set_folder(c_folder)
d_feed.section = section
d_feed.signal_change()
# feed
else:
try:
d_feed = feed.Feed.get_by_url(default[0])
except ObjectNotFoundError:
logging.info("adding feed %s in section %s" % (default, section))
d_feed = feed.Feed(default[0], initiallyAutoDownloadable=default[1])
d_feed.section = section
d_feed.signal_change()
@as_urgent
def _install_default_feeds(self):
logging.info("Adding default feeds")
default_video_feeds = []
default_video_feeds.extend([
(u'http://vodo.net/feeds/promoted', False),
(u'http://feeds.feedburner.com/earth-touch_podcast_720p', False),
(u'http://www.linktv.org/rss/hq/globalpulse.xml', False),
])
default_audio_feeds = []
default_audio_feeds.extend([
(u'http://feeds.thisamericanlife.org/talpodcast', False)
])
for default in default_video_feeds:
self._add_default(default, u"video")
for default in default_audio_feeds:
self._add_default(default, u"audio")
# create example playlist
default_playlists = [
u"Example Playlist"
]
for default in default_playlists:
try:
pl = playlist.SavedPlaylist.get_by_title(default)
except ObjectNotFoundError:
playlist.SavedPlaylist(_(u"Example Playlist"))
default_guides = [
(u"http://beta.legaltorrents.com/", u"LegalTorrents"),
(u"https://www.miroguide.com/audio/", u"Miro Audio Guide")
]
for default in default_guides:
try:
cg = guide.ChannelGuide.get_by_url(default[0])
except ObjectNotFoundError:
cg = guide.ChannelGuide(default[0])
cg.set_title(default[1])
|