-
Notifications
You must be signed in to change notification settings - Fork 225
/
service.py
243 lines (198 loc) · 7.84 KB
/
service.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
# -*- coding: utf-8 -*-
# Author: asciidisco
# Module: service
# Created on: 13.01.2017
# License: MIT https://goo.gl/5bMj3H
"""Kodi plugin for Netflix (https://netflix.com)"""
# pylint: disable=import-error
import threading
import socket
import sys
from datetime import datetime, timedelta
import xbmc
from resources.lib.NetflixCommon import NetflixCommon
from resources.lib.MSLHttpRequestHandler import MSLTCPServer
from resources.lib.NetflixHttpRequestHandler import NetflixTCPServer
from resources.lib.playback import PlaybackController
from resources.lib.playback.bookmarks import BookmarkManager
from resources.lib.playback.stream_continuity import StreamContinuityManager
from resources.lib.playback.section_skipping import SectionSkipper
def select_unused_port():
"""
Helper function to select an unused port on the host machine
:return: int - Free port
"""
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.bind(('127.0.0.1', 0))
_, port = sock.getsockname()
sock.close()
return port
# Setup plugin
BASE_URL = sys.argv[0]
PLUGIN_HANDLE = None
def strp(value, form):
"""
Helper function to safely create datetime objects from strings
:return: datetime - parsed datetime object
"""
# pylint: disable=broad-except
from time import strptime
def_value = datetime.utcfromtimestamp(0)
try:
return datetime.strptime(value, form)
except TypeError:
try:
return datetime(*(strptime(value, form)[0:6]))
except ValueError:
return def_value
except Exception:
return def_value
class NetflixService(object):
"""
Netflix addon service
"""
def __init__(self):
# init kodi helper (for logging)
self.nx_common = NetflixCommon(plugin_handle=PLUGIN_HANDLE,
base_url=BASE_URL)
self.last_schedule_check = datetime.now()
self.schedule_check_interval = int(self.nx_common.get_setting(
'schedule_check_interval'))
self.startidle = 0
self.freq = int('0' + self.nx_common.get_setting('auto_update'))
# pick & store a port for the MSL service
msl_port = select_unused_port()
self.nx_common.set_setting('msl_service_port', str(msl_port))
self.nx_common.log(msg='[MSL] Picked Port: ' + str(msl_port))
# pick & store a port for the internal Netflix HTTP proxy service
ns_port = select_unused_port()
self.nx_common.set_setting('netflix_service_port', str(ns_port))
self.nx_common.log(msg='[NS] Picked Port: ' + str(ns_port))
self.nx_common.flush_settings()
# server defaults
MSLTCPServer.allow_reuse_address = True
NetflixTCPServer.allow_reuse_address = True
# configure the MSL Server
self.msl_server = MSLTCPServer(('127.0.0.1', msl_port),
self.nx_common)
# configure the Netflix Data Server
self.ns_server = NetflixTCPServer(('127.0.0.1', ns_port),
self.nx_common)
self.msl_thread = threading.Thread(
target=self.msl_server.serve_forever)
self.ns_thread = threading.Thread(
target=self.ns_server.serve_forever)
def _start_servers(self):
self.msl_server.server_activate()
self.msl_server.timeout = 1
# start thread for MLS servie
self.msl_thread.start()
self.nx_common.log(msg='[MSL] Thread started')
self.ns_server.server_activate()
self.ns_server.timeout = 1
# start thread for Netflix HTTP service
self.ns_thread.start()
self.nx_common.log(msg='[NS] Thread started')
def _shutdown(self):
# MSL service shutdown sequence
self.msl_server.server_close()
self.msl_server.shutdown()
self.msl_thread.join()
self.msl_server = None
self.msl_thread = None
self.nx_common.log(msg='Stopped MSL Service')
# Netflix service shutdown sequence
self.ns_server.server_close()
self.ns_server.shutdown()
self.ns_thread.join()
self.ns_server = None
self.ns_thread = None
self.nx_common.log(msg='Stopped HTTP Service')
def _is_idle(self):
if self.nx_common.get_setting('wait_idle') != 'true':
return True
lastidle = xbmc.getGlobalIdleTime()
if xbmc.Player().isPlaying():
self.startidle = lastidle
if lastidle < self.startidle:
self.startidle = 0
idletime = lastidle - self.startidle
return idletime >= 300
def _update_running(self):
update = self.nx_common.get_setting('update_running') or 'false'
if update != 'false':
starttime = strp(update, '%Y-%m-%d %H:%M')
if (starttime + timedelta(hours=6)) <= datetime.now():
self.nx_common.set_setting('update_running', 'false')
self.nx_common.log(
'Canceling previous library update - duration > 6 hours',
xbmc.LOGWARNING)
else:
self.nx_common.log('DB Update already running')
return True
return False
def run(self):
"""
Main loop. Runs until xbmc.Monitor requests abort
"""
self._start_servers()
controller = PlaybackController(self.nx_common)
controller.action_managers = [
BookmarkManager(self.nx_common),
SectionSkipper(self.nx_common),
StreamContinuityManager(self.nx_common)
]
player = xbmc.Player()
while not controller.abortRequested():
if self.ns_server.esn_changed():
self.msl_server.reset_msl_data()
try:
if player.isPlayingVideo():
controller.on_playback_tick()
if self.library_update_scheduled() and self._is_idle():
self.update_library()
except RuntimeError as exc:
self.nx_common.log(
'RuntimeError in main loop: {}'.format(exc), xbmc.LOGERROR)
if controller.waitForAbort(1):
break
self._shutdown()
def library_update_scheduled(self):
"""
Checks if the scheduled time for a library update has been reached
"""
now = datetime.now()
next_schedule_check = (
self.last_schedule_check +
timedelta(minutes=self.schedule_check_interval))
if not self.freq or now <= next_schedule_check:
'''
self.nx_common.log('Auto-update disabled or schedule check '
'interval not complete yet ({} / {}).'
.format(now, next_schedule_check))
'''
return False
self.last_schedule_check = now
time = self.nx_common.get_setting('update_time') or '00:00'
lastrun_date = (self.nx_common.get_setting('last_update') or
'1970-01-01')
lastrun_full = lastrun_date + ' ' + time[0:5]
lastrun = strp(lastrun_full, '%Y-%m-%d %H:%M')
freqdays = [0, 1, 2, 5, 7][self.freq]
nextrun = lastrun + timedelta(days=freqdays)
self.nx_common.log(
'It\'s currently {}, next run is scheduled for {}'
.format(now, nextrun))
return now >= nextrun
def update_library(self):
"""
Triggers an update of the local Kodi library
"""
if not self._update_running():
self.nx_common.log('Triggering library update', xbmc.LOGNOTICE)
xbmc.executebuiltin(
('XBMC.RunPlugin(plugin://{}/?action=export-new-episodes'
'&inbackground=True)')
.format(self.nx_common.get_addon().getAddonInfo('id')))
if __name__ == '__main__':
NetflixService().run()