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

Commit 247c907

Browse files
committed
dev to master
1 parent 6f070d3 commit 247c907

File tree

4 files changed

+62
-38
lines changed

4 files changed

+62
-38
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ plex_assistant:
5959

6060
## Companion Sensor
6161

62-
Plex Assistant includes a sensor to display the names of currently connected devices as well as the machine ID of Plex clients (updates once a minute). This is to help with config and troubleshooting. It is advisable to remove the sensor when not needed to cut down on API calls. To use the sensor add the code below to configuration.yaml:
62+
Plex Assistant includes a sensor to display the names of currently connected devices as well as the machine ID of Plex clients. This is to help with config and troubleshooting. To update the sensor send the command "update sensor" to Plex Assistant either through Google Assistant or as a HA service call.
6363

6464
```
6565
sensor:

custom_components/plex_assistant/__init__.py

+54-30
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ class PA:
4444
client_sensor = []
4545
alias_names = []
4646
attr_update = True
47-
running = False
4847

4948

5049
def setup(hass, config):
@@ -86,25 +85,46 @@ def setup(hass, config):
8685
PA.lib = get_libraries(PA.plex)
8786
PA.alias_names = list(aliases.keys()) if aliases else []
8887

88+
def update_sensor():
89+
clients = [{client.title: {"ID": client.machineIdentifier,
90+
"type": client.product}} for client in PA.clients]
91+
devicelist = list(PA.devices.keys())
92+
state = str(len(devicelist + clients)) + ' connected devices.'
93+
attributes = {
94+
"Connected Devices": {
95+
'Cast Devices': devicelist or 'None',
96+
'Plex Clients': clients or 'None'
97+
},
98+
"friendly_name": "Plex Assistant Devices",
99+
}
100+
sensor = "sensor.plex_assistant_devices"
101+
hass.states.async_set(sensor, state, attributes)
102+
89103
def handle_input(call):
90-
if not call.data.get("command").strip():
104+
command_string = call.data.get("command").strip().lower()
105+
106+
if not command_string:
91107
_LOGGER.warning(localize["no_call"])
92108
return
93109

94-
PA.running = True
95-
PA.attr_update = True
96-
get_chromecasts(blocking=True, callback=cc_callback)
110+
chromecasts = get_chromecasts()
111+
for chromecast in chromecasts:
112+
PA.devices[chromecast.device.friendly_name] = chromecast
113+
114+
PA.clients = PA.server.clients()
115+
PA.client_names = [client.title for client in PA.clients]
116+
PA.client_ids = [client.machineIdentifier for client in PA.clients]
117+
118+
if localize["controls"]["update_sensor"] in command_string:
119+
update_sensor()
120+
return
97121

98122
cast = None
123+
alias = ["", 0]
99124
client = False
100125
speech_error = False
101126

102-
command = process_speech(
103-
call.data.get("command").lower(),
104-
localize,
105-
default_cast,
106-
PA
107-
)
127+
command = process_speech(command_string, localize, default_cast, PA)
108128

109129
if not command["control"]:
110130
_LOGGER.debug({i: command[i] for i in command if i != 'library'})
@@ -113,34 +133,38 @@ def handle_input(call):
113133
PA.lib = get_libraries(PA.plex)
114134

115135
PA.device_names = list(PA.devices.keys())
116-
117-
try:
118-
devices = PA.device_names + PA.client_names + PA.client_ids
119-
device = fuzzy(command["device"] or default_cast, devices)
136+
devices = PA.device_names + PA.client_names + PA.client_ids
137+
device = fuzzy(command["device"] or default_cast, devices)
138+
if aliases:
120139
alias = fuzzy(command["device"] or default_cast, PA.alias_names)
121-
if alias[1] < 75 and device[1] < 75:
122-
raise Exception()
123-
name = aliases[alias[0]] if alias[1] > device[1] else device[0]
124-
cast = PA.devices[name] if name in PA.device_names else name
125-
client = isinstance(cast, str)
126-
if client:
127-
client_device = next(
128-
c for c in PA.clients if c.title == cast or c.machineIdentifier == cast)
129-
cast = client_device
130-
except Exception:
131-
error = "{0} {1}: \"{2}\"".format(
140+
141+
if alias[1] < 60 and device[1] < 60:
142+
_LOGGER.warning("{0} {1}: \"{2}\"".format(
132143
localize["cast_device"].capitalize(),
133144
localize["not_found"],
134145
command["device"].title()
135-
)
136-
_LOGGER.warning(error)
146+
))
147+
_LOGGER.debug("Device Score: %s", device[1])
148+
_LOGGER.debug("Devices: %s", str(devices))
149+
150+
if aliases:
151+
_LOGGER.debug("Alias Score: %s", alias[1])
152+
_LOGGER.debug("Aliases: %s", str(PA.alias_names))
137153
return
138154

155+
name = aliases[alias[0]] if alias[1] > device[1] else device[0]
156+
cast = PA.devices[name] if name in PA.device_names else name
157+
client = isinstance(cast, str)
158+
if client:
159+
client_device = next(
160+
c for c in PA.clients if c.title == cast or c.machineIdentifier == cast)
161+
cast = client_device
162+
139163
if command["control"]:
140164
control = command["control"]
141165
if client:
142166
cast.proxyThroughServer()
143-
plex_c = PA.server.client(cast)
167+
plex_c = PA.server.client(cast.title)
144168
else:
145169
plex_c = PlexController()
146170
cast.wait()
@@ -197,7 +221,7 @@ def handle_input(call):
197221
cast.wait()
198222
play_media(float(delay), cast, plex_c, media)
199223

200-
PA.running = False
224+
update_sensor()
201225

202226
hass.services.register(DOMAIN, "command", handle_input)
203227
return True

custom_components/plex_assistant/localize.py

+6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"stop": "stop",
2020
"jump_forward": "jump forward",
2121
"jump_back": "jump back",
22+
"update_sensor": "update sensor",
2223
},
2324

2425
# Text for errors
@@ -183,6 +184,7 @@
183184
"stop": "sluta",
184185
"jump_forward": "hoppa framåt",
185186
"jump_back": "hoppa tillbaka",
187+
"update_sensor": "update sensor",
186188
},
187189
"no_call": "Inget kommando mottogs.",
188190

@@ -297,6 +299,7 @@
297299
"stop": "stop",
298300
"jump_forward": "spring naar voren",
299301
"jump_back": "spring naar achter",
302+
"update_sensor": "update sensor",
300303
},
301304

302305
"not_found": "niet gevonden",
@@ -426,6 +429,7 @@
426429
"stop": "interrompi",
427430
"jump_forward": "vai avanti",
428431
"jump_back": "vai indietro",
432+
"update_sensor": "update sensor",
429433
},
430434

431435
"not_found": "non trovato",
@@ -566,6 +570,7 @@
566570
"stop": "arrête",
567571
"jump_forward": "avance",
568572
"jump_back": "recule",
573+
"update_sensor": "update sensor",
569574
},
570575
"not_found": "je n'ai pas trouvé",
571576
"cast_device": "sur",
@@ -781,6 +786,7 @@
781786
"stop": "stop",
782787
"jump_forward": "para a frente",
783788
"jump_back": "para trás",
789+
"update_sensor": "update sensor",
784790
},
785791

786792
"not_found": "não encontrado",

custom_components/plex_assistant/sensor.py

+1-7
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
import time
1616
from .helpers import cc_callback
1717

18-
SCAN_INTERVAL = timedelta(minutes=1)
19-
2018

2119
def setup_platform(hass, config, add_devices, discovery_info=None):
2220
name = "Plex Assistant Devices"
@@ -42,11 +40,7 @@ def state(self):
4240
def device_state_attributes(self):
4341
return self._attributes
4442

45-
async def async_update(self):
46-
if not PA.running:
47-
PA.attr_update = True
48-
get_chromecasts(blocking=False, callback=cc_callback)
49-
time.sleep(5)
43+
def update(self):
5044
clients = [{client.title: {"ID": client.machineIdentifier,
5145
"type": client.product}} for client in PA.clients]
5246
devicelist = list(PA.devices.keys())

0 commit comments

Comments
 (0)