|
1 |
| -<<<<<<< HEAD |
2 |
| -###################################################################################################################### |
3 |
| -# Plex.tv helper unit |
4 |
| -# |
5 |
| -# Author: dane22, a Plex Community member |
6 |
| -# |
7 |
| -###################################################################################################################### |
8 |
| -import sys |
9 |
| - |
10 |
| -from consts import VERSION, PREFIX, NAME |
11 |
| - |
12 |
| -class plexTV(object): |
13 |
| - # Defaults used by the rest of the class |
14 |
| - def __init__(self): |
15 |
| - # Endpoints @ Plex server |
16 |
| - self.mainUrl = 'https://plex.tv' |
17 |
| - self.loginUrl = self.mainUrl + '/users/sign_in' |
18 |
| - self.serverUrl = self.mainUrl + '/pms/servers' |
19 |
| - self.resourceURL = self.mainUrl + '/pms/resources.xml' |
20 |
| - # Mandentory headers |
21 |
| - id = self.get_thisPMSIdentity() |
22 |
| - self.myHeader = {} |
23 |
| - self.myHeader['X-Plex-Client-Identifier'] = NAME + '-' + id |
24 |
| - self.myHeader['Accept'] = 'application/json' |
25 |
| - self.myHeader['X-Plex-Product'] = NAME |
26 |
| - self.myHeader['X-Plex-Version'] = VERSION |
27 |
| - self.myHeader['X-Plex-Platform'] = Platform.OS |
28 |
| - |
29 |
| - # Login to Plex.tv |
30 |
| - def login(self, user, pwd): |
31 |
| - Log.Info('Start to auth towards plex.tv') |
32 |
| - authString = String.Base64Encode('%s:%s' % (user, pwd)) |
33 |
| - self.myHeader['Authorization'] = 'Basic ' + authString |
34 |
| - try: |
35 |
| - token = JSON.ObjectFromURL(self.loginUrl + '.json', headers=self.myHeader, method='POST')['user']['authToken'] |
36 |
| - Log.Info('Authenticated towards plex.tv with success') |
37 |
| - return token |
38 |
| - except Ex.HTTPError, e: |
39 |
| - Log.Exception('Login error: ' + str(e)) |
40 |
| - return None |
41 |
| - except Exception, e: |
42 |
| - Log.Exception('Login error: ' + str(e)) |
43 |
| - return None |
44 |
| - |
45 |
| - |
46 |
| - ''' Is user the owner of the server? |
47 |
| - user identified by token |
48 |
| - server identified by clientIdentifier |
49 |
| - if server found, and user is the owner, return 0 |
50 |
| - if server is not found, return 1 |
51 |
| - if user is not the owner, return 2 |
52 |
| - if unknow error, return -1 |
53 |
| - ''' |
54 |
| - def isServerOwner(self, token): |
55 |
| - Log.Debug('Checking server for ownership') |
56 |
| - try: |
57 |
| - # Ident of this server |
58 |
| - PMSId = XML.ElementFromURL('http://127.0.0.1:32400/identity').get('machineIdentifier') |
59 |
| - # Grap Resource list from plex.tv |
60 |
| - self.myHeader['X-Plex-Token'] = token |
61 |
| - elements = XML.ElementFromURL(self.resourceURL, headers=self.myHeader).xpath('//Device[@clientIdentifier="' + PMSId + '"]/@owned') |
62 |
| - if len(elements) < 1: |
63 |
| - Log.Debug('Server %s was not found @ plex.tv' %(PMSId)) |
64 |
| - return 1 |
65 |
| - else: |
66 |
| - if elements[0] == '1': |
67 |
| - Log.Debug('Authenticated ok towards %s' %(PMSId)) |
68 |
| - return 0 |
69 |
| - else: |
70 |
| - Log.Debug('Server %s was found @ plex.tv, but user is not the owner' %(PMSId)) |
71 |
| - return 2 |
72 |
| - except Ex.HTTPError, e: |
73 |
| - Log.Exception('Unknown exception was: %s' %(e)) |
74 |
| - return -1 |
75 |
| - |
76 |
| - ''' will return the machineIdentity of this server ''' |
77 |
| - def get_thisPMSIdentity(self): |
78 |
| - return XML.ElementFromURL('http://127.0.0.1:32400/identity').get('machineIdentifier') |
79 |
| - |
80 |
| - ''' Will return true, if PMS is authenticated towards plex.tv ''' |
81 |
| - def auth2myPlex(self): |
82 |
| - return 'ok' == XML.ElementFromURL('http://127.0.0.1:32400').get('myPlexSigninState') |
83 |
| - |
84 |
| - |
85 |
| - |
86 |
| - |
87 |
| - |
88 |
| - |
89 |
| - |
90 |
| - |
91 |
| -======= |
92 | 1 | ######################################################################################################################
|
93 | 2 | # Plex.tv helper unit
|
94 | 3 | #
|
@@ -255,4 +164,3 @@ def getUserList(self):
|
255 | 164 | return usrList
|
256 | 165 | except Exception, e:
|
257 | 166 | Log.Exception('Fatal error happened in getUserList ' + str(e))
|
258 |
| ->>>>>>> tommy-work3-pmsV3-partial |
0 commit comments