From a138f3a5eae4ac9843735a341fab41ab67351e0b Mon Sep 17 00:00:00 2001 From: matt1432 Date: Fri, 1 Nov 2024 00:09:42 -0400 Subject: [PATCH] fix(netd): change data props to lowercase --- .../homie/modules/home-assistant/netdaemon/.editorconfig | 2 +- .../netdaemon/apps/Spotify/PlayAlbum/PlayAlbum.cs | 6 +++--- .../netdaemon/apps/Spotify/PlayArtist/PlayArtist.cs | 6 +++--- .../netdaemon/apps/Spotify/PlayPlaylist/PlayPlaylist.cs | 4 ++-- .../netdaemon/apps/Spotify/PlaySong/PlaySong.cs | 6 +++--- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/devices/homie/modules/home-assistant/netdaemon/.editorconfig b/devices/homie/modules/home-assistant/netdaemon/.editorconfig index 2e1b7d21..a844f856 100644 --- a/devices/homie/modules/home-assistant/netdaemon/.editorconfig +++ b/devices/homie/modules/home-assistant/netdaemon/.editorconfig @@ -188,7 +188,7 @@ dotnet_naming_rule.methods_should_be_pascalcase.severity = suggestion dotnet_naming_rule.methods_should_be_pascalcase.symbols = methods dotnet_naming_rule.methods_should_be_pascalcase.style = pascalcase -dotnet_naming_rule.properties_should_be_pascalcase.severity = suggestion +dotnet_naming_rule.properties_should_be_pascalcase.severity = none dotnet_naming_rule.properties_should_be_pascalcase.symbols = properties dotnet_naming_rule.properties_should_be_pascalcase.style = pascalcase diff --git a/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayAlbum/PlayAlbum.cs b/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayAlbum/PlayAlbum.cs index 89f8df4c..69315470 100644 --- a/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayAlbum/PlayAlbum.cs +++ b/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayAlbum/PlayAlbum.cs @@ -11,7 +11,7 @@ using NetDaemon.HassModel.Integration; namespace NetDaemonConfig.Apps.Spotify.PlayAlbum { - public record PlayAlbumData(string? Artist, string? Album); + public record PlayAlbumData(string? artist, string? album); [NetDaemonApp] public class PlayAlbum @@ -32,7 +32,7 @@ namespace NetDaemonConfig.Apps.Spotify.PlayAlbum { SpotifyplusSearchAlbumsResponse? result = ( await services.Spotifyplus.SearchAlbumsAsync( - criteria: $"{e?.Artist} {e?.Album}", + criteria: $"{e?.artist} {e?.album}", limitTotal: 1, entityId: SpotifyTypes.DefaultEntityId, // My Defaults @@ -43,7 +43,7 @@ namespace NetDaemonConfig.Apps.Spotify.PlayAlbum string uri = result?.Result?.Items?[0]?.Uri ?? throw new TargetException( - $"The album {e?.Album}{(e?.Artist is null ? "" : $" by {e?.Artist}")} could not be found." + $"The album {e?.album}{(e?.artist is null ? "" : $" by {e?.artist}")} could not be found." ); services.Spotifyplus.PlayerMediaPlayContext( diff --git a/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayArtist/PlayArtist.cs b/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayArtist/PlayArtist.cs index 5f1864e6..f17782bf 100644 --- a/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayArtist/PlayArtist.cs +++ b/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayArtist/PlayArtist.cs @@ -11,7 +11,7 @@ using NetDaemon.HassModel.Integration; namespace NetDaemonConfig.Apps.Spotify.PlayArtist { - public record PlayArtistData(string? Artist); + public record PlayArtistData(string? artist); [NetDaemonApp] public class PlayArtist @@ -32,7 +32,7 @@ namespace NetDaemonConfig.Apps.Spotify.PlayArtist { SpotifyplusSearchArtistsResponse? result = ( await services.Spotifyplus.SearchArtistsAsync( - criteria: e?.Artist ?? throw new TargetException($"The artist {e?.Artist} could not be found."), + criteria: e?.artist ?? throw new TargetException($"The artist {e?.artist} could not be found."), limitTotal: 1, entityId: SpotifyTypes.DefaultEntityId, // My Defaults @@ -42,7 +42,7 @@ namespace NetDaemonConfig.Apps.Spotify.PlayArtist ).Value.Deserialize(_jsonOptions); string uri = result?.Result?.Items?[0]?.Uri ?? - throw new TargetException($"The artist {e?.Artist} could not be found."); + throw new TargetException($"The artist {e?.artist} could not be found."); services.Spotifyplus.PlayerMediaPlayContext( contextUri: uri, diff --git a/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayPlaylist/PlayPlaylist.cs b/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayPlaylist/PlayPlaylist.cs index f899b7b6..e6519e78 100644 --- a/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayPlaylist/PlayPlaylist.cs +++ b/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayPlaylist/PlayPlaylist.cs @@ -16,7 +16,7 @@ using NetDaemon.HassModel.Integration; namespace NetDaemonConfig.Apps.Spotify.PlayPlaylist { - public record PlayPlaylistData(string? Playlist); + public record PlayPlaylistData(string? playlist); [NetDaemonApp] public class PlayPlaylist @@ -37,7 +37,7 @@ namespace NetDaemonConfig.Apps.Spotify.PlayPlaylist { try { - string query = e?.Playlist ?? throw new TargetException("Query not found."); + string query = e?.playlist ?? throw new TargetException("Query not found."); SpotifyplusPlaylistResponse? result = ( await services.Spotifyplus.GetPlaylistFavoritesAsync( diff --git a/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlaySong/PlaySong.cs b/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlaySong/PlaySong.cs index d2f78467..82c6edb4 100644 --- a/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlaySong/PlaySong.cs +++ b/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlaySong/PlaySong.cs @@ -11,7 +11,7 @@ using NetDaemon.HassModel.Integration; namespace NetDaemonConfig.Apps.Spotify.PlaySong { - public record PlaySongData(string? Artist, string? Song); + public record PlaySongData(string? artist, string? song); [NetDaemonApp] public class PlaySong @@ -32,7 +32,7 @@ namespace NetDaemonConfig.Apps.Spotify.PlaySong { SpotifyplusSearchTracksResponse? result = ( await services.Spotifyplus.SearchTracksAsync( - criteria: $"{e?.Artist} {e?.Song}", + criteria: $"{e?.artist} {e?.song}", limitTotal: 1, entityId: SpotifyTypes.DefaultEntityId, // My Defaults @@ -42,7 +42,7 @@ namespace NetDaemonConfig.Apps.Spotify.PlaySong ).Value.Deserialize(_jsonOptions); string uri = result?.Result?.Items?[0]?.Uri ?? throw new TargetException( - $"The song {e?.Song}{(e?.Artist is null ? "" : $" by {e?.Artist}")} could not be found." + $"The song {e?.song}{(e?.artist is null ? "" : $" by {e?.artist}")} could not be found." ); services.Spotifyplus.PlayerMediaPlayTracks(