public/Get-FootballCompetitionStage.ps1
function Get-FootballCompetitionStage { <# .SYNOPSIS Get-FootballCompetitionStage -Header $Headers -Token $Token -YearStart 2024 -YearEnd 2025 -Continent europe-uk #> [CmdletBinding()] param( [Parameter(Mandatory=$true)] [ValidateSet('europe','europe-uk','europe-uk-cup','europe-uk-fl','europe-uk-wsl','south-america','north-america','asia')] [string]$Continent, [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [Object]$Header, [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [string]$Token, [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [int]$YearEnd, [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [int]$YearStart ) process{ $ErrorActionPreference try { $BaseUri = "https://api.sportmonks.com/v3/football/stages" $Stages = @() $count = 0 # Loop through all pages using the next_page link do { if ($Count -lt 1) { $UriToUse = $BaseUri+'?api_token='+$Token } else { $UriToUse = $BaseUri+'&api_token='+$Token } # IF # Fetch current page $Response = Invoke-RestMethod -Uri $UriToUse -Method 'GET' -Headers $Header # Add fixtures from the current page to the collection $Stages += $Response.data # Update the BaseUri to the next page if available $BaseUri = $Response.pagination.next_page $HasMorePages = $Response.pagination.has_more $Count++ } while ($HasMorePages) $StagesToUse =@() $Competitions = Select-FootballCompetition -Continent $Continent $Competitions.GetEnumerator() | ForEach-Object -Process { Write-Warning -Message "Processing: $($_.key)." $Identifier = Get-LeagueIdentifier -Competition $_.key foreach ($Stage in $Stages) { $Filter = $Stage | Where-Object {$_.League_id -eq $Identifier -and $_.starting_at -like "$YearStart*" -and $_.ending_at -like "$YearEnd*"} $StagesToUse += $Filter } # foreach } # foreach-object return $StagesToUse } catch { "$($MyInvocation.MyCommand.Name): $_.Exception.Message" } # try catch } # process } # function |