2024-05-01 18:26:32 -07:00
|
|
|
package cron
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"time"
|
|
|
|
|
2024-05-09 19:09:32 -07:00
|
|
|
"git.jamestombleson.com/jtom38/newsbot-api/domain"
|
2024-05-01 18:26:32 -07:00
|
|
|
"git.jamestombleson.com/jtom38/newsbot-api/internal/services/input"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (c *Cron) CollectRssPosts() {
|
|
|
|
log.Println("Starting ")
|
2024-05-02 17:36:56 -07:00
|
|
|
sources, err := c.repo.Sources.ListBySource(c.ctx, 0, 1000, domain.SourceCollectorRss)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for sourceIndex, source := range sources {
|
|
|
|
if !source.Enabled {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
rssClient := input.NewRssClient(source)
|
|
|
|
articles, err := rssClient.GetArticles()
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, article := range articles {
|
2024-05-02 17:36:56 -07:00
|
|
|
_, err := c.repo.Articles.GetByUrl(c.ctx, article.Url)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-05-02 17:36:56 -07:00
|
|
|
rowsCreated, err := c.repo.Articles.CreateFromEntity(c.ctx, article)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
}
|
|
|
|
if rowsCreated != 1 {
|
|
|
|
log.Println("Got back the wrong number of rows")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if sourceIndex != len(sources) {
|
|
|
|
time.Sleep(time.Second * 30)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Cron) CollectRedditPosts() {
|
2024-05-02 17:36:56 -07:00
|
|
|
sources, err := c.repo.Sources.ListBySource(c.ctx, 0, 1000, domain.SourceCollectorReddit)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("[Reddit] No sources found to query - %v\r", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, source := range sources {
|
|
|
|
if !source.Enabled {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[Reddit] Checking '%v'...", source.DisplayName)
|
|
|
|
rc := input.NewRedditClient(source)
|
|
|
|
raw, err := rc.GetContent()
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
redditArticles := rc.ConvertToArticles(raw)
|
|
|
|
for _, article := range redditArticles {
|
2024-05-02 17:36:56 -07:00
|
|
|
_, err := c.repo.Articles.GetByUrl(c.ctx, article.Url)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-05-02 17:36:56 -07:00
|
|
|
rowsAdded, err := c.repo.Articles.CreateFromEntity(c.ctx, article)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("Failed to add a new reddit article to the database: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if rowsAdded != 1 {
|
|
|
|
log.Printf("no error came back when data was added to the database but the expected row count is wrong")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log.Print("[Reddit] Done!")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Cron) CollectYoutubePosts() {
|
2024-05-02 17:36:56 -07:00
|
|
|
sources, err := c.repo.Sources.ListBySource(c.ctx, 0, 1000, domain.SourceCollectorYoutube)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("[Youtube] No sources found to query - %v\r", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for sourceIndex, source := range sources {
|
|
|
|
if !source.Enabled {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[YouTube] Checking '%v'...", source.DisplayName)
|
|
|
|
yc := input.NewYoutubeClient(source)
|
|
|
|
raw, err := yc.GetContent()
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, article := range raw {
|
2024-05-02 17:36:56 -07:00
|
|
|
_, err := c.repo.Articles.GetByUrl(c.ctx, article.Url)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-05-02 17:36:56 -07:00
|
|
|
rowsAdded, err := c.repo.Articles.CreateFromEntity(c.ctx, article)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("Failed to add a new youtube article to the database: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if rowsAdded != 1 {
|
|
|
|
log.Printf("no error came back when data was added to the database but the expected row count is wrong")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if sourceIndex != len(sources) {
|
|
|
|
time.Sleep(time.Second * 30)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log.Print("[YouTube] Done!")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Cron) CollectFfxivPosts() {
|
2024-05-02 17:36:56 -07:00
|
|
|
sources, err := c.repo.Sources.ListBySource(c.ctx, 0, 1000, domain.SourceCollectorFfxiv)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("[FFXIV] No sources found to query - %v\r", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for sourceIndex, source := range sources {
|
|
|
|
if !source.Enabled {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
fc := input.NewFFXIVClient(source)
|
|
|
|
items, err := fc.CheckSource()
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, article := range items {
|
2024-05-02 17:36:56 -07:00
|
|
|
_, err := c.repo.Articles.GetByUrl(c.ctx, article.Url)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-05-02 17:36:56 -07:00
|
|
|
rowsAdded, err := c.repo.Articles.CreateFromEntity(c.ctx, article)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("Failed to add a new FFXIV article to the database: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if rowsAdded != 1 {
|
|
|
|
log.Printf("no error came back when data was added to the database but the expected row count is wrong")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if sourceIndex != len(sources) {
|
|
|
|
time.Sleep(time.Second * 30)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log.Printf("[FFXIV Done!]")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Cron) CollectTwitchPosts() {
|
2024-05-02 17:36:56 -07:00
|
|
|
sources, err := c.repo.Sources.ListBySource(c.ctx, 0, 1000, domain.SourceCollectorTwitch)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("[Twitch] No sources found to query - %v\r", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
tc, err := input.NewTwitchClient()
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = tc.Login()
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for sourceIndex, source := range sources {
|
|
|
|
if !source.Enabled {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[Twitch] Checking '%v'...", source.DisplayName)
|
|
|
|
tc.ReplaceSourceRecord(source)
|
|
|
|
items, err := tc.GetContent()
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, article := range items {
|
2024-05-02 17:36:56 -07:00
|
|
|
_, err := c.repo.Articles.GetByUrl(c.ctx, article.Url)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-05-02 17:36:56 -07:00
|
|
|
rowsAdded, err := c.repo.Articles.CreateFromEntity(c.ctx, article)
|
2024-05-01 18:26:32 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("Failed to add a new Twitch article to the database: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if rowsAdded != 1 {
|
|
|
|
log.Printf("no error came back when data was added to the database but the expected row count is wrong")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if sourceIndex != len(sources) {
|
|
|
|
time.Sleep(time.Second * 30)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Print("[Twitch] Done!")
|
|
|
|
}
|