2024-10-09 11:01:53 -04:00
|
|
|
namespace Spotify;
|
|
|
|
|
|
|
|
using HomeAssistantGenerated;
|
|
|
|
using NetDaemon.AppModel;
|
|
|
|
using NetDaemon.HassModel;
|
|
|
|
using NetDaemon.HassModel.Integration;
|
2024-10-09 14:24:07 -04:00
|
|
|
using System;
|
2024-10-09 11:01:53 -04:00
|
|
|
using System.Text.Json;
|
|
|
|
|
|
|
|
record PlaySongData(string? artist, string? song);
|
|
|
|
|
|
|
|
[NetDaemonApp]
|
|
|
|
public class PlaySong
|
|
|
|
{
|
|
|
|
// Snake-case json options
|
|
|
|
private readonly JsonSerializerOptions _jsonOptions = new JsonSerializerOptions
|
|
|
|
{
|
|
|
|
PropertyNamingPolicy = JsonNamingPolicy.SnakeCaseLower
|
|
|
|
};
|
|
|
|
|
2024-10-31 20:07:05 -04:00
|
|
|
public PlaySong(IHaContext ha, Services services, Entities entities)
|
2024-10-09 11:01:53 -04:00
|
|
|
{
|
|
|
|
ha.RegisterServiceCallBack<PlaySongData>(
|
|
|
|
"spotify_play_song",
|
|
|
|
async (e) =>
|
|
|
|
{
|
2024-10-09 14:24:07 -04:00
|
|
|
try
|
|
|
|
{
|
2024-10-31 20:07:05 -04:00
|
|
|
var result = (await services.Spotifyplus.SearchTracksAsync(
|
|
|
|
criteria: $"{e?.artist} {e?.song}",
|
|
|
|
limitTotal: 1,
|
|
|
|
entityId: Global.DEFAULT_ENTITY_ID,
|
|
|
|
// My Defaults
|
|
|
|
market: "CA",
|
|
|
|
includeExternal: "audio"
|
2024-10-09 14:24:07 -04:00
|
|
|
)).Value.Deserialize<SpotifyplusSearchTracksResponse>(_jsonOptions);
|
2024-10-09 11:01:53 -04:00
|
|
|
|
2024-10-09 14:24:07 -04:00
|
|
|
string uri = result?.Result?.Items?[0]?.Uri ?? throw new NullReferenceException(
|
|
|
|
$"The song {e?.song}{(e?.artist is null ? "" : $" by {e?.artist}")} could not be found."
|
|
|
|
);
|
2024-10-09 11:01:53 -04:00
|
|
|
|
2024-10-31 20:07:05 -04:00
|
|
|
services.Spotifyplus.PlayerMediaPlayTracks(
|
|
|
|
uris: uri,
|
|
|
|
entityId: Global.DEFAULT_ENTITY_ID,
|
|
|
|
deviceId: Global.DEFAULT_DEV_ID,
|
|
|
|
// My Defaults
|
|
|
|
positionMs: 0,
|
|
|
|
delay: 0.50
|
2024-10-09 11:01:53 -04:00
|
|
|
);
|
|
|
|
}
|
2024-10-09 14:24:07 -04:00
|
|
|
catch (Exception error)
|
|
|
|
{
|
2024-10-31 20:07:05 -04:00
|
|
|
services.PersistentNotification.Create(
|
|
|
|
message: error.Message,
|
|
|
|
title: "Erreur Spotify");
|
2024-10-09 14:24:07 -04:00
|
|
|
}
|
2024-10-09 11:01:53 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|