8
8
https://github.com/maykar/plex_assistant
9
9
"""
10
10
11
- from homeassistant .helpers .network import get_url
12
11
import homeassistant .helpers .config_validation as cv
13
- from homeassistant .helpers .typing import HomeAssistantType
14
12
import voluptuous as vol
15
13
16
14
DOMAIN = "plex_assistant"
33
31
34
32
class PA :
35
33
""" Hold our libraries, devices, etc. """
34
+
36
35
plex = None
37
36
server = None
38
37
lib = {}
@@ -43,34 +42,29 @@ class PA:
43
42
client_sensor = []
44
43
alias_names = []
45
44
client_update = True
46
- zeroconf = None
47
-
48
-
49
- async def get_zeroconf_singleton (hass : HomeAssistantType ):
50
- try :
51
- from homeassistant .components .zeroconf import async_get_instance
52
- PA .zeroconf = await async_get_instance (hass )
53
- except :
54
- from zeroconf import Zeroconf
55
- PA .zeroconf = Zeroconf ()
56
45
57
46
58
- def setup (hass , config ):
47
+ async def async_setup (hass , config ):
59
48
"""Called when Home Assistant is loading our component."""
60
- import logging
49
+
61
50
import os
51
+ import logging
62
52
63
53
from gtts import gTTS
64
54
from plexapi .server import PlexServer
65
55
from pychromecast import get_chromecasts
66
56
from pychromecast .controllers .plex import PlexController
67
-
68
- from .helpers import (cc_callback , find_media , fuzzy , get_libraries ,
69
- media_error , video_selection )
57
+ from homeassistant .helpers .network import get_url
70
58
from .localize import LOCALIZE
71
59
from .process_speech import process_speech
72
-
73
- _LOGGER = logging .getLogger (__name__ )
60
+ from .helpers import (
61
+ cc_callback ,
62
+ find_media ,
63
+ fuzzy ,
64
+ get_libraries ,
65
+ media_error ,
66
+ video_selection ,
67
+ )
74
68
75
69
conf = config [DOMAIN ]
76
70
base_url = conf .get (CONF_URL )
@@ -80,34 +74,32 @@ def setup(hass, config):
80
74
tts_error = conf .get (CONF_TTS_ERROR )
81
75
aliases = conf .get (CONF_ALIASES )
82
76
83
- localize = LOCALIZE [ lang ] if lang in LOCALIZE . keys () else LOCALIZE [ 'en' ]
77
+ _LOGGER = logging . getLogger ( __name__ )
84
78
85
- directory = hass .config .path () + '/www/plex_assist_tts/'
79
+ localize = LOCALIZE [lang ] if lang in LOCALIZE .keys () else LOCALIZE ["en" ]
80
+ zc = None
81
+
82
+ try :
83
+ from homeassistant .components .zeroconf import async_get_instance
84
+ zc = await async_get_instance (hass )
85
+ except :
86
+ from zeroconf import Zeroconf
87
+ zc = Zeroconf ()
88
+
89
+ directory = hass .config .path () + "/www/plex_assist_tts/"
86
90
if tts_error and not os .path .exists (directory ):
87
91
os .makedirs (directory , mode = 0o777 )
88
92
89
- get_chromecasts (blocking = False , callback = cc_callback ,
90
- zeroconf_instance = PA .zeroconf )
93
+ get_chromecasts (blocking = False , callback = cc_callback , zeroconf_instance = zc )
91
94
92
- PA . server = PlexServer (base_url , token )
93
- PA . plex = PA .server . library
94
- PA .lib = get_libraries ( PA .plex )
95
- PA .alias_names = list ( aliases . keys ()) if aliases else []
95
+ def sync_io_server (base_url , token ):
96
+ PA .server = PlexServer ( base_url , token )
97
+ PA .plex = PA .server . library
98
+ PA .lib = get_libraries ( PA . plex )
96
99
97
- def update_sensor ():
98
- clients = [{client .title : {"ID" : client .machineIdentifier ,
99
- "type" : client .product }} for client in PA .clients ]
100
- devicelist = list (PA .devices .keys ())
101
- state = str (len (devicelist + clients )) + ' connected devices.'
102
- attributes = {
103
- "Connected Devices" : {
104
- 'Cast Devices' : devicelist or 'None' ,
105
- 'Plex Clients' : clients or 'None'
106
- },
107
- "friendly_name" : "Plex Assistant Devices" ,
108
- }
109
- sensor = "sensor.plex_assistant_devices"
110
- hass .states .async_set (sensor , state , attributes )
100
+ await hass .async_add_executor_job (sync_io_server , base_url , token )
101
+
102
+ PA .alias_names = list (aliases .keys ()) if aliases else []
111
103
112
104
def handle_input (call ):
113
105
if not call .data .get ("command" ).strip ():
@@ -118,14 +110,14 @@ def handle_input(call):
118
110
_LOGGER .debug ("Command: %s" , command_string )
119
111
120
112
get_chromecasts (blocking = False , callback = cc_callback ,
121
- zeroconf_instance = PA . zeroconf )
113
+ zeroconf_instance = zc )
122
114
123
115
PA .clients = PA .server .clients ()
124
116
PA .client_names = [client .title for client in PA .clients ]
125
117
PA .client_ids = [client .machineIdentifier for client in PA .clients ]
126
118
127
119
if localize ["controls" ]["update_sensor" ] in command_string :
128
- update_sensor ()
120
+ update_sensor (hass )
129
121
return
130
122
131
123
cast = None
@@ -137,22 +129,25 @@ def handle_input(call):
137
129
PA .device_names = list (PA .devices .keys ())
138
130
139
131
if not command ["control" ]:
140
- _LOGGER .debug ({i : command [i ] for i in command if i != ' library' })
132
+ _LOGGER .debug ({i : command [i ] for i in command if i != " library" })
141
133
142
134
if PA .lib ["updated" ] < PA .plex .search (sort = "addedAt:desc" , limit = 1 )[0 ].addedAt :
143
135
PA .lib = get_libraries (PA .plex )
144
136
145
137
devices = PA .device_names + PA .client_names + PA .client_ids
146
138
device = fuzzy (command ["device" ] or default_cast , devices )
139
+
147
140
if aliases :
148
141
alias = fuzzy (command ["device" ] or default_cast , PA .alias_names )
149
142
150
143
if alias [1 ] < 60 and device [1 ] < 60 :
151
- _LOGGER .warning ("{0} {1}: \" {2}\" " .format (
152
- localize ["cast_device" ].capitalize (),
153
- localize ["not_found" ],
154
- command ["device" ].title ()
155
- ))
144
+ _LOGGER .warning (
145
+ '{0} {1}: "{2}"' .format (
146
+ localize ["cast_device" ].capitalize (),
147
+ localize ["not_found" ],
148
+ command ["device" ].title (),
149
+ )
150
+ )
156
151
_LOGGER .debug ("Device Score: %s" , device [1 ])
157
152
_LOGGER .debug ("Devices: %s" , str (devices ))
158
153
@@ -164,9 +159,11 @@ def handle_input(call):
164
159
name = aliases [alias [0 ]] if alias [1 ] > device [1 ] else device [0 ]
165
160
cast = PA .devices [name ] if name in PA .device_names else name
166
161
client = isinstance (cast , str )
162
+
167
163
if client :
168
164
client_device = next (
169
- c for c in PA .clients if c .title == cast or c .machineIdentifier == cast )
165
+ c for c in PA .clients if c .title == cast or c .machineIdentifier == cast
166
+ )
170
167
cast = client_device
171
168
172
169
if command ["control" ]:
@@ -192,21 +189,20 @@ def handle_input(call):
192
189
193
190
try :
194
191
result = find_media (command , command ["media" ], PA .lib )
195
- media = video_selection (command , result [ "media" ],
196
- result ["library" ])
192
+ media = video_selection (
193
+ command , result [ "media" ], result ["library" ])
197
194
except Exception :
198
195
error = media_error (command , localize )
199
196
if tts_error :
200
197
tts = gTTS (error , lang = lang )
201
- tts .save (directory + ' error.mp3' )
198
+ tts .save (directory + " error.mp3" )
202
199
speech_error = True
203
- _LOGGER .warning (error )
204
200
205
201
if speech_error and not client :
206
202
cast .wait ()
207
203
med_con = cast .media_controller
208
204
mp3 = get_url (hass ) + "/local/plex_assist_tts/error.mp3"
209
- med_con .play_media (mp3 , ' audio/mpeg' )
205
+ med_con .play_media (mp3 , " audio/mpeg" )
210
206
med_con .block_until_active ()
211
207
return
212
208
@@ -224,7 +220,25 @@ def handle_input(call):
224
220
cast .wait ()
225
221
plex_c .block_until_playing (media )
226
222
227
- update_sensor ()
223
+ update_sensor (hass )
228
224
229
- hass .services .register (DOMAIN , "command" , handle_input )
225
+ hass .services .async_register (DOMAIN , "command" , handle_input )
230
226
return True
227
+
228
+
229
+ def update_sensor (hass ):
230
+ clients = [
231
+ {client .title : {"ID" : client .machineIdentifier , "type" : client .product }}
232
+ for client in PA .clients
233
+ ]
234
+ devicelist = list (PA .devices .keys ())
235
+ state = str (len (devicelist + clients )) + " connected devices."
236
+ attributes = {
237
+ "Connected Devices" : {
238
+ "Cast Devices" : devicelist or "None" ,
239
+ "Plex Clients" : clients or "None" ,
240
+ },
241
+ "friendly_name" : "Plex Assistant Devices" ,
242
+ }
243
+ sensor = "sensor.plex_assistant_devices"
244
+ hass .states .async_set (sensor , state , attributes )
0 commit comments