Functions/GenXdev.Console.Spotify/Get-SpotifyPlaylistTracks.ps1
################################################################################ <# .SYNOPSIS Returns all tracks from a Spotify playlist. .DESCRIPTION Retrieves all tracks from a Spotify playlist by either playlist name or ID. When using playlist name, it will fetch the first matching playlist's ID and then retrieve its tracks using the Spotify API. .PARAMETER PlaylistName The name of the Spotify playlist to retrieve tracks from. Will match the first playlist found with this name. .PARAMETER PlaylistId The unique Spotify ID of the playlist to retrieve tracks from. .EXAMPLE Get-SpotifyPlaylistTracks -PlaylistName "My Favorite Songs" .EXAMPLE Get-SpotifyPlaylistTracks -PlaylistId "37i9dQZF1DXcBWIGoYBM5M" .EXAMPLE "My Workout Mix" | getplaylist #> function Get-SpotifyPlaylistTracks { [CmdletBinding(DefaultParameterSetName = "ByName")] [Alias("getplaylist")] param( ######################################################################## [Alias("Name")] [parameter( ParameterSetName = "ByName", Mandatory = $true, Position = 0, HelpMessage = "The Spotify playlist to return tracks for", ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true )] [string] $PlaylistName, ######################################################################## [Alias("Id")] [parameter( ParameterSetName = "ById", Mandatory = $true, Position = 0, HelpMessage = "The Spotify playlist to return tracks for", ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true )] [string] $PlaylistId ######################################################################## ) begin { # get spotify api authentication token $apiToken = Get-SpotifyApiToken Write-Verbose "Retrieved Spotify API token" # if playlist name provided, get its ID if ([string]::IsNullOrWhiteSpace($PlaylistName) -eq $false) { Write-Verbose "Looking up playlist ID for name: $PlaylistName" $PlaylistId = @(Get-SpotifyPlaylistIdsByName -PlaylistName @($PlaylistName)) | Select-Object -First 1 Write-Verbose "Found playlist ID: $PlaylistId" } } process { Write-Verbose "Retrieving tracks for playlist ID: $PlaylistId" # call spotify api to get playlist tracks [GenXdev.Helpers.Spotify]::GetPlaylistTracks($apiToken, $PlaylistId) } end { } } ################################################################################ |