-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.py
355 lines (307 loc) · 12.1 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
# -*- coding: utf-8 -*-
#------------------------------------------------------------
# Kodi Add-on for http://avezy.tk
# Version 1.1.4
#------------------------------------------------------------
# License: GPL (http://www.gnu.org/licenses/gpl-3.0.html)
# Based on code from youtube addon
#------------------------------------------------------------
# Changelog:
# 1.1.4
# - Gestion de errores en peticiones HTTP
# 1.1.3
# - Nueva URL para JSON
# 1.1.2
# - Colores distintos para ace/sop
# 1.1.1
# - Fix URL JSON
# 1.1.0
# - Soporte canales Sopcast
# 1.0.6
# - Cambio ubicacion repo
# 1.0.5
# - Auto actualizacion
# 1.0.4
# - Mostrar agenda completa
# - Pantalla de ajustes
# - Posibilidad elegir servidor (ToDo)
# - Iconos para categorias
# 1.0.3
# - First public release
# 1.0.2
# - Minor fixes
# 1.0.1
# - Use public URL
# 1.0.0
# - First release
#---------------------------------------------------------------------------
import os
import sys
import urllib
import urllib2
import json
from datetime import date
from datetime import time
from datetime import datetime
import plugintools
import tools
import xbmcgui
import xbmcaddon
import xbmcplugin
addon = xbmcaddon.Addon('plugin.video.arenavisionezy')
addon_id = addon.getAddonInfo('id')
addon_name = addon.getAddonInfo('name')
addon_version = addon.getAddonInfo('version')
# Servidor origen
if addon.getSetting('av_source_server') == "0":
parserJsonUrl = "https://avezy.tk/json.php"
elif addon.getSetting('av_source_server') == "1":
parserJsonUrl = "http://arenavision.esy.es/json.php"
else:
parserJsonUrl = "https://avezy.tk/json.php"
# Debug servidor seleccionado
tools.debug("arenavisionezy Servidor: " + addon.getSetting('av_source_server'))
tools.debug("arenavisionezy Json: " + parserJsonUrl)
# Entry point
def run():
#plugintools.log("arenavisionezy.run")
# Get params
params = plugintools.get_params()
plugintools.debug("arenavisionezy.run " + repr(params))
if params.get("action") is None:
plugintools.debug("arenavisionezy.run No hay accion")
listado_categorias(params)
else:
action = params.get("action")
plugintools.log("arenavisionezy.run Accion: " + action)
exec action+"(params)"
plugintools.close_item_list()
# Main menu
def listado_categorias(params):
plugintools.debug("arenavisionezy.listado_categorias "+repr(params))
# Definir URL del JSON
jsonUrl = parserJsonUrl
plugintools.debug("arenavisionezy.listado_categorias Parsing: " + jsonUrl)
# Peticion del JSON
jsonSrc = makeRequest(jsonUrl)
plugintools.debug("arenavisionezy.listado_eventos Recibido jsonSrc: " + jsonSrc)
# Comprobar formato respuesta
if(is_json(jsonSrc) == False):
errorTitle = 'Respuesta no JSON'
errorMsg = "La respuesta recibida no tiene formato JSON"
mostrar_errores(errorTitle, errorMsg, jsonSrc)
return
# Cargar respuesta en json
datos = json.loads(jsonSrc)
# Comprobar error en la respuesta
if('error' in datos):
errorTitle = 'Error procesando categorias'
errorMsg = datos['msg']
mostrar_errores(errorTitle, errorMsg)
return
categorias = datos['categories']
last_update = datos['last_update']
# Informacion del evento
titulo01 = " [COLOR skyblue]ArenaVision EZY[/COLOR] Version "+addon_version+" (by Wazzu)"
titulo02 = " [COLOR deepskyblue]Ultima actualizacion: "+last_update+"[/COLOR]"
plugintools.add_item( title = titulo01 , thumbnail = generar_miniatura('default'), folder = False )
plugintools.add_item( title = titulo02 , thumbnail = generar_miniatura('default'), folder = False )
# Todos los eventos
plugintools.add_item(
action = "mostrar_agenda" ,
title = "[COLOR deepskyblue][VER AGENDA COMPLETA][/COLOR]",
plot = '' ,
url = "plugin://plugin.video.arenavisionezy/?action=mostrar_agenda",
thumbnail = generar_miniatura('default'),
isPlayable = True,
folder = True
)
# Listado de categorias
for categoria in categorias:
# Miniatura
category_thumb = generar_miniatura(categoria['categoria'])
plugintools.debug("arenavisionezy.category_thumb "+category_thumb)
# Items
plugintools.add_item(
action = "listado_eventos" ,
title = "[UPPERCASE]" + categoria['categoria'] + "[/UPPERCASE]" + " (" + categoria['items'] + " eventos)",
plot = '' ,
url = "plugin://plugin.video.arenavisionezy/?action=listado_eventos&cat="+urllib.quote(categoria['categoria']),
thumbnail = category_thumb,
isPlayable = True,
folder = True
)
# Listado de toda la agenda
def mostrar_agenda(params):
plugintools.debug("arenavisionezy.mostrar_agenda "+repr(params))
# Parse json
jsonUrl = parserJsonUrl + '?cat=all'
plugintools.debug("arenavisionezy.mostrar_agenda Parsing: " + jsonUrl)
jsonSrc = urllib2.urlopen(jsonUrl)
datos = json.load(jsonSrc)
eventos = datos['eventos']
last_update = datos['last_update']
# Titulo de la categoria
titulo01 = " [COLOR skyblue]Agenda completa[/COLOR] (actualizado: "+last_update+")"
plugintools.add_item( title = titulo01 , thumbnail = generar_miniatura('default'), action='', url='', isPlayable = False, folder = False )
# Para cada evento
for evento in eventos:
title = "[COLOR skyblue]" + evento['fecha'] + " " + evento['hora'] + "[/COLOR] " + evento['titulo']
plot = ""
thumbnail = generar_miniatura(evento['categoria'])
url = "plugin://plugin.video.arenavisionezy/?action=listado_canales&evento="+evento['id']
plugintools.add_item(
action="listado_canales" ,
title=title ,
plot=plot ,
url=url ,
thumbnail=thumbnail ,
isPlayable=True,
folder=True
)
# Listado de eventos de una categoria
def listado_eventos(params):
plugintools.debug("Python Version: " + (sys.version))
plugintools.debug("arenavisionezy.listado_eventos "+repr(params))
categoria = params['cat']
# Parse json
jsonUrl = parserJsonUrl + '?cat='+urllib.quote(categoria)
plugintools.debug("arenavisionezy.listado_eventos Parsing: " + jsonUrl)
jsonSrc = makeRequest(jsonUrl)
plugintools.debug("arenavisionezy.listado_eventos Recibido jsonSrc: " + jsonSrc)
# Cargar respuesta en json
datos = json.loads(jsonSrc)
# Comprobar error en la respuesta
if('error' in datos):
errorTitle = 'Error procesando eventos'
errorMsg = datos['msg']
mostrar_errores(errorTitle, errorMsg)
return
eventos = datos['eventos']
last_update = datos['last_update']
# Titulo de la categoria
titulo01 = " [COLOR skyblue][UPPERCASE]"+categoria+"[/UPPERCASE][/COLOR] (actualizado: "+last_update+")"
plugintools.add_item( title = titulo01 , thumbnail = generar_miniatura('default'), action='', url='', isPlayable = False, folder = False )
# Para cada evento
for evento in eventos:
# ToDo eventos del pasado
#plugintools.debug("Fecha: " + fecha_hora)
#showDate = datetime.strptime(fecha_hora, "%d/%m/%y %H:%M:%S").date()
#todayDate = datetime.today().date()
#if(showDate < todayDate):
# color = 'grey'
#else:
# color = 'skyblue'
color = 'skyblue'
title = "[COLOR "+color+"]" + evento['fecha'] + " " + evento['hora'] + "[/COLOR] " + evento['titulo']
plot = ""
thumbnail = generar_miniatura(categoria)
url = "plugin://plugin.video.arenavisionezy/?action=listado_canales&evento="+evento['id']
plugintools.add_item(
action="listado_canales" ,
title=title ,
plot=plot ,
url=url ,
thumbnail=thumbnail ,
isPlayable=True,
folder=True
)
# Listado de canales de un evento
def listado_canales(params):
plugintools.debug("arenavisionezy.listado_canales "+repr(params))
evento = params['evento']
# Parse json
jsonUrl = parserJsonUrl + '?evento='+evento
plugintools.debug("arenavisionezy.listado_canales Parsing: " + jsonUrl)
jsonSrc = makeRequest(jsonUrl)
plugintools.debug("arenavisionezy.listado_eventos Recibido jsonSrc: " + jsonSrc)
# Cargar respuesta en json
evento = json.loads(jsonSrc)
# Comprobar error en la respuesta
if('error' in evento):
errorTitle = 'Error procesando canales'
errorMsg = evento['msg']
mostrar_errores(errorTitle, errorMsg)
return
return
# Datos del evento
categoria = evento['categoria']
titulo = evento['titulo']
fecha = evento['fecha']
canales = evento['canales']
# Informacion del evento
titulo01 = "[COLOR skyblue] " + categoria + " - " + fecha + "[/COLOR]"
plugintools.add_item( title = titulo01 , thumbnail = generar_miniatura('default'), isPlayable = True, folder = True )
titulo01 = "[COLOR skyblue] " + titulo + "[/COLOR]"
plugintools.add_item( title = titulo01 , thumbnail = generar_miniatura('default'), isPlayable = True, folder = True )
# Canales del evento
for canal in canales:
canal_nombre = canal['canal']
canal_enlace = canal['enlace']
canal_type = canal['type']
canal_mode = canal['mode']
#etiqueta = "[COLOR red][" + "[UPPERCASE]" + canal_type + "[/UPPERCASE]" + " " + canal_nombre + "][/COLOR] " + titulo + " - " + canal_mode
#etiqueta = "[COLOR red][[/COLOR]"
etiqueta = "[COLOR red]" + canal_nombre + "[/COLOR]" + " "
if(canal_type == "sop"):
etiqueta = etiqueta + "[COLOR green][I](SOP)[/I][/COLOR]"
else:
etiqueta = etiqueta + "[COLOR blue][I](ACE)[/I][/COLOR]"
#etiqueta = etiqueta + " " + "[COLOR red]" + "[" + " " + canal_nombre + "][/COLOR] " + titulo + " - " + canal_mode
etiqueta = etiqueta + " " + titulo
#enlace = "plugin://program.plexus/?url=" + canal_enlace + "&mode="+canal_mode+"&name=" + canal_nombre + " " + titulo
enlace = "plugin://program.plexus/?url=" + canal_enlace + "&mode="+canal_mode+"&name=" + titulo
plugintools.add_item(
title = etiqueta ,
url = enlace ,
thumbnail = generar_miniatura(categoria) ,
isPlayable = True,
folder = False
)
# Ruta de la miniatura
def generar_miniatura(categoria):
thumb = categoria.lower().replace(" ", "_")
thumb_path = os.path.dirname(__file__) + "/resources/media/" + thumb + ".png"
if(os.path.isfile(thumb_path)):
# Miniatura especifica
category_thumb = "special://home/addons/" + addon_id + "/resources/media/" + thumb + ".png"
else:
# Miniatura generica
category_thumb = "special://home/addons/" + addon_id + "/resources/media/default.png"
return category_thumb
# Mostrar errores
def mostrar_errores(titulo, mensaje, debug=""):
plugintools.debug("ERROR: " + titulo)
errTitle = "[COLOR red][UPPERCASE]ERROR: " + titulo + "[/UPPERCASE][/COLOR]"
errMsg = mensaje + "[CR]Para mas informacion, por favor, consulta el registro."
plugintools.add_item( title = errTitle, thumbnail = generar_miniatura('default'), action='', url='', isPlayable = False, folder = False )
plugintools.add_item( title = errMsg, thumbnail = generar_miniatura('default'), action='', url='', isPlayable = False, folder = False )
return
# Realizar peticion HTTP
def makeRequest(url):
plugintools.debug("makeRequest: " + url)
try:
req = urllib2.Request(url)
response = urllib2.urlopen(req)
data = response.read()
response.close()
return data
except urllib2.URLError, e:
errorMsg = str(e)
plugintools.debug(errorMsg);
xbmc.executebuiltin("Notification(ArenavisionEzy,"+errorMsg+")")
data_err = []
data_err.append(['error', True])
data_err.append(['msg', errorMsg])
data_err = json.dumps(data_err)
data_err = "{\"error\":\"true\", \"msg\":\""+errorMsg+"\"}"
return data_err
# Comprobar si la cadena es json
def is_json(myjson):
try:
json_object = json.loads(myjson)
except ValueError, e:
return False
return True
# Main loop
run()