PowerShell/docs/watch-news.md

125 lines
3.6 KiB
Markdown
Raw Permalink Normal View History

2024-11-08 12:38:20 +01:00
The *watch-news.ps1* Script
===========================
2024-05-19 10:25:56 +02:00
2024-11-08 12:35:11 +01:00
This PowerShell script continuously lists the latest headlines by using a RSS (Really Simple Syndication) feed.
2024-05-19 10:25:56 +02:00
Parameters
----------
```powershell
2024-11-08 12:35:11 +01:00
/home/markus/Repos/PowerShell/scripts/watch-news.ps1 [[-URL] <String>] [[-timeInterval] <Int32>] [<CommonParameters>]
2024-05-19 10:25:56 +02:00
2024-11-08 12:35:11 +01:00
-URL <String>
2024-05-19 10:25:56 +02:00
Specifies the URL to the RSS feed (Yahoo World News by default)
Required? false
Position? 1
Default value https://news.yahoo.com/rss/world
Accept pipeline input? false
Accept wildcard characters? false
2024-08-15 09:51:46 +02:00
-timeInterval <Int32>
2024-11-20 11:52:20 +01:00
Specifies the time interval in seconds between two Web requests (60 seconds by default)
2024-08-15 09:51:46 +02:00
Required? false
2024-11-08 12:35:11 +01:00
Position? 2
2024-11-20 11:52:20 +01:00
Default value 60
2024-05-19 10:25:56 +02:00
Accept pipeline input? false
Accept wildcard characters? false
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
Example
-------
```powershell
2024-08-15 09:51:46 +02:00
PS> ./watch-news.ps1
2024-11-08 12:35:11 +01:00
2024-11-20 11:52:20 +01:00
UTC HEADLINES (by: https://www.yahoo.com/news/world)
--- ------------------------------------------------
14:29 Niger coup: Ecowas deadline sparks anxiety in northern Nigeria
2024-11-08 12:35:11 +01:00
...
2024-05-19 10:25:56 +02:00
```
Notes
-----
Author: Markus Fleschutz | License: CC0
Related Links
-------------
https://github.com/fleschutz/PowerShell
Script Content
--------------
```powershell
<#
.SYNOPSIS
2024-11-08 12:35:11 +01:00
Watch the news
2024-05-19 10:25:56 +02:00
.DESCRIPTION
2024-11-08 12:35:11 +01:00
This PowerShell script continuously lists the latest headlines by using a RSS (Really Simple Syndication) feed.
.PARAMETER URL
2024-05-19 10:25:56 +02:00
Specifies the URL to the RSS feed (Yahoo World News by default)
2024-08-15 09:51:46 +02:00
.PARAMETER lines
Specifies the initial number of headlines
.PARAMETER timeInterval
2024-11-20 11:52:20 +01:00
Specifies the time interval in seconds between two Web requests (60 seconds by default)
2024-05-19 10:25:56 +02:00
.EXAMPLE
2024-08-15 09:51:46 +02:00
PS> ./watch-news.ps1
2024-11-08 12:35:11 +01:00
2024-11-20 11:52:20 +01:00
UTC HEADLINES (by: https://www.yahoo.com/news/world)
--- ------------------------------------------------
14:29 Niger coup: Ecowas deadline sparks anxiety in northern Nigeria
2024-11-08 12:35:11 +01:00
...
2024-05-19 10:25:56 +02:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
2024-11-20 11:52:20 +01:00
param([string]$URL = "https://news.yahoo.com/rss/world", [int]$timeInterval = 60) # in seconds
2024-11-08 12:35:11 +01:00
2024-11-20 11:52:20 +01:00
function PrintLatestHeadlines([xml]$content, [string]$latestTimestamp, [string]$icon) {
2024-11-08 12:35:11 +01:00
$items = $content.rss.channel.item
[array]::Reverse($items)
2024-11-20 11:52:20 +01:00
$newLatest = $latestTimestamp
2024-11-08 12:35:11 +01:00
foreach($item in $items) {
2024-11-20 11:52:20 +01:00
$pubDate = $item.pubDate
if ($pubDate -le $latestTimestamp) { continue }
2024-11-08 12:35:11 +01:00
$title = $item.title
2024-11-20 11:52:20 +01:00
$time = $pubDate.Substring(11, 5)
Write-Host "$time $title$icon"
Start-Sleep -milliseconds 500
if ($pubDate -gt $newLatest) { $newLatest = $pubDate }
2024-08-15 09:51:46 +02:00
}
2024-11-20 11:52:20 +01:00
return $newLatest
2024-05-19 10:25:56 +02:00
}
try {
2024-11-08 12:35:11 +01:00
[xml]$content = (Invoke-WebRequest -URI $URL -useBasicParsing).Content
2024-11-20 11:52:20 +01:00
$title = $content.rss.channel.title.toUpper()
2024-11-08 12:35:11 +01:00
$link = $content.rss.channel.link
2024-11-20 11:52:20 +01:00
Write-Host "`n UTC HEADLINES (by: " -noNewline
Write-Host $link -foregroundColor blue -noNewline
Write-Host ")"
Write-Host " --- ------------------------------------------------"
2024-11-08 12:35:11 +01:00
$latestTimestamp = "2000-01-01"
2024-11-20 11:52:20 +01:00
$icon = ""
2024-11-08 12:35:11 +01:00
do {
2024-11-20 11:52:20 +01:00
$latestTimestamp = PrintLatestHeadlines $content $latestTimestamp $icon
$icon = "🆕"
2024-08-15 09:51:46 +02:00
Start-Sleep -seconds $timeInterval
2024-11-08 12:35:11 +01:00
[xml]$content = (Invoke-WebRequest -URI $URL -useBasicParsing).Content
} while ($true)
2024-05-19 10:25:56 +02:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
2024-11-20 11:52:20 +01:00
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:52:01)*