music-assistant-client 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- music_assistant_client-1.0.0/LICENSE +201 -0
- music_assistant_client-1.0.0/PKG-INFO +27 -0
- music_assistant_client-1.0.0/README.md +3 -0
- music_assistant_client-1.0.0/music_assistant_client/__init__.py +3 -0
- music_assistant_client-1.0.0/music_assistant_client/client.py +396 -0
- music_assistant_client-1.0.0/music_assistant_client/config.py +235 -0
- music_assistant_client-1.0.0/music_assistant_client/connection.py +130 -0
- music_assistant_client-1.0.0/music_assistant_client/constants.py +5 -0
- music_assistant_client-1.0.0/music_assistant_client/exceptions.py +55 -0
- music_assistant_client-1.0.0/music_assistant_client/music.py +571 -0
- music_assistant_client-1.0.0/music_assistant_client/player_queues.py +251 -0
- music_assistant_client-1.0.0/music_assistant_client/players.py +213 -0
- music_assistant_client-1.0.0/music_assistant_client.egg-info/PKG-INFO +27 -0
- music_assistant_client-1.0.0/music_assistant_client.egg-info/SOURCES.txt +18 -0
- music_assistant_client-1.0.0/music_assistant_client.egg-info/dependency_links.txt +1 -0
- music_assistant_client-1.0.0/music_assistant_client.egg-info/not-zip-safe +1 -0
- music_assistant_client-1.0.0/music_assistant_client.egg-info/requires.txt +11 -0
- music_assistant_client-1.0.0/music_assistant_client.egg-info/top_level.txt +1 -0
- music_assistant_client-1.0.0/pyproject.toml +145 -0
- music_assistant_client-1.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: music_assistant_client
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Music Assistant Base Models
|
|
5
|
+
Author-email: The Music Assistant Authors <music_assistant@users.noreply.github.com>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Platform: any
|
|
8
|
+
Classifier: Environment :: Console
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Requires-Python: >=3.11
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: aiohttp>3.10
|
|
15
|
+
Requires-Dist: music_assistant_models==1.0.0
|
|
16
|
+
Provides-Extra: test
|
|
17
|
+
Requires-Dist: codespell==2.3.0; extra == "test"
|
|
18
|
+
Requires-Dist: isort==5.13.2; extra == "test"
|
|
19
|
+
Requires-Dist: mypy==1.13.0; extra == "test"
|
|
20
|
+
Requires-Dist: pre-commit==4.0.1; extra == "test"
|
|
21
|
+
Requires-Dist: pre-commit-hooks==5.0.0; extra == "test"
|
|
22
|
+
Requires-Dist: tomli==2.0.2; extra == "test"
|
|
23
|
+
Requires-Dist: ruff==0.7.1; extra == "test"
|
|
24
|
+
|
|
25
|
+
# Music Assistant Client
|
|
26
|
+
|
|
27
|
+
Python client to interact with the Music Assistant Server API
|
|
@@ -0,0 +1,396 @@
|
|
|
1
|
+
"""Music Assistant Client: Manage a Music Assistant server remotely."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import asyncio
|
|
6
|
+
import logging
|
|
7
|
+
import urllib.parse
|
|
8
|
+
import uuid
|
|
9
|
+
from collections.abc import Callable, Coroutine
|
|
10
|
+
from typing import TYPE_CHECKING, Any, Self
|
|
11
|
+
|
|
12
|
+
from music_assistant_models.api import (
|
|
13
|
+
CommandMessage,
|
|
14
|
+
ErrorResultMessage,
|
|
15
|
+
EventMessage,
|
|
16
|
+
ResultMessageBase,
|
|
17
|
+
ServerInfoMessage,
|
|
18
|
+
SuccessResultMessage,
|
|
19
|
+
parse_message,
|
|
20
|
+
)
|
|
21
|
+
from music_assistant_models.enums import EventType, ImageType
|
|
22
|
+
from music_assistant_models.errors import ERROR_MAP
|
|
23
|
+
from music_assistant_models.event import MassEvent
|
|
24
|
+
from music_assistant_models.provider import ProviderInstance, ProviderManifest
|
|
25
|
+
|
|
26
|
+
from .config import Config
|
|
27
|
+
from .connection import WebsocketsConnection
|
|
28
|
+
from .constants import API_SCHEMA_VERSION
|
|
29
|
+
from .exceptions import ConnectionClosed, InvalidServerVersion, InvalidState
|
|
30
|
+
from .music import Music
|
|
31
|
+
from .player_queues import PlayerQueues
|
|
32
|
+
from .players import Players
|
|
33
|
+
|
|
34
|
+
if TYPE_CHECKING:
|
|
35
|
+
from types import TracebackType
|
|
36
|
+
|
|
37
|
+
from aiohttp import ClientSession
|
|
38
|
+
from music_assistant_models.media_items import ItemMapping, MediaItemImage, MediaItemType
|
|
39
|
+
from music_assistant_models.queue_item import QueueItem
|
|
40
|
+
|
|
41
|
+
EventCallBackType = Callable[[MassEvent], Coroutine[Any, Any, None] | None]
|
|
42
|
+
EventSubscriptionType = tuple[
|
|
43
|
+
EventCallBackType, tuple[EventType, ...] | None, tuple[str, ...] | None
|
|
44
|
+
]
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
class MusicAssistantClient:
|
|
48
|
+
"""Manage a Music Assistant server remotely."""
|
|
49
|
+
|
|
50
|
+
def __init__(self, server_url: str, aiohttp_session: ClientSession | None) -> None:
|
|
51
|
+
"""Initialize the Music Assistant client."""
|
|
52
|
+
self.server_url = server_url
|
|
53
|
+
self.connection = WebsocketsConnection(server_url, aiohttp_session)
|
|
54
|
+
self.logger = logging.getLogger(__package__)
|
|
55
|
+
self._result_futures: dict[str | int, asyncio.Future[Any]] = {}
|
|
56
|
+
self._subscribers: list[EventSubscriptionType] = []
|
|
57
|
+
self._stop_called: bool = False
|
|
58
|
+
self._loop: asyncio.AbstractEventLoop | None = None
|
|
59
|
+
self._config = Config(self)
|
|
60
|
+
self._players = Players(self)
|
|
61
|
+
self._player_queues = PlayerQueues(self)
|
|
62
|
+
self._music = Music(self)
|
|
63
|
+
# below items are retrieved after connect
|
|
64
|
+
self._server_info: ServerInfoMessage | None = None
|
|
65
|
+
self._provider_manifests: dict[str, ProviderManifest] = {}
|
|
66
|
+
self._providers: dict[str, ProviderInstance] = {}
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
def server_info(self) -> ServerInfoMessage | None:
|
|
70
|
+
"""Return info of the server we're currently connected to."""
|
|
71
|
+
return self._server_info
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
def providers(self) -> list[ProviderInstance]:
|
|
75
|
+
"""Return all loaded/running Providers (instances)."""
|
|
76
|
+
return list(self._providers.values())
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
def provider_manifests(self) -> list[ProviderManifest]:
|
|
80
|
+
"""Return all Provider manifests."""
|
|
81
|
+
return list(self._provider_manifests.values())
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
def config(self) -> Config:
|
|
85
|
+
"""Return Config handler."""
|
|
86
|
+
return self._config
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
def players(self) -> Players:
|
|
90
|
+
"""Return Players handler."""
|
|
91
|
+
return self._players
|
|
92
|
+
|
|
93
|
+
@property
|
|
94
|
+
def player_queues(self) -> PlayerQueues:
|
|
95
|
+
"""Return PlayerQueues handler."""
|
|
96
|
+
return self._player_queues
|
|
97
|
+
|
|
98
|
+
@property
|
|
99
|
+
def music(self) -> Music:
|
|
100
|
+
"""Return Music handler."""
|
|
101
|
+
return self._music
|
|
102
|
+
|
|
103
|
+
def get_provider_manifest(self, domain: str) -> ProviderManifest:
|
|
104
|
+
"""Return Provider manifests of single provider(domain)."""
|
|
105
|
+
return self._provider_manifests[domain]
|
|
106
|
+
|
|
107
|
+
def get_provider(
|
|
108
|
+
self, provider_instance_or_domain: str, return_unavailable: bool = False
|
|
109
|
+
) -> ProviderInstance | None:
|
|
110
|
+
"""Return provider by instance id or domain."""
|
|
111
|
+
# lookup by instance_id first
|
|
112
|
+
if prov := self._providers.get(provider_instance_or_domain):
|
|
113
|
+
if return_unavailable or prov.available:
|
|
114
|
+
return prov
|
|
115
|
+
if not prov.is_streaming_provider:
|
|
116
|
+
# no need to lookup other instances because this provider has unique data
|
|
117
|
+
return None
|
|
118
|
+
provider_instance_or_domain = prov.domain
|
|
119
|
+
# fallback to match on domain
|
|
120
|
+
# note that this can be tricky if the provider has multiple instances
|
|
121
|
+
# and has unique data (e.g. filesystem)
|
|
122
|
+
for prov in self._providers.values():
|
|
123
|
+
if prov.domain != provider_instance_or_domain:
|
|
124
|
+
continue
|
|
125
|
+
if return_unavailable or prov.available:
|
|
126
|
+
return prov
|
|
127
|
+
self.logger.debug("Provider %s is not available", provider_instance_or_domain)
|
|
128
|
+
return None
|
|
129
|
+
|
|
130
|
+
def get_image_url(self, image: MediaItemImage, size: int = 0) -> str:
|
|
131
|
+
"""Get (proxied) URL for MediaItemImage."""
|
|
132
|
+
assert self.server_info
|
|
133
|
+
if image.remotely_accessible and not size:
|
|
134
|
+
return image.path
|
|
135
|
+
if image.remotely_accessible and size:
|
|
136
|
+
# get url to resized image(thumb) from weserv service
|
|
137
|
+
return (
|
|
138
|
+
f"https://images.weserv.nl/?url={urllib.parse.quote(image.path)}"
|
|
139
|
+
f"&w=${size}&h=${size}&fit=cover&a=attention"
|
|
140
|
+
)
|
|
141
|
+
# return imageproxy url for images that need to be resolved
|
|
142
|
+
# the original path is double encoded
|
|
143
|
+
encoded_url = urllib.parse.quote(urllib.parse.quote(image.path))
|
|
144
|
+
return (
|
|
145
|
+
f"{self.server_info.base_url}/imageproxy?path={encoded_url}"
|
|
146
|
+
f"&provider={image.provider}&size={size}"
|
|
147
|
+
)
|
|
148
|
+
|
|
149
|
+
def get_media_item_image_url(
|
|
150
|
+
self,
|
|
151
|
+
item: MediaItemType | ItemMapping | QueueItem,
|
|
152
|
+
type: ImageType = ImageType.THUMB, # noqa: A002
|
|
153
|
+
size: int = 0,
|
|
154
|
+
) -> str | None:
|
|
155
|
+
"""Get image URL for MediaItem, QueueItem or ItemMapping."""
|
|
156
|
+
# handle queueitem with media_item attribute
|
|
157
|
+
if (media_item := getattr(item, "media_item", None)) and (
|
|
158
|
+
img := self.music.get_media_item_image(media_item, type)
|
|
159
|
+
):
|
|
160
|
+
return self.get_image_url(img, size)
|
|
161
|
+
if img := self.music.get_media_item_image(item, type):
|
|
162
|
+
return self.get_image_url(img, size)
|
|
163
|
+
return None
|
|
164
|
+
|
|
165
|
+
def subscribe(
|
|
166
|
+
self,
|
|
167
|
+
cb_func: EventCallBackType,
|
|
168
|
+
event_filter: EventType | tuple[EventType, ...] | None = None,
|
|
169
|
+
id_filter: str | tuple[str, ...] | None = None,
|
|
170
|
+
) -> Callable[[], None]:
|
|
171
|
+
"""Add callback to event listeners.
|
|
172
|
+
|
|
173
|
+
Returns function to remove the listener.
|
|
174
|
+
:param cb_func: callback function or coroutine
|
|
175
|
+
:param event_filter: Optionally only listen for these events
|
|
176
|
+
:param id_filter: Optionally only listen for these id's (player_id, queue_id, uri)
|
|
177
|
+
"""
|
|
178
|
+
if isinstance(event_filter, EventType):
|
|
179
|
+
event_filter = (event_filter,)
|
|
180
|
+
if isinstance(id_filter, str):
|
|
181
|
+
id_filter = (id_filter,)
|
|
182
|
+
listener = (cb_func, event_filter, id_filter)
|
|
183
|
+
self._subscribers.append(listener)
|
|
184
|
+
|
|
185
|
+
def remove_listener() -> None:
|
|
186
|
+
self._subscribers.remove(listener)
|
|
187
|
+
|
|
188
|
+
return remove_listener
|
|
189
|
+
|
|
190
|
+
async def connect(self) -> None:
|
|
191
|
+
"""Connect to the remote Music Assistant Server."""
|
|
192
|
+
self._loop = asyncio.get_running_loop()
|
|
193
|
+
if self.connection.connected:
|
|
194
|
+
# already connected
|
|
195
|
+
return
|
|
196
|
+
# NOTE: connect will raise when connecting failed
|
|
197
|
+
result = await self.connection.connect()
|
|
198
|
+
info = ServerInfoMessage.from_dict(result)
|
|
199
|
+
|
|
200
|
+
# basic check for server schema version compatibility
|
|
201
|
+
if info.min_supported_schema_version > API_SCHEMA_VERSION:
|
|
202
|
+
# our schema version is too low and can't be handled by the server anymore.
|
|
203
|
+
await self.connection.disconnect()
|
|
204
|
+
msg = (
|
|
205
|
+
f"Schema version is incompatible: {info.schema_version}, "
|
|
206
|
+
f"the server requires at least {info.min_supported_schema_version} "
|
|
207
|
+
" - update the Music Assistant client to a more "
|
|
208
|
+
"recent version or downgrade the server."
|
|
209
|
+
)
|
|
210
|
+
raise InvalidServerVersion(msg)
|
|
211
|
+
|
|
212
|
+
self._server_info = info
|
|
213
|
+
|
|
214
|
+
self.logger.info(
|
|
215
|
+
"Connected to Music Assistant Server %s, Version %s, Schema Version %s",
|
|
216
|
+
info.server_id,
|
|
217
|
+
info.server_version,
|
|
218
|
+
info.schema_version,
|
|
219
|
+
)
|
|
220
|
+
|
|
221
|
+
async def send_command(
|
|
222
|
+
self,
|
|
223
|
+
command: str,
|
|
224
|
+
require_schema: int | None = None,
|
|
225
|
+
**kwargs: Any,
|
|
226
|
+
) -> Any:
|
|
227
|
+
"""Send a command and get a response."""
|
|
228
|
+
if not self.connection.connected or not self._loop:
|
|
229
|
+
msg = "Not connected"
|
|
230
|
+
raise InvalidState(msg)
|
|
231
|
+
|
|
232
|
+
if (
|
|
233
|
+
require_schema is not None
|
|
234
|
+
and self.server_info is not None
|
|
235
|
+
and require_schema > self.server_info.schema_version
|
|
236
|
+
):
|
|
237
|
+
msg = (
|
|
238
|
+
"Command not available due to incompatible server version. Update the Music "
|
|
239
|
+
f"Assistant Server to a version that supports at least api schema {require_schema}."
|
|
240
|
+
)
|
|
241
|
+
raise InvalidServerVersion(msg)
|
|
242
|
+
|
|
243
|
+
command_message = CommandMessage(
|
|
244
|
+
message_id=uuid.uuid4().hex,
|
|
245
|
+
command=command,
|
|
246
|
+
args=kwargs,
|
|
247
|
+
)
|
|
248
|
+
future: asyncio.Future[Any] = self._loop.create_future()
|
|
249
|
+
self._result_futures[command_message.message_id] = future
|
|
250
|
+
await self.connection.send_message(command_message.to_dict())
|
|
251
|
+
try:
|
|
252
|
+
return await future
|
|
253
|
+
finally:
|
|
254
|
+
self._result_futures.pop(command_message.message_id)
|
|
255
|
+
|
|
256
|
+
async def send_command_no_wait(
|
|
257
|
+
self,
|
|
258
|
+
command: str,
|
|
259
|
+
require_schema: int | None = None,
|
|
260
|
+
**kwargs: Any,
|
|
261
|
+
) -> None:
|
|
262
|
+
"""Send a command without waiting for the response."""
|
|
263
|
+
if not self.server_info:
|
|
264
|
+
msg = "Not connected"
|
|
265
|
+
raise InvalidState(msg)
|
|
266
|
+
|
|
267
|
+
if require_schema is not None and require_schema > self.server_info.schema_version:
|
|
268
|
+
msg = (
|
|
269
|
+
"Command not available due to incompatible server version. Update the Music "
|
|
270
|
+
f"Assistant Server to a version that supports at least api schema {require_schema}."
|
|
271
|
+
)
|
|
272
|
+
raise InvalidServerVersion(msg)
|
|
273
|
+
command_message = CommandMessage(
|
|
274
|
+
message_id=uuid.uuid4().hex,
|
|
275
|
+
command=command,
|
|
276
|
+
args=kwargs,
|
|
277
|
+
)
|
|
278
|
+
await self.connection.send_message(command_message.to_dict())
|
|
279
|
+
|
|
280
|
+
async def start_listening(self, init_ready: asyncio.Event | None = None) -> None:
|
|
281
|
+
"""Connect (if needed) and start listening to incoming messages from the server."""
|
|
282
|
+
await self.connect()
|
|
283
|
+
|
|
284
|
+
# fetch initial state
|
|
285
|
+
# we do this in a separate task to not block reading messages
|
|
286
|
+
async def fetch_initial_state() -> None:
|
|
287
|
+
self._providers = {
|
|
288
|
+
x["instance_id"]: ProviderInstance.from_dict(x)
|
|
289
|
+
for x in await self.send_command("providers")
|
|
290
|
+
}
|
|
291
|
+
self._provider_manifests = {
|
|
292
|
+
x["domain"]: ProviderManifest.from_dict(x)
|
|
293
|
+
for x in await self.send_command("providers/manifests")
|
|
294
|
+
}
|
|
295
|
+
await self._player_queues.fetch_state()
|
|
296
|
+
await self._players.fetch_state()
|
|
297
|
+
|
|
298
|
+
if init_ready is not None:
|
|
299
|
+
init_ready.set()
|
|
300
|
+
|
|
301
|
+
fetch_state_task = asyncio.create_task(fetch_initial_state())
|
|
302
|
+
|
|
303
|
+
try:
|
|
304
|
+
# keep reading incoming messages
|
|
305
|
+
while not self._stop_called:
|
|
306
|
+
msg = await self.connection.receive_message()
|
|
307
|
+
self._handle_incoming_message(msg)
|
|
308
|
+
except ConnectionClosed:
|
|
309
|
+
pass
|
|
310
|
+
finally:
|
|
311
|
+
fetch_state_task.cancel()
|
|
312
|
+
await self.disconnect()
|
|
313
|
+
|
|
314
|
+
async def disconnect(self) -> None:
|
|
315
|
+
"""Disconnect the client and cleanup."""
|
|
316
|
+
self._stop_called = True
|
|
317
|
+
# cancel all command-tasks awaiting a result
|
|
318
|
+
for future in self._result_futures.values():
|
|
319
|
+
future.cancel()
|
|
320
|
+
await self.connection.disconnect()
|
|
321
|
+
|
|
322
|
+
def _handle_incoming_message(self, raw: dict[str, Any]) -> None:
|
|
323
|
+
"""
|
|
324
|
+
Handle incoming message.
|
|
325
|
+
|
|
326
|
+
Run all async tasks in a wrapper to log appropriately.
|
|
327
|
+
"""
|
|
328
|
+
msg = parse_message(raw)
|
|
329
|
+
# handle result message
|
|
330
|
+
if isinstance(msg, ResultMessageBase):
|
|
331
|
+
future = self._result_futures.get(msg.message_id)
|
|
332
|
+
|
|
333
|
+
if future is None:
|
|
334
|
+
# no listener for this result
|
|
335
|
+
return
|
|
336
|
+
if isinstance(msg, SuccessResultMessage):
|
|
337
|
+
future.set_result(msg.result)
|
|
338
|
+
return
|
|
339
|
+
if isinstance(msg, ErrorResultMessage):
|
|
340
|
+
exc = ERROR_MAP[msg.error_code]
|
|
341
|
+
future.set_exception(exc(msg.details))
|
|
342
|
+
return
|
|
343
|
+
|
|
344
|
+
# handle EventMessage
|
|
345
|
+
if isinstance(msg, EventMessage):
|
|
346
|
+
self.logger.debug("Received event: %s", msg)
|
|
347
|
+
self._handle_event(msg)
|
|
348
|
+
return
|
|
349
|
+
|
|
350
|
+
# Log anything we can't handle here
|
|
351
|
+
self.logger.debug(
|
|
352
|
+
"Received message with unknown type '%s': %s",
|
|
353
|
+
type(msg),
|
|
354
|
+
msg,
|
|
355
|
+
)
|
|
356
|
+
|
|
357
|
+
def _handle_event(self, event: MassEvent) -> None:
|
|
358
|
+
"""Forward event to subscribers."""
|
|
359
|
+
if self._stop_called:
|
|
360
|
+
return
|
|
361
|
+
|
|
362
|
+
assert self._loop
|
|
363
|
+
|
|
364
|
+
if event.event == EventType.PROVIDERS_UPDATED:
|
|
365
|
+
self._providers = {x["instance_id"]: ProviderInstance.from_dict(x) for x in event.data}
|
|
366
|
+
|
|
367
|
+
for cb_func, event_filter, id_filter in self._subscribers:
|
|
368
|
+
if not (event_filter is None or event.event in event_filter):
|
|
369
|
+
continue
|
|
370
|
+
if not (id_filter is None or event.object_id in id_filter):
|
|
371
|
+
continue
|
|
372
|
+
if asyncio.iscoroutinefunction(cb_func):
|
|
373
|
+
asyncio.run_coroutine_threadsafe(cb_func(event), self._loop)
|
|
374
|
+
else:
|
|
375
|
+
self._loop.call_soon_threadsafe(cb_func, event)
|
|
376
|
+
|
|
377
|
+
async def __aenter__(self) -> Self:
|
|
378
|
+
"""Initialize and connect the connection to the Music Assistant Server."""
|
|
379
|
+
await self.connect()
|
|
380
|
+
return self
|
|
381
|
+
|
|
382
|
+
async def __aexit__(
|
|
383
|
+
self,
|
|
384
|
+
exc_type: type[BaseException] | None,
|
|
385
|
+
exc_val: BaseException | None,
|
|
386
|
+
exc_tb: TracebackType | None,
|
|
387
|
+
) -> bool | None:
|
|
388
|
+
"""Exit context manager."""
|
|
389
|
+
await self.disconnect()
|
|
390
|
+
return None
|
|
391
|
+
|
|
392
|
+
def __repr__(self) -> str:
|
|
393
|
+
"""Return the representation."""
|
|
394
|
+
conn_type = self.connection.__class__.__name__
|
|
395
|
+
prefix = "" if self.connection.connected else "not "
|
|
396
|
+
return f"{type(self).__name__}(connection={conn_type}, {prefix}connected)"
|