2024-10-31 23:13:02 -04:00
|
|
|
using System;
|
|
|
|
using System.Reflection;
|
|
|
|
using System.Text.Json;
|
|
|
|
|
|
|
|
using HomeAssistantGenerated;
|
|
|
|
|
|
|
|
using NetDaemon.AppModel;
|
|
|
|
using NetDaemon.HassModel;
|
|
|
|
using NetDaemon.HassModel.Integration;
|
|
|
|
|
|
|
|
|
|
|
|
namespace NetDaemonConfig.Apps.Spotify.PlayArtist
|
|
|
|
{
|
2024-11-01 00:09:42 -04:00
|
|
|
public record PlayArtistData(string? artist);
|
2024-10-31 23:13:02 -04:00
|
|
|
|
|
|
|
[NetDaemonApp]
|
|
|
|
public class PlayArtist
|
|
|
|
{
|
|
|
|
// Snake-case json options
|
|
|
|
private readonly JsonSerializerOptions _jsonOptions = new()
|
|
|
|
{
|
|
|
|
PropertyNamingPolicy = JsonNamingPolicy.SnakeCaseLower
|
|
|
|
};
|
|
|
|
|
|
|
|
public PlayArtist(IHaContext ha, Services services)
|
|
|
|
{
|
|
|
|
ha.RegisterServiceCallBack<PlayArtistData>(
|
|
|
|
"spotify_play_artist",
|
|
|
|
async (e) =>
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
SpotifyplusSearchArtistsResponse? result = (
|
|
|
|
await services.Spotifyplus.SearchArtistsAsync(
|
2024-11-01 00:09:42 -04:00
|
|
|
criteria: e?.artist ?? throw new TargetException($"The artist {e?.artist} could not be found."),
|
2024-10-31 23:13:02 -04:00
|
|
|
limitTotal: 1,
|
|
|
|
entityId: SpotifyTypes.DefaultEntityId,
|
|
|
|
// My Defaults
|
|
|
|
market: "CA",
|
|
|
|
includeExternal: "audio"
|
|
|
|
)
|
|
|
|
).Value.Deserialize<SpotifyplusSearchArtistsResponse>(_jsonOptions);
|
|
|
|
|
|
|
|
string uri = result?.Result?.Items?[0]?.Uri ??
|
2024-11-01 00:09:42 -04:00
|
|
|
throw new TargetException($"The artist {e?.artist} could not be found.");
|
2024-10-31 23:13:02 -04:00
|
|
|
|
|
|
|
services.Spotifyplus.PlayerMediaPlayContext(
|
|
|
|
contextUri: uri,
|
|
|
|
entityId: SpotifyTypes.DefaultEntityId,
|
|
|
|
deviceId: SpotifyTypes.DefaultDevId,
|
|
|
|
// My Defaults
|
|
|
|
positionMs: 0,
|
|
|
|
delay: 0.50
|
|
|
|
);
|
|
|
|
}
|
|
|
|
catch (Exception error)
|
|
|
|
{
|
|
|
|
services.PersistentNotification.Create(
|
|
|
|
message: error.Message,
|
|
|
|
title: "Erreur Spotify");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|