Skip to content
This repository was archived by the owner on May 26, 2022. It is now read-only.

Commit 3697c39

Browse files
authored
zeroconf updates
1 parent 2bdb96d commit 3697c39

File tree

1 file changed

+71
-57
lines changed

1 file changed

+71
-57
lines changed

custom_components/plex_assistant/__init__.py

+71-57
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
https://github.com/maykar/plex_assistant
99
"""
1010

11-
from homeassistant.helpers.network import get_url
1211
import homeassistant.helpers.config_validation as cv
13-
from homeassistant.helpers.typing import HomeAssistantType
1412
import voluptuous as vol
1513

1614
DOMAIN = "plex_assistant"
@@ -33,6 +31,7 @@
3331

3432
class PA:
3533
""" Hold our libraries, devices, etc. """
34+
3635
plex = None
3736
server = None
3837
lib = {}
@@ -43,34 +42,29 @@ class PA:
4342
client_sensor = []
4443
alias_names = []
4544
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()
5645

5746

58-
def setup(hass, config):
47+
async def async_setup(hass, config):
5948
"""Called when Home Assistant is loading our component."""
60-
import logging
49+
6150
import os
51+
import logging
6252

6353
from gtts import gTTS
6454
from plexapi.server import PlexServer
6555
from pychromecast import get_chromecasts
6656
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
7058
from .localize import LOCALIZE
7159
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+
)
7468

7569
conf = config[DOMAIN]
7670
base_url = conf.get(CONF_URL)
@@ -80,34 +74,32 @@ def setup(hass, config):
8074
tts_error = conf.get(CONF_TTS_ERROR)
8175
aliases = conf.get(CONF_ALIASES)
8276

83-
localize = LOCALIZE[lang] if lang in LOCALIZE.keys() else LOCALIZE['en']
77+
_LOGGER = logging.getLogger(__name__)
8478

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/"
8690
if tts_error and not os.path.exists(directory):
8791
os.makedirs(directory, mode=0o777)
8892

89-
get_chromecasts(blocking=False, callback=cc_callback,
90-
zeroconf_instance=PA.zeroconf)
93+
get_chromecasts(blocking=False, callback=cc_callback, zeroconf_instance=zc)
9194

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)
9699

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 []
111103

112104
def handle_input(call):
113105
if not call.data.get("command").strip():
@@ -118,14 +110,14 @@ def handle_input(call):
118110
_LOGGER.debug("Command: %s", command_string)
119111

120112
get_chromecasts(blocking=False, callback=cc_callback,
121-
zeroconf_instance=PA.zeroconf)
113+
zeroconf_instance=zc)
122114

123115
PA.clients = PA.server.clients()
124116
PA.client_names = [client.title for client in PA.clients]
125117
PA.client_ids = [client.machineIdentifier for client in PA.clients]
126118

127119
if localize["controls"]["update_sensor"] in command_string:
128-
update_sensor()
120+
update_sensor(hass)
129121
return
130122

131123
cast = None
@@ -137,22 +129,25 @@ def handle_input(call):
137129
PA.device_names = list(PA.devices.keys())
138130

139131
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"})
141133

142134
if PA.lib["updated"] < PA.plex.search(sort="addedAt:desc", limit=1)[0].addedAt:
143135
PA.lib = get_libraries(PA.plex)
144136

145137
devices = PA.device_names + PA.client_names + PA.client_ids
146138
device = fuzzy(command["device"] or default_cast, devices)
139+
147140
if aliases:
148141
alias = fuzzy(command["device"] or default_cast, PA.alias_names)
149142

150143
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+
)
156151
_LOGGER.debug("Device Score: %s", device[1])
157152
_LOGGER.debug("Devices: %s", str(devices))
158153

@@ -164,9 +159,11 @@ def handle_input(call):
164159
name = aliases[alias[0]] if alias[1] > device[1] else device[0]
165160
cast = PA.devices[name] if name in PA.device_names else name
166161
client = isinstance(cast, str)
162+
167163
if client:
168164
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+
)
170167
cast = client_device
171168

172169
if command["control"]:
@@ -192,21 +189,20 @@ def handle_input(call):
192189

193190
try:
194191
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"])
197194
except Exception:
198195
error = media_error(command, localize)
199196
if tts_error:
200197
tts = gTTS(error, lang=lang)
201-
tts.save(directory + 'error.mp3')
198+
tts.save(directory + "error.mp3")
202199
speech_error = True
203-
_LOGGER.warning(error)
204200

205201
if speech_error and not client:
206202
cast.wait()
207203
med_con = cast.media_controller
208204
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")
210206
med_con.block_until_active()
211207
return
212208

@@ -224,7 +220,25 @@ def handle_input(call):
224220
cast.wait()
225221
plex_c.block_until_playing(media)
226222

227-
update_sensor()
223+
update_sensor(hass)
228224

229-
hass.services.register(DOMAIN, "command", handle_input)
225+
hass.services.async_register(DOMAIN, "command", handle_input)
230226
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

Comments
 (0)