James Tombleson
09fe274752
* New single const file for all config info * seed was updated to reflect route params * Adjusting config loads to make it easier to follow * test updates for config loading
105 lines
3.6 KiB
PowerShell
105 lines
3.6 KiB
PowerShell
#!/usr/local/bin/pwsh
|
|
param (
|
|
[string] $ApiServer = "http://localhost:5011",
|
|
[string] $JsonSecrets = "./seed.secrets.json"
|
|
)
|
|
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
function New-RedditSource {
|
|
param (
|
|
[string] $Name
|
|
)
|
|
|
|
$param = "name=$Name"
|
|
$uri = "$ApiServer/api/sources/new/reddit?$param"
|
|
$res = Invoke-RestMethod -Method Post -Uri $uri
|
|
return $res
|
|
}
|
|
|
|
function New-RssSource {
|
|
param (
|
|
[string] $Name,
|
|
[string] $Url
|
|
)
|
|
$urlEncoded = [uri]::EscapeDataString($Url)
|
|
$param = "name=$Name&url=$urlEncoded"
|
|
[string] $uri = "$ApiServer/api/sources/new/rss?$param"
|
|
$res = Invoke-RestMethod -Method Post -Uri $uri
|
|
return $res
|
|
}
|
|
|
|
function New-YoutubeSource {
|
|
param (
|
|
[string] $Url
|
|
)
|
|
$urlEncoded = [uri]::EscapeDataString($Url)
|
|
[string] $param = "url=$urlEncoded"
|
|
[string] $uri = "$ApiServer/api/sources/new/youtube?$param"
|
|
$res = Invoke-RestMethod -Method Post -Uri $uri
|
|
return $res
|
|
}
|
|
|
|
function New-TwitchSource {
|
|
param (
|
|
[string] $Name
|
|
)
|
|
[string] $param = "name=$Name"
|
|
[string] $uri = "$ApiServer/api/sources/new/twitch?$param"
|
|
$res = Invoke-RestMethod -Method Post -Uri $uri
|
|
return $res
|
|
}
|
|
|
|
function New-DiscordWebhook {
|
|
param (
|
|
[string] $Server,
|
|
[string] $Channel,
|
|
[string] $Url
|
|
)
|
|
$urlEncoded = [uri]::EscapeDataString($Url)
|
|
[string] $param = "server=$Server&channel=$Channel&url=$urlEncoded"
|
|
[string] $uri = "$ApiServer/api/discord/webhooks?$param"
|
|
Write-Host $uri
|
|
$res = Invoke-RestMethod -Method Post -Uri $uri
|
|
return $res
|
|
}
|
|
|
|
function New-Subscription {
|
|
param (
|
|
[string] $SourceId,
|
|
[string] $DiscordWebhookId
|
|
)
|
|
[string] $param = "sourceId=$SourceId&discordId=$DiscordWebhookId"
|
|
[string] $uri = "$ApiServer/api/subscriptions?$param"
|
|
$res = Invoke-RestMethod -Method Post -Uri $uri
|
|
return $res
|
|
}
|
|
|
|
# Load Secrets file
|
|
$secrets = Get-Content $JsonSecrets -Raw | ConvertFrom-Json
|
|
|
|
$redditDadJokes = New-RedditSource -Name "dadjokes"
|
|
$redditSteamDeck = New-RedditSource -Name "steamdeck"
|
|
|
|
$rssSteamDeck = New-RssSource -Name "Steampowered - Steam Deck" -Url "https://store.steampowered.com/feeds/news/app/1675200/?cc=US&l=english&snr=1_2108_9__2107"
|
|
$rssFaysHaremporium = New-RssSource -Name "Fay's Haremporium" -Url "https://blog.nyxstudios.moe/rss/"
|
|
$rssPodcastLetsMosley = New-RssSource -Name "Let's Mosley" -Url "https://anchor.fm/s/6c7aa4c4/podcast/rss"
|
|
|
|
$youtubeGameGrumps = New-YoutubeSource -Url "https://www.youtube.com/user/GameGrumps"
|
|
$youtubeCityPlannerPlays = New-YoutubeSource -Url "https://www.youtube.com/c/cityplannerplays"
|
|
$youtubeLinusTechTips = New-YoutubeSource -Url "https://www.youtube.com/@LinusTechTips"
|
|
|
|
$twitchNintendo = New-TwitchSource -Name "Nintendo"
|
|
|
|
$miharuMonitor = New-DiscordWebhook -Server "Miharu Monitor" -Channel "dev" -Url $secrets.MiharuMonitor.dev01
|
|
|
|
New-Subscription -SourceId $redditDadJokes.id -DiscordWebhookId $miharuMonitor.id
|
|
New-Subscription -SourceId $redditSteamDeck.id -DiscordWebhookId $miharuMonitor.id
|
|
New-Subscription -SourceId $rssSteamDeck.id -DiscordWebhookId $miharuMonitor.id
|
|
New-Subscription -SourceId $rssFaysHaremporium.id -DiscordWebhookId $miharuMonitor.id
|
|
New-Subscription -SourceId $rssPodcastLetsMosley.id -DiscordWebhookId $miharuMonitor.id
|
|
New-Subscription -SourceId $youtubeGameGrumps.id -DiscordWebhookId $miharuMonitor.id
|
|
New-Subscription -SourceId $youtubeCityPlannerPlays.id -DiscordWebhookId $miharuMonitor.id
|
|
New-Subscription -SourceId $youtubeLinusTechTips.id -DiscordWebhookId $miharuMonitor.id
|
|
New-Subscription -SourceId $twitchNintendo.id -DiscordWebhookId $miharuMonitor.id
|