PowerShell/Scripts/check-dusk.ps1

44 lines
1.5 KiB
PowerShell
Raw Normal View History

2021-12-04 14:02:56 +01:00
<#
.SYNOPSIS
2021-12-05 11:28:14 +01:00
Checks the time of dusk
2021-12-04 14:02:56 +01:00
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script queries the time of dusk and answers by text-to-speech (TTS).
2021-12-04 14:02:56 +01:00
.EXAMPLE
2021-12-05 11:28:14 +01:00
PS> ./check-dusk
2021-12-04 14:02:56 +01:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
Author: Markus Fleschutz / License: CC0
2021-12-04 14:02:56 +01:00
#>
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
}
2021-12-06 17:00:49 +01:00
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())."
}
2021-12-06 17:00:49 +01:00
& "$PSScriptRoot/give-reply.ps1" "$Reply"
2021-12-04 14:02:56 +01:00
exit 0 # success
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-12-04 14:02:56 +01:00
exit 1
}