session_key added

session_key from session that caused the concurrent trigger will be collected.
This commit is contained in:
blacktwin 2018-01-26 09:16:03 -05:00 committed by GitHub
parent fab88eda03
commit 5855fb3297
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ PlexPy > Settings > Notification Agents > Scripts > Gear icon:
Playback User Concurrent Streams: kill_more_than.py
PlexPy > Settings > Notifications > Script > Script Arguments
{username} {ip_address}
{username} {ip_address} {session_key}
"""
import requests
@ -28,6 +28,7 @@ ignore_lst = ('')
# 2nd stream information is passed
USERNAME = sys.argv[1]
ADDRESS = sys.argv[2]
SESSION_KEY = sys.argv[3]
if USERNAME in ignore_lst:
print(u"{} ignored.".format(USERNAME))
@ -38,7 +39,7 @@ sess.verify = False
plex = PlexServer(PLEX_URL, PLEX_TOKEN, session=sess)
def kill_session(user, ip_address):
def kill_session(user, ip_address, session_key):
user_sessions = []
for session in plex.sessions():
@ -49,7 +50,7 @@ def kill_session(user, ip_address):
if len(user_sessions) == 1:
for session in user_sessions:
username = session.usernames[0]
if session_key == session.sessionKey:
title = (session.grandparentTitle + ' - ' if session.type == 'episode' else '') + session.title
print(u"Killing {}'s second stream of {} for {}".format(username, title, MESSAGE))
session.stop(reason=MESSAGE)
@ -59,4 +60,4 @@ def kill_session(user, ip_address):
print(u"Not killing {}'s second stream. Same IP".format(username))
kill_session(USERNAME, ADDRESS)
kill_session(USERNAME, ADDRESS, SESSION_KEY)