File: guide.py

package info (click to toggle)
miro 1.2.3-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 60,356 kB
  • ctags: 15,099
  • sloc: cpp: 58,491; python: 40,363; ansic: 796; xml: 265; sh: 197; makefile: 167
file content (260 lines) | stat: -rw-r--r-- 8,696 bytes parent folder | download
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
# Miro - an RSS based video player application
# Copyright (C) 2005-2008 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.

from miro.platform import resources
from miro.database import DDBObject
from miro.httpclient import grabURL
from urlparse import urlparse, urljoin
from miro.xhtmltools import urlencode
from copy import copy
from miro.util import returnsUnicode, unicodify, checkU
import re
from miro import app
from miro import config
from miro import indexes
from miro import prefs
import threading
import urllib
from miro import eventloop
from miro import views
import logging
from miro import httpclient
from miro.gtcache import gettext as _
from HTMLParser import HTMLParser,HTMLParseError
from miro import iconcache

HTMLPattern = re.compile("^.*(<head.*?>.*</body\s*>)", re.S)

def isPartOfGuide(url, guideURL, allowedURLs = None):
    """Return if url is part of a channel guide where guideURL is the base URL
    for that guide.
    """
    if guideURL == "*":
        return True
    elif guideURL.startswith('file://'):
        return False
    elif allowedURLs is None:
        guideHost = urlparse(guideURL)[1]
        urlHost = urlparse(url)[1]
        return urlHost.endswith(guideHost)
    else:
        if isPartOfGuide(url, guideURL):
            return True
        for altURL in allowedURLs:
            if isPartOfGuide(url, altURL):
                return True
        return False
class ChannelGuide(DDBObject):
    ICON_CACHE_SIZES = [
#        (20, 20),
    ]
    def __init__(self, url, allowedURLs = None):
        checkU(url)
        if allowedURLs is None:
            self.allowedURLs = []
        else:
            self.allowedURLs = allowedURLs
        self.url = url
        self.updated_url = url
        self.title = None
        self.lastVisitedURL = None
        self.iconCache = iconcache.IconCache(self, is_vital = True)
        self.favicon = None
        self.firstTime = True
        if url:
            self.historyLocation = 0
            self.history = [self.url]
        else:
            self.historyLocation = None
            self.history = []

        DDBObject.__init__(self)
        self.downloadGuide()

    def onRestore(self):
        self.lastVisitedURL = None
        self.historyLocation = None
        self.history = []
        if (self.iconCache == None):
            self.iconCache = iconcache.IconCache (self, is_vital = True)
        else:
            self.iconCache.dbItem = self
            self.iconCache.requestUpdate(True)
        if self.getDefault():
            self.allowedURLs = config.get(prefs.CHANNEL_GUIDE_ALLOWED_URLS).split()
            self.allowedURLs.append(config.get(prefs.CHANNEL_GUIDE_FIRST_TIME_URL))
        else:
            self.allowedURLs = []
        self.downloadGuide()


    def __str__(self):
        return "Miro Guide <%s>" % (self.url,)

    def remove(self):
        if self.iconCache is not None:
            self.iconCache.remove()
            self.iconCache = None
        DDBObject.remove(self)

    def isPartOfGuide(self, url):
        return isPartOfGuide(url, self.getURL(), self.allowedURLs)

    def getURL(self):
        return self.url

    def getFirstURL(self):
        if self.getDefault():
            return config.get(prefs.CHANNEL_GUIDE_FIRST_TIME_URL)
        else:
            return self.url

    def getLastVisitedURL(self):
        if self.lastVisitedURL is not None:
            logging.info("First URL is %s"%self.lastVisitedURL)
            return self.lastVisitedURL
        else:
            if self.firstTime:
                self.firstTime = False
                logging.info("First URL is %s"%self.getFirstURL())
                return self.getFirstURL()
            else:
                logging.info("First URL is %s"%self.getURL())
                return self.getURL()

    def getDefault(self):
        return self.url == config.get(prefs.CHANNEL_GUIDE_URL)

    # For the tabs
    @returnsUnicode
    def getTitle(self):
        if self.title:
            return self.title
        else:
            return self.getURL()

    def guideDownloaded(self, info):
        self.updated_url = unicode(info["updated-url"])
        try:
            parser = GuideHTMLParser(self.updated_url)
            parser.feed(info["body"])
            parser.close()
        except:
            pass
        else:
            self.title = unicode(parser.title)
            if parser.favicon is not None:
                self.favicon = unicode(parser.favicon)
            else:
                self.favicon = None
            self.extendHistory(self.updated_url)
            self.iconCache.requestUpdate(True)
            self.signalChange()

    def guideError (self, error):
        pass

    def downloadGuide(self):
        httpclient.grabURL(self.getURL(), self.guideDownloaded, self.guideError)

    @returnsUnicode
    def getIconURL(self):
        if self.iconCache.isValid():
            path = self.iconCache.getResizedFilename(20, 20)
            return resources.absoluteUrl(path)
        else:
            return resources.url("images/channelguide-icon-tablist.png")

    def getThumbnailURL(self):
        if self.favicon:
            return self.favicon
        else:
            if self.updated_url:
                parsed = urlparse(self.updated_url)
            else:
                parsed = urlparse(self.getURL())
            return parsed[0] + u"://" + parsed[1] + u"/favicon.ico"

    def extendHistory(self, url):
        if self.historyLocation is None:
            self.historyLocation = 0
            self.history = [url]
        else:
            if self.history[self.historyLocation] == url: # moved backwards
                return
            if self.historyLocation != len(self.history) - 1:
                self.history = self.history[:self.historyLocation+1]
            self.history.append(url)
            self.historyLocation += 1


    def getHistoryURL(self, direction):
        if direction is not None:
            location = self.historyLocation + direction
            if location < 0:
                return
            elif location >= len(self.history):
                return
        else:
            location = 0 # go home
        self.historyLocation = location
        return self.history[self.historyLocation]

# Grabs the feed link from the given webpage
class GuideHTMLParser(HTMLParser):
    def __init__(self, url):
        self.title = None
        self.in_title = False
        self.baseurl = url
        self.favicon = None
        HTMLParser.__init__(self)

    def handle_starttag(self, tag, attrs):
        attrdict = {}
        for (key, value) in attrs:
            attrdict[key] = value
        if tag == 'title' and self.title == None:
            self.in_title = True
            self.title = u""
        if (tag == 'link' and attrdict.has_key('rel') and
            attrdict.has_key('type') and attrdict.has_key('href') and
            'icon' in attrdict['rel'].split(' ') and
            attrdict['type'].startswith("image/")):

            self.favicon = urljoin(self.baseurl,attrdict['href']).decode('ascii', 'ignore')

    def handle_data(self, data):
        if self.in_title:
            self.title += data

    def handle_endtag(self, tag):
        if tag == 'title' and self.in_title:
            self.in_title = False

def getGuideByURL(url):
    return views.guides.getItemWithIndex(indexes.guidesByURL, url)