public/Get-FootballPrediction.ps1
function Get-FootballPrediction { <# # 231: Both Teams To Score Probability # 232: Half Time/Full Time Probability # 233: First Half Winner Probability # 234: Over/Under 1.5 Probability # 235: Over/Under 2.5 Probability # 236: Over/Under 3.5 Probability # 237: Fulltime Result Probability # 238: Team To Score First Probability # 239: Double Chance Probability # 240: Correct Score Probability #> [CmdletBinding()] param( [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [string]$Competition, [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [string]$Date, [Parameter(Mandatory=$false)] [ValidateNotNullOrEmpty()] [Object]$FixtureList, [Parameter(Mandatory=$false)] [ValidateNotNullOrEmpty()] [Object]$FixtureListPrediction, [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [Object]$Header, [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [string]$Path, [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [string]$Token, [Parameter(Mandatory=$false)] [ValidateNotNullOrEmpty()] [string]$Type ) process{ $ErrorActionPreference = 'Stop' try { if ($($PSBoundParameters.ContainsKey('FixtureList'))) { $AllFixtures =@() $AllFixtures += $FixtureList } else { $AllFixtures =@() $AllFixtures += Get-FixtureList -Token $Token -Header $Header -Date $Date } # if if ($($AllFixtures.Count) -ge 1) { $PredictionFilePath = "$Path\sportsmonk-predictions" $Hash1 =@{ PSFunctionName = $($MyInvocation.MyCommand.Name) Competition = $Competition FixureCount = $($AllFixtures.Count) PredictionFilePath = $PredictionFilePath } $Hash1 | Format-Table if ($($PSBoundParameters.ContainsKey('Type'))) { $PredictionObjects = Get-FixtureListPrediction -Header $Header -Token $Token -FixtureList $AllFixtures -FixtureListPrediction $FixtureListPrediction -Competition $Competition -Type $Type $PredictionObjects | Export-Csv -Path "$PredictionFilePath\$Competition-$Type-$Date.csv" -Force -Verbose } else { $PathExists = Test-Path -Path "$PredictionFilePath\$Competition\$Date" if (!$PathExists) { New-Item -Path "$PredictionFilePath\$Competition\$Date" -ItemType Directory -Verbose } # if # 231: Both Teams To Score Probability # 232: Half Time/Full Time Probability # 233: First Half Winner Probability # 234: Over/Under 1.5 Probability # 235: Over/Under 2.5 Probability # 236: Over/Under 3.5 Probability # 237: Fulltime Result Probability # 238: Team To Score First Probability # 239: Double Chance Probability # 240: Correct Score Probability $Types =@('231','232','233','234','235','236','237','238','239','240','1683','1685','1686','1687','1689','1690') $Goals =@('326','327','328','330','331','332','333','334') $Types += $Goals foreach ($Type in $Types) { $FileExists = Test-Path -Path "$PredictionFilePath\$Competition\$Date\$Competition-$Type-$Date.csv" if ($FileExists) { $FixtureToPlay = Import-Csv -Path "$PredictionFilePath\$Competition\$Date\$Competition-$Type-$Date.csv" } # if if (!$FileExists -or $($FixtureToPlay.TypeId) -ne $Type) { Write-Warning -Message "Type is: $Type." Write-Warning -Message "File exists: $FileExists." Write-Warning -Message "Fixture to play: $($FixtureToPlay.Count)." $PredictionObjects = Get-FixtureListPrediction -Header $Header -Token $Token -FixtureList $AllFixtures -FixtureListPrediction $FixtureListPrediction -Competition $Competition -Type $Type $PredictionObjects | Format-Table if ($($PredictionObjects.TypeId) -contains $TYpe) { $Hash2 =@{ PSFunctionName = $($MyInvocation.MyCommand.Name) Competition = $Competition Count = $($PredictionObjects.Count) Type = $Type } $Hash2 | Format-Table $PredictionObjects | Export-Csv -Path "$PredictionFilePath\$Competition\$Date\$Competition-$Type-$Date.csv" -Force -Verbose } else { Write-Warning -Message "Prediciton file does not exist: $PredictionFilePath\$Competition\$Date\$Competition-$Type-$Date.csv." Write-Warning -Message "Fixture Count: $($PredictionObjects.Count)." Write-Warning -Message "Skipping fixtures: $Competition-$Date." } # if } else { Write-Warning -Message "Prediciton file already exists: $PredictionFilePath\$Competition\$Date\$Competition-$Type-$Date.csv." Write-Warning -Message "Skipping fixtures: $Competition-$Date." } # if } # foreach } # if if ($Competition -ne 'eng-facup' -and $Competition -notlike 'eur*') { $LeagueStandingOrder = Get-LeagueStandingOrder -Token $Token -Header $Header -Competition $Competition $LeagueStandingOrder | Export-Csv -Path "$PredictionFilePath\$Competition\$Competition-standing-order.csv" -Force -Verbose } # if } else { Write-Warning -Message "No fixtures on $Date." } # if } catch { "$($MyInvocation.MyCommand.Name): $_.Exception.Message" } # trycatch } # process } # function |