forked from raptor2101/Mediathek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.py
110 lines (95 loc) · 3.46 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
# -*- coding: utf-8 -*-
#-------------LicenseHeader--------------
# plugin.video.mediathek - Gives access to most video-platforms from German public service broadcasters
# Copyright (C) 2010 Raptor 2101 [[email protected]]
#
# 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 3 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, see <http://www.gnu.org/licenses/>.
import urllib,xbmc,os,xbmcaddon
from simplexbmc import SimpleXbmcGui
from mediathek.factory import MediathekFactory
__plugin__ = "mediathek"
settings = xbmcaddon.Addon(id='plugin.video.mediathek');
gui = SimpleXbmcGui(settings);
def get_params():
paramDict = {}
try:
print "get_params() argv=", sys.argv
if sys.argv[2]:
paramPairs=sys.argv[2][1:].split( "&" )
for paramsPair in paramPairs:
paramSplits = paramsPair.split('=')
if (len(paramSplits))==2:
paramDict[paramSplits[0]] = paramSplits[1]
except:
errorOK()
return paramDict
params = get_params();
mediathekName = params.get("type", "")
action=params.get("action", "")
DIR_HOME = xbmc.translatePath(settings.getAddonInfo("profile"))
if not os.path.exists(DIR_HOME):
os.mkdir(DIR_HOME);
gui.log("Quality: %s"%gui.quality);
gui.log("argv[0]: %s"%sys.argv[0]);
gui.log("argv[1]: %s"%sys.argv[1]);
gui.openMenuContext();
factory = MediathekFactory();
if(mediathekName == ""):
if(action == ""):
gui.addSearchButton(None);
gui.listAvailableMediathekes(factory.getAvaibleMediathekTypes());
else:
result = gui.keyboardInput();
if (result.isConfirmed()):
searchText = unicode(result.getText().decode('UTF-8'));
for name in factory.getAvaibleMediathekTypes():
mediathek = factory.getMediathek(name, gui);
if(mediathek.isSearchable()):
mediathek.searchVideo(searchText);
else:
gui.back();
else:
cat=int(params.get("cat", 0))
mediathek = factory.getMediathek(mediathekName,gui);
if(action == "openTopicPage"):
link = urllib.unquote_plus(params.get("link", ""));
gui.log(link);
mediathek.buildPageMenu(link, 0);
elif(action == "openPlayList"):
link = urllib.unquote_plus(params.get("link", ""));
gui.log(link);
remotePlaylist = mediathek.loadPage(link);
gui.playPlaylist(remotePlaylist);
elif(action == "openMenu"):
path = params.get("path", "0");
mediathek.buildMenu(path)
elif(action == "search"):
result = gui.keyboardInput();
if (result.isConfirmed()):
searchText = unicode(result.getText().decode('UTF-8'));
mediathek.searchVideo(searchText);
else:
gui.back();
elif(action == "openJsonPath"):
path = params.get("path", "0");
callhash = params.get("callhash", "0");
mediathek.buildJsonMenu(path,callhash,0)
elif(action == "openJsonLink"):
link = urllib.unquote_plus(params.get("link", ""));
mediathek.playVideoFromJsonLink(link);
else:
if(mediathek.isSearchable()):
gui.addSearchButton(mediathek);
mediathek.displayCategories();
gui.closeMenuContext();