2022-12-04 10:40:18 +01:00
|
|
|
## The *check-dusk.ps1* Script
|
2022-11-17 20:02:26 +01:00
|
|
|
|
|
|
|
check-dusk.ps1
|
2021-12-09 16:19:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
```powershell
|
2022-02-10 09:01:07 +01:00
|
|
|
|
2021-12-09 16:19:09 +01:00
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
2022-11-17 20:02:26 +01:00
|
|
|
## Source Code
|
2022-11-17 20:05:34 +01:00
|
|
|
```powershell
|
2022-11-17 20:02:26 +01:00
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Checks the time of dusk
|
|
|
|
.DESCRIPTION
|
|
|
|
This PowerShell script queries the time of dusk and answers by text-to-speech (TTS).
|
|
|
|
.EXAMPLE
|
|
|
|
PS> ./check-dusk
|
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
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())."
|
|
|
|
}
|
2022-11-18 17:02:20 +01:00
|
|
|
& "$PSScriptRoot/speak-english.ps1" "$Reply"
|
2022-11-17 20:02:26 +01:00
|
|
|
exit 0 # success
|
|
|
|
} catch {
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
exit 1
|
|
|
|
}
|
2022-11-17 20:05:34 +01:00
|
|
|
```
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2021-12-09 16:19:09 +01:00
|
|
|
*Generated by convert-ps2md.ps1 using the comment-based help of check-dusk.ps1*
|