forked from hippojay/plugin.video.plexbmc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.py
3596 lines (2816 loc) · 130 KB
/
default.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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import urllib,urllib2,re,xbmcplugin,xbmcgui,xbmcaddon, httplib, socket
import sys,os,datetime, time, sha, inspect, base64
__settings__ = xbmcaddon.Addon(id='plugin.video.plexbmc')
__cwd__ = __settings__.getAddonInfo('path')
BASE_RESOURCE_PATH = xbmc.translatePath( os.path.join( __cwd__, 'resources', 'lib' ) )
PLUGINPATH=xbmc.translatePath( os.path.join( __cwd__) )
sys.path.append(BASE_RESOURCE_PATH)
print "===== PLEXBMC START ====="
print "PleXBMC -> running on " + str(sys.version_info)
try:
from lxml import etree
print("PleXBMC -> Running with lxml.etree")
except ImportError:
try:
# Python 2.5
import xml.etree.cElementTree as etree
print("PleXBMC -> Running with cElementTree on Python 2.5+")
except ImportError:
try:
# Python 2.5
import xml.etree.ElementTree as etree
print("PleXBMC -> Running with ElementTree on Python 2.5+")
except ImportError:
try:
# normal cElementTree install
import cElementTree as etree
print("PleXBMC -> Running with built-in cElementTree")
except ImportError:
try:
# normal ElementTree install
import elementtree.ElementTree as etree
print("PleXBMC -> Running with built-in ElementTree")
except ImportError:
try:
import ElementTree as etree
print("PleXBMC -> Running addon ElementTree version")
except ImportError:
print("PleXBMC -> Failed to import ElementTree from any known place")
#Get the setting from the appropriate file.
DEFAULT_PORT="32400"
#Check debug first...
g_debug = __settings__.getSetting('debug')
def printDebug(msg,functionname=True):
if g_debug == "true":
if functionname is False:
print str(msg)
else:
print "PleXBMC -> " + inspect.stack()[1][3] + ": " + str(msg)
#Next Check the WOL status - lets give the servers as much time as possible to come up
g_wolon = __settings__.getSetting('wolon')
if g_wolon == "true":
from WOL import wake_on_lan
printDebug("PleXBMC -> Wake On LAN: " + g_wolon, False)
for i in range(1,12):
wakeserver = __settings__.getSetting('wol'+str(i))
if not wakeserver == "":
try:
printDebug ("PleXBMC -> Waking server " + str(i) + " with MAC: " + wakeserver, False)
wake_on_lan(wakeserver)
except ValueError:
printDebug("PleXBMC -> Incorrect MAC address format for server " + str(i), False)
except:
printDebug("PleXBMC -> Unknown wake on lan error", False)
g_bonjour = __settings__.getSetting('bonjour')
if g_bonjour == "1":
g_bonjour = "true"
printDebug("PleXBMC -> local Bonjour discovery setting enabled.", False)
elif g_bonjour == "2":
g_bonjour="assisted"
printDebug("PleXBMC -> Assisted Bonjour discovery setting enabled.", False)
elif g_bonjour == "0":
g_bonjour="false"
if g_bonjour == "true":
try:
from bonjourFind import *
except:
print "PleXBMC -> Bonjour disabled. Require XBMC (Pre)Eden"
xbmcgui.Dialog().ok("Bonjour Error","Bonjour disabled. Require XBMC (Pre)Eden")
g_bonjour="false"
else:
g_host = __settings__.getSetting('ipaddress')
g_port=__settings__.getSetting('port')
if not g_port:
printDebug( "PleXBMC -> No port defined. Using default of " + DEFAULT_PORT, False)
g_host=g_host+":"+DEFAULT_PORT
else:
g_host=g_host+":"+g_port
printDebug( "PleXBMC -> Settings hostname and port: " + g_host, False)
global g_stream
g_stream = __settings__.getSetting('streaming')
g_secondary = __settings__.getSetting('secondary')
g_streamControl = __settings__.getSetting('streamControl')
g_channelview = __settings__.getSetting('channelview')
g_flatten = __settings__.getSetting('flatten')
printDebug("PleXBMC -> Flatten is: "+ g_flatten, False)
#g_playtheme = __settings__.getSetting('playtvtheme')
g_skintype= __settings__.getSetting('skinwatch')
g_skinwatched="xbmc"
g_skin = xbmc.getSkinDir()
if g_skintype == "true":
if g_skin.find('.plexbmc'):
g_skinwatched="plexbmc"
if g_debug == "true":
print "PleXBMC -> Settings streaming: " + g_stream
print "PleXBMC -> Setting secondary: " + g_secondary
print "PleXBMC -> Setting debug to " + g_debug
print "PleXBMC -> Setting stream Control to : " + g_streamControl
print "PleXBMC -> Running skin: " + g_skin
print "PleXBMC -> Running watch view skin: " + g_skinwatched
else:
print "PleXBMC -> Debug is turned off. Running silent"
g_multiple = int(__settings__.getSetting('multiple'))
g_serverList=[]
if g_bonjour == "false":
g_serverList.append(['Primary', g_host, False])
if g_multiple > 0:
printDebug( "PleXBMC -> Additional servers configured; found [" + str(g_multiple) + "]", False)
for i in range(1,g_multiple+1):
printDebug ("PleXBMC -> Adding server [Server "+ str(i) +"] at [" + __settings__.getSetting('server'+str(i)) + "]", False)
extraip = __settings__.getSetting('server'+str(i))
if extraip == "":
printDebug( "PleXBMC -> Blank server detected. Ignoring", False)
continue
try:
extraip.split(':')[1]
except:
extraip=extraip+":"+DEFAULT_PORT
g_serverList.append(['Server '+str(i),extraip,False])
printDebug("PleXBMC -> serverList is " + str(g_serverList), False)
#Get look and feel
if __settings__.getSetting("contextreplace") == "true":
g_contextReplace=True
else:
g_contextReplace=False
g_skipcontext = __settings__.getSetting("skipcontextmenus")
g_skipmetadata= __settings__.getSetting("skipmetadata")
g_skipmediaflags= __settings__.getSetting("skipflags")
g_skipimages= __settings__.getSetting("skipimages")
g_loc = "special://home/addons/plugin.video.plexbmc"
#Create the standard header structure and load with a User Agent to ensure we get back a response.
g_txheaders = {
'User-Agent': 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US;rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 ( .NET CLR 3.5.30729)',
}
#Set up the remote access authentication tokens
XBMCInternalHeaders=""
g_authentication = __settings__.getSetting('remote')
if g_authentication == "true":
printDebug( "PleXBMC -> Getting authentication settings.", False)
g_username= __settings__.getSetting('username')
g_password = __settings__.getSetting('password')
printDebug( "PleXBMC -> username is " + g_username, False)
#Compute the SHA1 just one time.
msg=sha.new(g_password)
msg2=sha.new(g_username.lower()+msg.hexdigest()).hexdigest()
#Load the auth strings into the URL header structure.
g_txheaders['X-Plex-User']=str(g_username)
g_txheaders['X-Plex-Pass']=str(msg2)
#Set up an internal XBMC header string, which is appended to all *XBMC* processed URLs.
XBMCInternalHeaders="|X-Plex-User="+g_txheaders['X-Plex-User']+"&X-Plex-Pass="+g_txheaders['X-Plex-Pass']
################################ Common
# Connect to a server and retrieve the HTML page
def getURL( url ,title="Error", surpress=False, type="GET"):
printDebug("== ENTER: getURL ==", False)
try:
txdata = None
server=url.split('/')[2]
urlPath="/"+"/".join(url.split('/')[3:])
#params = ""
printDebug("url = "+url)
conn = httplib.HTTPConnection(server)
conn.request(type, urlPath, headers=g_txheaders)
data = conn.getresponse()
if int(data.status) >= 400:
error = "HTTP response error: " + str(data.status) + " " + str(data.reason)
if surpress is False:
xbmcgui.Dialog().ok(title,error)
print error
return False
elif int(data.status) == 301 and type == "HEAD":
return str(data.status)+"@"+data.getheader('Location')
else:
link=data.read()
printDebug("====== XML returned =======")
printDebug(link, False)
printDebug("====== XML finished ======")
except socket.gaierror :
error = 'Unable to lookup host: ' + server + "\nCheck host name is correct"
if surpress is False:
xbmcgui.Dialog().ok(title,error)
print error
return False
except socket.error, msg :
error="Unable to connect to " + server +"\nReason: " + str(msg)
if surpress is False:
xbmcgui.Dialog().ok(title,error)
print error
return False
else:
return link
def mediaType(partproperties, server):
printDebug("== ENTER: mediaType ==", False)
#Passed a list of <Part /> tag attributes, select the appropriate media to play
stream=partproperties['key']
file=partproperties['file']
#First determine what sort of 'file' file is
if file[0:2] == "\\\\":
printDebug("Looks like a UNC")
type="UNC"
elif file[0:1] == "/" or file[0:1] == "\\":
printDebug("looks like a unix file")
type="nixfile"
elif file[1:3] == ":\\" or file[1:2] == ":/":
printDebug("looks like a windows file")
type="winfile"
else:
printDebug("looks like nuttin' i aint ever seen")
type="notsure"
# 0 is auto select. basically check for local file first, then stream if not found
if g_stream == "0":
#check if the file can be found locally
if type == "nixfile" or type == "winfile":
try:
printDebug("Checking for local file")
exists = open(file, 'r')
printDebug("Local file found, will use this")
exists.close()
return "file:"+file
except: pass
printDebug("No local file, defaulting to stream")
return "http://"+server+stream
# 1 is stream no matter what
elif g_stream == "1":
printDebug( "Selecting stream")
return "http://"+server+stream
# 2 is use SMB
elif g_stream == "2":
printDebug( "Selecting smb/unc")
if type=="UNC":
filelocation="smb:"+file.replace("\\","/")
else:
#Might be OSX type, in which case, remove Volumes and replace with server
if file.find('Volumes') > 0:
filelocation="smb:/"+file.replace("Volumes",server.split(':')[0])
else:
if type == "winfile":
filelocation="smb://"+server.split(':')[0]+"/"+file[3:]
else:
#else assume its a file local to server available over smb/samba (now we have linux PMS). Add server name to file path.
filelocation="smb://"+server.split(':')[0]+file
else:
printDebug( "No option detected, streaming is safest to choose" )
filelocation="http://"+server+stream
printDebug("Returning URL: " + filelocation)
return filelocation
#Used to add playable media files to directory listing
#properties is a dictionary {} which contains a list of setInfo properties to apply
#Arguments is a dictionary {} which contains other arguments used in teh creation of the listing (such as name, resume time, etc)
def addLink(url,properties,arguments,context=None):
printDebug("== ENTER: addLink ==", False)
try:
printDebug("Adding link for [" + properties['title'] + "]")
except: pass
printDebug("Passed arguments are " + str(arguments))
printDebug("Passed properties are " + str(properties))
try:
type=arguments['type']
except:
type='Video'
if type =="Picture":
u=url
else:
u=sys.argv[0]+"?url="+str(url)
ok=True
printDebug("URL to use for listing: " + u)
#Create ListItem object, which is what is displayed on screen
try:
liz=xbmcgui.ListItem(properties['title'], iconImage=arguments['thumb'], thumbnailImage=arguments['thumb']+XBMCInternalHeaders)
printDebug("Setting thumbnail as " + arguments['thumb'])
except:
liz=xbmcgui.ListItem(properties['title'], iconImage='', thumbnailImage='')
#Set properties of the listitem object, such as name, plot, rating, content type, etc
liz.setInfo( type=type, infoLabels=properties )
try:
liz.setProperty('Artist_Genre', properties['genre'])
liz.setProperty('Artist_Description', properties['plot'])
except: pass
if g_skipmediaflags == "false":
try:
liz.setProperty('VideoResolution', arguments['VideoResolution'])
except: pass
try:
liz.setProperty('VideoCodec', arguments['VideoCodec'])
except: pass
try:
liz.setProperty('AudioCodec', arguments['AudioCodec'])
except: pass
try:
liz.setProperty('AudioChannels', arguments['AudioChannels'])
except: pass
try:
liz.setProperty('VideoAspect', arguments['VideoAspect'])
except: pass
#Set the file as playable, otherwise setresolvedurl will fail
liz.setProperty('IsPlayable', 'true')
#Set the fanart image if it has been enabled
try:
if len(arguments['fanart_image'].split('/')[-1].split('.')) < 2:
arguments['fanart_image']=str(arguments['fanart_image']+"/image.jpg")
liz.setProperty('fanart_image', str(arguments['fanart_image']+XBMCInternalHeaders))
printDebug( "Setting fan art as " + str(arguments['fanart_image'])+" with headers: "+ XBMCInternalHeaders)
except: pass
if context is not None:
printDebug("Building Context Menus")
#transcodeURL="XBMC.RunPlugin("+u+"&transcode=1)"
#print transcodeURL
#transcode="Container.Update("+u+"&transcode=1)"
#context.append(("Play trancoded", transcodeURL, ))
liz.addContextMenuItems(context, g_contextReplace)
#Finally add the item to the on screen list, with url created above
ok=xbmcplugin.addDirectoryItem(handle=pluginhandle,url=u,listitem=liz)
return ok
#Used to add directory item to the listing. These are non-playable items. They can be mixed with playable items created above.
#properties is a dictionary {} which contains a list of setInfo properties to apply
#Arguments is a dictionary {} which contains other arguments used in teh creation of the listing (such as name, resume time, etc)
def addDir(url,properties,arguments,context=None):
printDebug("== ENTER: addDir ==", False)
try:
printDebug("Adding Dir for [" + properties['title'].encode('utf-8') + "]")
except: pass
printDebug("Passed arguments are " + str(arguments))
printDebug("Passed properties are " + str(properties))
#Create the URL to pass to the item
u=sys.argv[0]+"?url="+str(url)
ok=True
#Create the ListItem that will be displayed
try:
liz=xbmcgui.ListItem(properties['title'], iconImage=arguments['thumb'], thumbnailImage=arguments['thumb']+XBMCInternalHeaders)
printDebug("Setting thumbnail as " + arguments['thumb'])
except:
liz=xbmcgui.ListItem(properties['title'], iconImage='', thumbnailImage='')
#Set the properties of the item, such as summary, name, season, etc
try:
liz.setInfo( type=arguments['type'], infoLabels=properties )
except:
liz.setInfo(type='Video', infoLabels=properties )
printDebug("URL to use for listing: " + u)
try:
liz.setProperty('Artist_Genre', properties['genre'])
liz.setProperty('Artist_Description', properties['plot'])
except: pass
#If we have set a number of watched episodes per season
try:
#Then set the number of watched and unwatched, which will be displayed per season
liz.setProperty('WatchedEpisodes', str(arguments['WatchedEpisodes']))
liz.setProperty('UnWatchedEpisodes', str(arguments['UnWatchedEpisodes']))
except: pass
#Set the fanart image if it has been enabled
try:
if len(arguments['fanart_image'].split('/')[-1].split('.')) < 2:
arguments['fanart_image']=str(arguments['fanart_image']+"/image.jpg")
liz.setProperty('fanart_image', str(arguments['fanart_image']+XBMCInternalHeaders))
printDebug( "Setting fan art as " + str(arguments['fanart_image'])+" with headers: "+ XBMCInternalHeaders)
except: pass
try:
liz.setProperty('bannerArt', arguments['banner']+XBMCInternalHeaders)
printDebug( "Setting banner art as " + str(arguments['banner']))
except:
pass
if context is not None:
printDebug("Building Context Menus")
liz.addContextMenuItems( context, g_contextReplace )
#Finally add the item to the on screen list, with url created above
ok=xbmcplugin.addDirectoryItem(handle=pluginhandle,url=u,listitem=liz,isFolder=True)
return ok
################################ Root listing
# Root listing is the main listing showing all sections. It is used when these is a non-playable generic link content
def ROOT(filter=None):
printDebug("== ENTER: ROOT() ==", False)
xbmcplugin.setContent(pluginhandle, 'movies')
#Get the global host variable set in settings
#host=g_host
Servers=[]
#If we have a remote host, then don;t do local discovery as it won't work
if g_bonjour == "true":
printDebug("Attempting bonjour lookup on _plexmediasvr._tcp")
try:
bonjourServer = bonjourFind("_plexmediasvr._tcp")
except:
print "PleXBMC -> Bonjour error. Is Bonjour installed on this client?"
return
if bonjourServer.complete:
printDebug("Bonjour discovery completed")
#Add the first found server to the list - we will find rest from here
Servers.append([bonjourServer.bonjourName[0],bonjourServer.bonjourIP[0]+":"+bonjourServer.bonjourPort[0],True])
else:
printDebug("BonjourFind was not able to discovery any servers")
elif g_bonjour == "assisted":
Servers.append(["Main Server", g_host, True])
Servers += g_serverList
numOfServers=len(Servers)
mapping={}
printDebug( "Using list of "+str(numOfServers)+" servers: " + str(Servers))
#For each of the servers we have identified
for server in Servers:
#dive into the library section
url='http://'+server[1]+'/system/library/sections'
html=getURL(url)
if html is False:
continue
tree = etree.fromstring(html)
NoExtraservers=1
if server[2]:
extraservers=set(re.findall("host=\"(.*?)\"", html))
NoExtraservers = len(extraservers)
numOfServers+=NoExtraservers-1
print "known servers are " + str(extraservers).encode('utf-8')
#Find all the directory tags, as they contain further levels to follow
#For each directory tag we find, build an onscreen link to drill down into the library
for object in tree.getiterator('Directory'):
#Check if we are to display all or just local sections (all for bonjour)
if server[2]:
server[1]=object.get('host').encode('utf-8')+":"+DEFAULT_PORT
else:
if object.get('local') == "0":
continue
#Set up some dictionaries with defaults that we are going to pass to addDir/addLink
properties={}
arguments=dict(object.items())
mapping[server[1]]=arguments['serverName']
print str(mapping)
if g_skipimages == "false":
try:
if arguments['art'][0] == "/":
arguments['fanart_image']="http://"+server[1]+arguments['art']
else:
arguments['fanart_image']="http://"+server[1]+"/library/sections/"+arguments['art']
except: pass
try:
if arguments['thumb'][0] == "/":
arguments['thumb']="http://"+server[1]+arguments['thumb'].split('?')[0]
else:
arguments['thumb']="http://"+server[1]+"/library/sections/"+arguments['thumb'].split('?')[0]
except:
try:
arguments['thumb']=arguments['fanart_image']
except:
arguments['thumb']=""
#Start pulling out information from the parsed XML output. Assign to various variables
try:
if numOfServers == 1:
properties['title']=arguments['title']
else:
properties['title']=arguments['serverName']+": "+arguments['title']
except:
properties['title']="unknown"
#Determine what we are going to do process after a link is selected by the user, based on the content we find
if arguments['type'] == 'show':
mode=1
if (filter is not None) and (filter != "tvshows"):
continue
elif arguments['type'] == 'movie':
mode=2
if (filter is not None) and (filter != "movies"):
continue
elif arguments['type'] == 'artist':
mode=3
if (filter is not None) and (filter != "music"):
continue
elif arguments['type'] == 'photo':
mode=16
if (filter is not None) and (filter != "photos"):
continue
else:
printDebug("Ignoring section "+properties['title']+" of type " + arguments['type'] + " as unable to process")
continue
arguments['type']="Video"
if g_secondary == "true":
s_url='http://'+server[1]+arguments['path']+"&mode=0"
else:
#Build URL with the mode to use and key to further XML data in the library
s_url='http://'+server[1]+arguments['path']+'/all'+"&mode="+str(mode)
if g_skipcontext == "false":
context=[]
refreshURL="http://"+server[1]+arguments['path']+"/refresh"
libraryRefresh = "XBMC.RunScript("+g_loc+"/default.py, update ," + refreshURL + ")"
context.append(('Refresh library section', libraryRefresh , ))
else:
context=None
#Build that listing..
addDir(s_url, properties,arguments, context)
#Plex plugin handling
if (filter is not None) and (filter != "plugins"):
continue
properties={}
for i in range(NoExtraservers):
if server[2]:
server[1]=extraservers.pop().encode('utf-8')+":"+DEFAULT_PORT
if g_channelview == "false":
if numOfServers == 1:
properties['title']="Video Plugins"
else:
properties['title']=mapping[server[1]]+": Video Plugins"
arguments['type']="video"
mode=7
u="http://"+server[1]+"/video&mode="+str(mode)
addDir(u,properties,arguments)
#Create Photo plugin link
if numOfServers == 1:
properties['title']="Photo Plugins"
else:
properties['title']=mapping[server[1]]+": Photo Plugins"
arguments['type']="Picture"
mode=16
u="http://"+server[1]+"/photos&mode="+str(mode)
addDir(u,properties,arguments)
#Create music plugin link
if numOfServers == 1:
properties['title']="Music Plugins"
else:
properties['title']=mapping[server[1]]+": Music Plugins"
arguments['type']="Music"
mode=17
u="http://"+server[1]+"/music&mode="+str(mode)
addDir(u,properties,arguments)
else:
if numOfServers == 1:
properties['title']="Channels"
else:
properties['title']=mapping[server[1]]+": Channels"
arguments['type']="video"
mode=21
u="http://"+server[1]+"/system/plugins/all&mode="+str(mode)
addDir(u,properties,arguments)
#Create plexonline link
if numOfServers == 1:
properties['title']="Plex Online"
else:
properties['title']=mapping[server[1]]+": Plex Online"
arguments['type']="file"
mode=19
u="http://"+server[1]+"/system/plexonline&mode="+str(mode)
addDir(u,properties,arguments)
#All XML entries have been parsed and we are ready to allow the user to browse around. So end the screen listing.
xbmcplugin.endOfDirectory(pluginhandle)
def Movies(url,tree=None):
printDebug("== ENTER: Movies() ==", False)
xbmcplugin.setContent(pluginhandle, 'movies')
#get the server name from the URL, which was passed via the on screen listing..
if tree is None:
#Get some XML and parse it
html=getURL(url)
if html is False:
return
tree = etree.fromstring(html)
server=getServerFromURL(url)
#Find all the video tags, as they contain the data we need to link to a file.
MovieTags=tree.findall('Video')
for movie in MovieTags:
printDebug("---New Item---")
arguments=dict(movie.items())
tempgenre=[]
tempcast=[]
tempdir=[]
tempwriter=[]
mediacount=0
#Lets grab all the info we can quickly through either a dictionary, or assignment to a list
#We'll process it later
for child in movie:
if child.tag == "Media":
mediaarguments = dict(child.items())
mediacount+=1
elif child.tag == "Genre" and g_skipmetadata == "false":
tempgenre.append(child.get('tag'))
elif child.tag == "Writer" and g_skipmetadata == "false":
tempwriter.append(child.get('tag'))
elif child.tag == "Director" and g_skipmetadata == "false":
tempdir.append(child.get('tag'))
elif child.tag == "Role" and g_skipmetadata == "false":
tempcast.append(child.get('tag'))
printDebug("Media attributes are " + str(mediaarguments))
#Create structure to pass to listitem/setinfo. Set defaults
properties={'playcount': 0}
#Get name
try:
properties['title']=arguments['title'].encode('utf-8')
except: pass
#Get the Plot
try:
properties['plot']=arguments['summary']
except: pass
#Get the watched status
try:
properties['playcount']=int(arguments['viewCount'])
except:
properties['playcount']=0
try:
arguments['viewOffset']
except:
arguments['viewOffset']=0
if properties['playcount'] > 0:
if g_skinwatched == "xbmc": #WATCHED
properties['overlay']=7 #Tick ICON in XBMC
elif g_skinwatched == "plexbmc":
properties['overlay']=0 #Blank entry in Plex
elif properties['playcount'] == 0:
if g_skinwatched == "xbmc": #UNWATCHED
properties['overlay']=6 #XBMC shows blank
elif g_skinwatched == "plexbmc":
properties['overlay']=4 #PLEX shows dot (using overlayhastrainer)
if g_skinwatched == "plexbmc" and int(arguments['viewOffset']) > 0:
properties['overlay'] = 5 #PLEX show partial viewing (using overlaytrained)
#Get how good it is, based on your votes...
try:
properties['rating']=float(arguments['rating'])
except: pass
#Get the studio
try:
properties['studio']=arguments['studio']
except: pass
#Get the Movie certificate, so you know if the kids can watch it.
try:
properties['mpaa']="Rated " + arguments['contentRating']
except: pass
#year
try:
properties['year']=int(arguments['year'])
except: pass
#That memorable 6 word summary..
try:
properties['tagline']=arguments['tagline']
except: pass
#Set the film duration
try:
arguments['duration']=mediaarguments['duration']
except KeyError:
try:
arguments['duration']
except:
arguments['duration']=0
arguments['duration']=int(arguments['duration'])/1000
properties['duration']=str(datetime.timedelta(seconds=int(arguments['duration'])))
if g_skipimages == "false":
#Get Thumbnail
arguments['thumb']=getThumb(arguments, server)
#print art_url
arguments['fanart_image']=getFanart(arguments,server)
#Set type
arguments['type']="Video"
#Assign standard metadata
#Cast
if g_skipmetadata == "false":
properties['cast']=tempcast
#director
properties['director']=" / ".join(tempdir)
#Writer
properties['writer']=" / ".join(tempwriter)
#Genre
properties['genre']=" / ".join(tempgenre)
#This is playable media, so link to a path to a play function
mode=5
u='http://'+server+arguments['key']+"&mode="+str(mode)+"&id="+str(arguments['ratingKey'])
if g_skipmediaflags == "false":
### MEDIA FLAG STUFF ###
try:
arguments['VideoResolution']=mediaarguments['videoResolution']
except: pass
try:
arguments['VideoCodec']=mediaarguments['videoCodec']
except: pass
try:
arguments['AudioCodec']=mediaarguments['audioCodec']
except: pass
try:
arguments['AudioChannels']=mediaarguments['audioChannels']
except: pass
try:
arguments['VideoAspect']=mediaarguments['aspectRatio']
except: pass
if g_skipcontext == "false":
context=buildContextMenu(url, arguments)
else:
context=None
#Right, add that link...and loop around for another entry
addLink(u,properties,arguments,context)
#If we get here, then we've been through the XML and it's time to finish.
xbmcplugin.endOfDirectory(pluginhandle)
def buildContextMenu(url, arguments):
context=[]
server=getServerFromURL(url)
refreshURL=url.replace("/all", "/refresh")
libraryRefresh = "XBMC.RunScript("+g_loc+"/default.py, update, " + refreshURL.split('?')[0] + ")"
context.append(('Refresh library section', libraryRefresh , ))
try:
if arguments[ratingKey]:
ID=arguments[ratingKey]
except:
ID=arguments['key'].split('/')[3].split('?')[0]
unwatchURL="http://"+server+"/:/unscrobble?key="+ID+"&identifier=com.plexapp.plugins.library"
unwatched="XBMC.RunScript("+g_loc+"/default.py, watch, " + unwatchURL + ")"
context.append(('Mark as UnWatched', unwatched , ))
watchURL="http://"+server+"/:/scrobble?key="+ID+"&identifier=com.plexapp.plugins.library"
watched="XBMC.RunScript("+g_loc+"/default.py, watch, " + watchURL + ")"
context.append(('Mark as Watched', watched , ))
deleteURL="http://"+server+"/library/metadata/"+ID
removed="XBMC.RunScript("+g_loc+"/default.py, delete, " + deleteURL + ")"
context.append(('Delete', removed , ))
settingDisplay="XBMC.RunScript("+g_loc+"/default.py, setting)"
context.append(('PleXBMC settings', settingDisplay , ))
return context
################################ TV Show Listings
#This is the function use to parse the top level list of TV shows
def SHOWS(url,tree=None):
printDebug("== ENTER: SHOWS() ==", False)
xbmcplugin.setContent(pluginhandle, 'tvshows')
#xbmcplugin.addSortMethod(pluginhandle, xbmcplugin.SORT_METHOD_LABEL)
#Get the URL and server name. Get the XML and parse
if tree is None:
html=getURL(url)
if html is False:
return
tree=etree.fromstring(html)
server=getServerFromURL(url)
#For each directory tag we find
ShowTags=tree.findall('Directory') # These type of calls seriously slow down plugins
for show in ShowTags:
arguments=dict(show.items())
tempgenre=[]
#Lets grab all the info we can quickly through either a dictionary, or assignment to a list
#We'll process it later
for child in show:
try:
tempgenre.append(child.get('tag'))
except:pass
#Create the basic data structures to pass up
properties={'overlay': 6, 'playcount': 0, 'season' : 0 , 'episode':0 } #Create a dictionary for properties with some defaults(i.e. ListItem properties)
#Get name
try:
properties['title']=properties['tvshowname']=arguments['title'].encode('utf-8')
except: pass
#Get the studio
try:
properties['studio']=arguments['studio']
except:pass
#Get the Plot
try:
properties['plot']=arguments['summary']
except: pass
#Get the certificate to see how scary it is..
try:
properties['mpaa']=arguments['contentrating']
except:pass
#Get number of episodes in season
try:
properties['episode']=int(arguments['leafCount'])
except:pass
#Get number of watched episodes
try:
watched=arguments['viewedLeafCount']
arguments['WatchedEpisodes']=int(watched)
arguments['UnWatchedEpisodes']=properties['episode']-arguments['WatchedEpisodes']
except:
arguments['WatchedEpisodes']=0
arguments['UnWatchedEpisodes']=0
#banner art
try:
arguments['banner']='http://'+server+arguments['banner'].split('?')[0]+"/banner.jpg"
except:
pass
if arguments['WatchedEpisodes'] == 0:
if g_skinwatched == "xbmc": #UNWATCHED
properties['overlay']=6 #XBMC shows blank
elif g_skinwatched == "plexbmc":
properties['overlay']=4 #PLEX shows dot (using overlayhastrainer)
elif arguments['UnWatchedEpisodes'] == 0:
if g_skinwatched == "xbmc": #WATCHED
properties['overlay']=7 #Tick ICON in XBMC
elif g_skinwatched == "plexbmc":
properties['overlay']=0 #Blank entry in Plex
else:
if g_skinwatched == "plexbmc":
properties['overlay'] = 5 #PLEX show partial viewing (using overlaytrained)
elif g_skinwatched == "xbmc":
properties['overlay']=6
#get Genre
try:
properties['genre']=" / ".join(tempgenre)
except:pass
#get the air date
try:
properties['aired']=arguments['originallyAvailableAt']
except:pass
if g_skipimages == "false":
#Get the picture to use
arguments['thumb']=getThumb(arguments, server)
#Get a nice big picture
arguments['fanart_image']=getFanart(arguments,server)
#Set type
arguments['type']="Video"
if g_flatten == "2":
printDebug("Flattening all shows")
mode=6 # go straight to episodes
arguments['key']=arguments['key'].replace("children","allLeaves")
url=url='http://'+server+arguments['key']+"&mode="+str(mode)
else:
mode=4 # grab season details
url='http://'+server+arguments['key']+"&mode="+str(mode)
if g_skipcontext == "false":
context=buildContextMenu(url, arguments)