Improve check-dawn.ps1, check-dusk.ps1, check-sunrise.ps1, and

check-sunset.ps1
This commit is contained in:
Markus Fleschutz 2021-12-11 16:12:12 +01:00
parent e188da6c5e
commit 914634fd29
4 changed files with 92 additions and 6 deletions

View File

@ -11,9 +11,30 @@
https://github.com/fleschutz/PowerShell
#>
try {
$Reply = (Invoke-WebRequest http://wttr.in/?format="Dawn is at %D." -UserAgent "curl" -useBasicParsing).Content
function TimeSpanToString { param([TimeSpan]$Delta)
$Result = ""
if ($Delta.Hours -eq 1) { $Result += "1 hour and "
} elseif ($Delta.Hours -gt 1) { $Result += "$($Delta.Hours) hours and "
}
if ($Delta.Minutes -eq 1) { $Result += "1 minute"
} else { $Result += "$($Delta.Minutes) minutes"
}
return $Result
}
try {
[system.threading.thread]::currentThread.currentCulture=[system.globalization.cultureInfo]"en-US"
$String = (Invoke-WebRequest http://wttr.in/?format="%D" -UserAgent "curl" -useBasicParsing).Content
$Hour,$Minute,$Second = $String -split ':'
$Dawn = Get-Date -Hour $Hour -Minute $Minute -Second $Second
$Now = [DateTime]::Now
if ($Now -lt $Dawn) {
$TimeSpan = TimeSpanToString($Dawn - $Now)
$Reply = "Dawn is in $TimeSpan at $($Dawn.ToShortTimeString())."
} else {
$TimeSpan = TimeSpanToString($Now - $Dawn)
$Reply = "Dawn was $TimeSpan ago at $($Dawn.ToShortTimeString())."
}
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success
} catch {

View File

@ -11,9 +11,30 @@
https://github.com/fleschutz/PowerShell
#>
try {
$Reply = (Invoke-WebRequest http://wttr.in/?format="Dusk is at %d." -UserAgent "curl" -useBasicParsing).Content
function TimeSpanToString { param([TimeSpan]$Delta)
$Result = ""
if ($Delta.Hours -eq 1) { $Result += "1 hour and "
} elseif ($Delta.Hours -gt 1) { $Result += "$($Delta.Hours) hours and "
}
if ($Delta.Minutes -eq 1) { $Result += "1 minute"
} else { $Result += "$($Delta.Minutes) minutes"
}
return $Result
}
try {
[system.threading.thread]::currentThread.currentCulture=[system.globalization.cultureInfo]"en-US"
$String = (Invoke-WebRequest http://wttr.in/?format="%d" -UserAgent "curl" -useBasicParsing).Content
$Hour,$Minute,$Second = $String -split ':'
$Dusk = Get-Date -Hour $Hour -Minute $Minute -Second $Second
$Now = [DateTime]::Now
if ($Now -lt $Dusk) {
$TimeSpan = TimeSpanToString($Dusk - $Now)
$Reply = "Dusk is in $TimeSpan at $($Dusk.ToShortTimeString())."
} else {
$TimeSpan = TimeSpanToString($Now - $Dusk)
$Reply = "Dusk was $TimeSpan ago at $($Dusk.ToShortTimeString())."
}
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success
} catch {

View File

@ -11,8 +11,30 @@
https://github.com/fleschutz/PowerShell
#>
function TimeSpanToString { param([TimeSpan]$Delta)
$Result = ""
if ($Delta.Hours -eq 1) { $Result += "1 hour and "
} elseif ($Delta.Hours -gt 1) { $Result += "$($Delta.Hours) hours and "
}
if ($Delta.Minutes -eq 1) { $Result += "1 minute"
} else { $Result += "$($Delta.Minutes) minutes"
}
return $Result
}
try {
$Reply = (Invoke-WebRequest http://wttr.in/?format="Sunrise is at %S." -UserAgent "curl" -useBasicParsing).Content
[system.threading.thread]::currentThread.currentCulture=[system.globalization.cultureInfo]"en-US"
$String = (Invoke-WebRequest http://wttr.in/?format="%S" -UserAgent "curl" -useBasicParsing).Content
$Hour,$Minute,$Second = $String -split ':'
$Sunrise = Get-Date -Hour $Hour -Minute $Minute -Second $Second
$Now = [DateTime]::Now
if ($Now -lt $Sunrise) {
$TimeSpan = TimeSpanToString($Sunrise - $Now)
$Reply = "Sunrise is in $TimeSpan at $($Sunrise.ToShortTimeString())."
} else {
$TimeSpan = TimeSpanToString($Now - $Sunrise)
$Reply = "Sunrise was $TimeSpan ago at $($Sunrise.ToShortTimeString())."
}
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success
} catch {

View File

@ -11,8 +11,30 @@
https://github.com/fleschutz/PowerShell
#>
function TimeSpanToString { param([TimeSpan]$Delta)
$Result = ""
if ($Delta.Hours -eq 1) { $Result += "1 hour and "
} elseif ($Delta.Hours -gt 1) { $Result += "$($Delta.Hours) hours and "
}
if ($Delta.Minutes -eq 1) { $Result += "1 minute"
} else { $Result += "$($Delta.Minutes) minutes"
}
return $Result
}
try {
$Reply = (Invoke-WebRequest http://wttr.in/?format="Sunset is at %s." -UserAgent "curl" -useBasicParsing).Content
[system.threading.thread]::currentThread.currentCulture=[system.globalization.cultureInfo]"en-US"
$String = (Invoke-WebRequest http://wttr.in/?format="%s" -UserAgent "curl" -useBasicParsing).Content
$Hour,$Minute,$Second = $String -split ':'
$Sunset = Get-Date -Hour $Hour -Minute $Minute -Second $Second
$Now = [DateTime]::Now
if ($Now -lt $Sunset) {
$TimeSpan = TimeSpanToString($Sunset - $Now)
$Reply = "Sunset is in $TimeSpan at $($Sunset.ToShortTimeString())."
} else {
$TimeSpan = TimeSpanToString($Now - $Sunset)
$Reply = "Sunset was $TimeSpan ago at $($Sunset.ToShortTimeString())."
}
& "$PSScriptRoot/give-reply.ps1" "$Reply"
exit 0 # success
} catch {