mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
914634fd29
check-sunset.ps1
44 lines
1.5 KiB
PowerShell
44 lines
1.5 KiB
PowerShell
<#
|
|
.SYNOPSIS
|
|
Checks the time of dawn
|
|
.DESCRIPTION
|
|
This script queries the time of dawn and answers by text-to-speech (TTS).
|
|
.EXAMPLE
|
|
PS> ./check-dawn
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
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 {
|
|
[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 {
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
exit 1
|
|
}
|