-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaddon.py
executable file
·406 lines (331 loc) · 10.5 KB
/
addon.py
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
#!/usr/bin/env python
from xbmcswift2 import Plugin
from Downloader import extractSchools, Downloader, extractCollections,\
extractSchoolCategories, extractExtras
import re
from urlparse import urlparse
from urllib import urlencode
from ParserLite3 import parseString, getSongName, getMediaURL,\
getArtistName, getDuration, getFileExtension, getTrackNumber,\
getReleaseDate, getDescription, getPlaylistName, getComposerName,\
getCollectionCategory, getCategory, getArtworkURL
try:
from urlparse import parse_qs
except ImportError:
from cgi import parse_qs
__plugin_name__ = 'iTunesU'
__plugin_id__ = 'plugin.video.itunesu'
plugin = Plugin(__plugin_name__, __plugin_id__, __file__)
SCHOOL_LIST = "http://itunes.apple.com/WebObjects/DZR.woa/wa/viewiTunesUProviders?id=%s"
VIEW_ITEM_BASE = "http://itunes.apple.com/WebObjects/DZR.woa/wa/downloadTracks?id=%d" #"http://itunes.apple.com/WebObjects/DZR.woa/wa/viewPodcast?cc=us&id=%d"
VIEW_ALL_COLLECTIONS = "http://itunes.apple.com/WebObjects/DZR.woa/wa/viewSeeAll?id=%d"
SCHOOL = "http://itunes.apple.com/WebObjects/DZR.woa/wa/viewArtist?id=%d"
VIEW_CATEGORY_COLLECTIONS = "http://itunes.apple.com/WebObjects/DZR.woa/wa/viewGenre?a=%d&id=%d"
VIEW_TAGGED_COLLECTIONS_TEMPLATE = "http://itunes.apple.com/WebObjects/DZR.woa/wa/viewTagged?%s"
downloader = Downloader()
def noneIsEmpty(val):
if val is None:
return ''
else:
return val
def sortByLabel(items):
return sorted(items, key=lambda x:x['label'])
def getQueryStringFromURL(url):
parseResult = urlparse(url)
if hasattr(parseResult, 'query'):
return parseResult.query
else:
return parseResult[4]
def unescape(s):
s = s.replace("<", "<")
s = s.replace(">", ">")
# this has to be last:
s = s.replace("&", "&")
return s
def extractArtistId(url):
url = unescape(url)
regex = "http(s)?://itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist\?id=(?P<id>\d{9})"
match = re.search(regex, url)
if match:
ret = str(match.group("id"))
return ret
else:
query = getQueryStringFromURL(url)
values = parse_qs(query)
id = values.get('id')
if id:
return id[0] # What happens if more?
else:
return None
def extractCollectionId(url):
url = unescape(url)
regex = "http(s)?://itunes.apple.com/us/itunes-u/[\w\-\.]*/id(?P<id>\d{9})"
match = re.search(regex, url)
if match:
ret = str(match.group("id"))
return ret
else:
query = getQueryStringFromURL(url)
values = parse_qs(query)
id = values.get('id')
if id:
return id[0] # What happens if more?
else:
return None
def extractCategoryId(url):
url = unescape(url)
regex = "http(s)?://itunes.apple.com/WebObjects/DZR.woa/wa/viewGenre\?a=\d{9}&id=(?P<id>\d{8})"
match = re.search(regex, url)
if match:
ret = str(match.group("id"))
return ret
else:
query = getQueryStringFromURL(url)
values = parse_qs(query)
id = values.get('id')
if id:
return id[0] # What happens if more?
else:
return None
def extractExtraId(url):
url = unescape(url)
query = getQueryStringFromURL(url) ## Also use regex?
values = parse_qs(query)
tag = values.get('tag')
if tag:
return tag[0] # What happens if more?
else:
return None
@plugin.route('/')
def show_homepage():
items = [
{'label': 'Universities & Colleges', 'path': plugin.url_for('showSchoolList', schoolType='EDU')},
{'label': 'K-12', 'path': plugin.url_for('showSchoolList', schoolType='K12')},
{'label': 'Beyond Campus', 'path': plugin.url_for('showSchoolList', schoolType='ORG')},
]
return plugin.finish(items)
@plugin.cached()
def getAllSchools(schoolType):
allSchoolsURL = SCHOOL_LIST % schoolType
source = downloader.getSource2(url=allSchoolsURL)
if source:
ret = extractSchools(source)
else:
ret = {}
return ret
@plugin.cached()
def getAllCollections(artistId):
collections_url = VIEW_ALL_COLLECTIONS % artistId
source = downloader.getSource2(url=collections_url)
if source:
ret = extractCollections(source)
else:
ret = {}
return ret
@plugin.cached()
def getCategoryCollections(artistId, categoryId):
collections_url = VIEW_CATEGORY_COLLECTIONS % (artistId, categoryId)
source = downloader.getSource2(url=collections_url)
if source:
ret = extractCollections(source)
else:
ret = {}
return ret
@plugin.cached()
def getTaggedCollections(artistId, tagName):
params = {'tag':tagName, 'id':artistId}
query = urlencode(params)
collections_url = VIEW_TAGGED_COLLECTIONS_TEMPLATE % query
source = downloader.getSource2(url=collections_url)
if source:
ret = extractCollections(source)
else:
ret = {}
return ret
@plugin.cached()
def getSchoolPage(artistId):
school_url = SCHOOL % artistId
return downloader.getSource2(url=school_url)
def getExtras(artistId):
source = getSchoolPage(artistId)
if source:
extras = extractExtras(source)
else:
extras = {}
return extras
def getCategories(artistId):
source = getSchoolPage(artistId)
if source:
cats = extractSchoolCategories(source)
else:
cats = {}
return cats
@plugin.route('/schools/<schoolType>/')
def showSchoolList(schoolType):
label_urls = getAllSchools(schoolType).iteritems()
items = []
for label, url in label_urls:
artistId=extractArtistId(url)
if artistId is None:
print "Tossing school (no artistId): %s (%s)" % (schoolType, url)
continue
items.append(
{
'label': label,
'path': plugin.url_for('school', artistId=artistId),
}
)
return plugin.finish(sortByLabel(items))
def getCategoryItems(categories, artistId):
items = []
for category, href in categories.iteritems():
categoryId=extractCategoryId(href)
if categoryId is None:
print "Tossing category (no categoryId): %s (%s)" % (category, href)
continue
items += [
{'label': category, 'path': plugin.url_for('categoryCollections', artistId=artistId, categoryId=categoryId)},
]
return items
def getExtraItems(categories, artistId):
items = []
for category, href in categories.iteritems():
tagName=extractExtraId(href)
if tagName is None:
print "Tossing extra (no tagName): %s (%s)" % (category, href)
continue
items += [
{'label': category, 'path': plugin.url_for('taggedCollections', artistId=artistId, tagName=tagName)},
]
return items
@plugin.route('/school/<artistId>/tagged/')
def taggedCollectionList(artistId):
extras = getExtras(int(artistId))
items = []
for extra in extras:
items += getExtraItems(extras[extra], artistId)
return plugin.finish(sortByLabel(items))
@plugin.route('/school/<artistId>/category/')
def categoryList(artistId):
items = []
categories = getCategories(int(artistId))
items += getCategoryItems(categories, artistId)
return plugin.finish(sortByLabel(items))
@plugin.route('/school/<artistId>/')
def school(artistId):
items = []
items += [
{'label': 'All Collections', 'path': plugin.url_for('allCollections', artistId=artistId)},
]
items += [
{'label': 'Tagged Collections', 'path': plugin.url_for('taggedCollectionList', artistId=artistId)},
]
items += [
{'label': 'Categories', 'path': plugin.url_for('categoryList', artistId=artistId)},
]
return plugin.finish(items)
def renderCollections(collections):
items = []
for label, data in collections:
href = data['href']
collectionId = extractCollectionId(href)
if collectionId is None:
print "Tossing collection (no collectionId): %s" % (href)
continue
items.append(
{
'label': label,
'path': plugin.url_for('showCollection', collectionId=collectionId),
'icon':noneIsEmpty(data.get('iconImage')),
'thumbnail': noneIsEmpty(data.get('thumbnail')),
}
)
return plugin.finish(sorted(items, key= lambda item: item['label']))
@plugin.route('/school/<artistId>/collections/')
def allCollections(artistId):
collections = getAllCollections(int(artistId)).iteritems()
return renderCollections(collections)
@plugin.route('/school/<artistId>/category/<categoryId>')
def categoryCollections(artistId, categoryId):
collections = getCategoryCollections(int(artistId), int(categoryId)).iteritems()
return renderCollections(collections)
@plugin.route('/school/<artistId>/tagged/<tagName>')
def taggedCollections(artistId, tagName):
collections = getTaggedCollections(int(artistId), tagName).iteritems()
return renderCollections(collections)
def formatDuration(durationMS):
seconds = durationMS / 1000
hour = seconds / 3600
seconds = seconds % 3600
mins = seconds / 60
return "%d:%02d" % (hour, mins)
@plugin.cached()
def getCollectionMediaItemsDicts(collectionId):
url = VIEW_ITEM_BASE%(int(collectionId))
return parseString(downloader.getSource2(url=url))
@plugin.route('/collection/<collectionId>/')
def showCollection(collectionId):
mediaItemsDicts = getCollectionMediaItemsDicts(collectionId)
items = []
for mediaItem in mediaItemsDicts:
title = getSongName(mediaItem)
mediaURL = getMediaURL(mediaItem)
author = getArtistName(mediaItem)
durationMS = getDuration(mediaItem)
extension = getFileExtension(mediaItem)
trackNumber = getTrackNumber(mediaItem)
releaseDate = getReleaseDate(mediaItem)
description = getDescription(mediaItem)
playlistName = getPlaylistName(mediaItem)
composerName = getComposerName(mediaItem)
collectionCategory = getCollectionCategory(mediaItem)
category = getCategory(mediaItem)
iconImage = thumbnail = noneIsEmpty(getArtworkURL(mediaItem))
tvshowtitle = "%s - %s" % (composerName, playlistName) # collectionTitle vs playlistName?
if category != collectionCategory:
genre = "%s - %s" % (collectionCategory, category)
else:
genre = collectionCategory
date = releaseDate.strftime("%d.%m.%Y")
premiered = releaseDate.strftime("%Y-%m-%d")
year = releaseDate.year
cast = [x.strip() for x in author.split(',')]
# itemid = getItemId(mediaItem)
if extension == 'mp4':
overlay = 8
else:
overlay = 0
duration = formatDuration(durationMS)
items += [
{
'label': title,
'icon': iconImage,
'thumbnail': thumbnail,
'path': mediaURL,
'is_playable': True,
'info':{
# 'count': itemid,
'plot': description,
'plotoutline': 'plotoutline',
'title': title,
'tagline': 'tagline',
'genre': genre,
'duration': duration,
'date': date,
'episode': trackNumber,
'overlay': overlay,
'year': year,
'season': 1, ## XBMC seems to want some #
'album':'album',
'tvshowtitle': tvshowtitle,
# 'writer':None,
# 'director':None,
'cast':cast,
'premiered':premiered,
'studio':composerName
}
}
]
return plugin.finish(items)
if __name__ == '__main__':
plugin.run()