def create_session(self, session_key, state): """ :type session_key: str :type state: str :rtype: WatchSession or None """ Log.Debug('Creating a WatchSession for the current media') video_section = PMS.get_video_session(session_key) if not video_section: return None player_section = video_section.findall('Player') if len(player_section): player_section = player_section[0] session = WatchSession.from_section( video_section, state, PlexMediaServer.metadata(video_section.get('ratingKey')), PlexMediaServer.client(player_section.get('machineIdentifier'))) session.save() return session
def create_session(self, session_key, state): """ :type session_key: str :type state: str :rtype: WatchSession or None """ Log.Debug('Creating a WatchSession for the current media') video_section = PMS.get_video_session(session_key) if not video_section: return None player_section = video_section.findall('Player') if len(player_section): player_section = player_section[0] session = WatchSession.from_section( video_section, state, PlexMediaServer.metadata(video_section.get('ratingKey')), PlexMediaServer.client(player_section.get('machineIdentifier')) ) session.save() return session
def update_session(self, session, view_offset): Log.Debug('Trying to update the current WatchSession (session key: %s)' % session.key) video_section = PMS.get_video_session(session.key) Log.Debug('last item key: %s, current item key: %s' % (session.item_key, video_section.get('ratingKey'))) if session.item_key != video_section.get('ratingKey'): return False session.last_view_offset = view_offset session.update_required = False return True
def update_session(self, session, view_offset): Log.Debug( 'Trying to update the current WatchSession (session key: %s)' % session.key) video_section = PMS.get_video_session(session.key) Log.Debug('last item key: %s, current item key: %s' % (session.item_key, video_section.get('ratingKey'))) if session.item_key != video_section.get('ratingKey'): return False session.last_view_offset = view_offset session.update_required = False return True