1
1
import re
2
2
import time
3
3
import uuid
4
- import json
5
4
import pychromecast
6
5
7
- from fuzzywuzzy import fuzz
8
- from fuzzywuzzy import process
6
+ from rapidfuzz import fuzz , process
9
7
from gtts import gTTS
8
+ from json import JSONDecodeError , loads
10
9
from homeassistant .components .plex .services import get_plex_server
10
+ from homeassistant .exceptions import HomeAssistantError , ServiceNotFound
11
11
from homeassistant .core import Context
12
12
from pychromecast .controllers .plex import PlexController
13
13
16
16
17
17
def fuzzy (media , lib , scorer = fuzz .QRatio ):
18
18
if isinstance (lib , list ) and len (lib ) > 0 :
19
- return process .extractOne (media , lib , scorer = scorer )
19
+ return process .extractOne (media , lib , scorer = scorer ) or [ "" , 0 ]
20
20
return ["" , 0 ]
21
21
22
22
23
- def process_config_item (options , item_type ):
24
- item = options .get (item_type )
25
- if item :
26
- try :
27
- item = json .loads ("{" + item + "}" )
28
- for i in item .keys ():
29
- _LOGGER .debug (f"{ item_type } { i } : { item [i ]} " )
30
- except Exception :
31
- item = {}
32
- return item
33
- return {}
23
+ def process_config_item (options , option_type ):
24
+ option = options .get (option_type )
25
+ if not option :
26
+ return {}
27
+ try :
28
+ option = loads ("{" + option + "}" )
29
+ for i in option .keys ():
30
+ _LOGGER .debug (f"{ option_type } { i } : { option [i ]} " )
31
+ except (TypeError , AttributeError , KeyError , JSONDecodeError ):
32
+ _LOGGER .warning (f"There is a formatting error in the { option_type .replace ('_' , ' ' )} config." )
33
+ option = {}
34
+ return option
34
35
35
36
36
37
async def get_server (hass , config , server_name ):
37
38
try :
38
39
await hass .helpers .discovery .async_discover (None , None , "plex" , config )
39
40
return get_plex_server (hass , server_name )._plex_server
40
- except Exception as ex :
41
- if ex .args [0 ] == "No Plex servers available" :
42
- server_name_str = ", the server_name is correct," if server_name else ""
43
- _LOGGER .warning (
44
- "Plex Assistant: Plex server not found. Ensure that you've setup the HA "
45
- f"Plex integration{ server_name_str } and the server is reachable. "
46
- )
47
- else :
48
- template = "An exception of type {0} occurred. Arguments:\n {1!r}"
49
- message = template .format (type (ex ).__name__ , ex .args )
50
- _LOGGER .warning (message )
41
+ except HomeAssistantError as error :
42
+ server_name_str = ", the server_name is correct," if server_name else ""
43
+ _LOGGER .warning (
44
+ f"Plex Assistant: { error .args [0 ]} . Ensure that you've setup the HA "
45
+ f"Plex integration{ server_name_str } and the server is reachable. "
46
+ )
51
47
52
48
53
49
def get_devices (hass , pa ):
@@ -58,7 +54,7 @@ def get_devices(hass, pa):
58
54
continue
59
55
try :
60
56
name = hass .states .get (entity .entity_id ).attributes .get ("friendly_name" )
61
- except Exception :
57
+ except AttributeError :
62
58
continue
63
59
pa .devices [name ] = {"entity_id" : entity .entity_id , "device_type" : dev_type }
64
60
@@ -81,7 +77,7 @@ def ifttt_webhook_callback(event):
81
77
listener = hass .bus .async_listen ("ifttt_webhook_received" , ifttt_webhook_callback )
82
78
try :
83
79
await hass .services .async_call ("conversation" , "process" , {"text" : "tell plex to initialize_plex_intent" })
84
- except Exception :
80
+ except ServiceNotFound :
85
81
pass
86
82
return listener
87
83
@@ -253,14 +249,14 @@ def filter_media(pa, command, media, library):
253
249
media = unwatched if unwatched and not command ["random" ] else media .episodes ()[:30 ]
254
250
elif getattr (media , "TYPE" , None ) == "episode" :
255
251
episodes = media .show ().episodes ()
256
- episodes = episodes [episodes .index (media ): episodes .index (media ) + 30 ]
252
+ episodes = episodes [episodes .index (media ) : episodes .index (media ) + 30 ]
257
253
media = pa .server .createPlayQueue (episodes , shuffle = int (command ["random" ]))
258
254
elif getattr (media , "TYPE" , None ) in ["artist" , "album" ]:
259
255
tracks = media .tracks ()
260
256
media = pa .server .createPlayQueue (tracks , shuffle = int (command ["random" ]))
261
257
elif getattr (media , "TYPE" , None ) == "track" :
262
258
tracks = media .album ().tracks ()
263
- tracks = tracks [tracks .index (media ):]
259
+ tracks = tracks [tracks .index (media ) :]
264
260
media = pa .server .createPlayQueue (tracks , shuffle = int (command ["random" ]))
265
261
266
262
if getattr (media , "TYPE" , None ) != "playqueue" and media :
0 commit comments