-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscraper.go
More file actions
87 lines (71 loc) · 1.84 KB
/
scraper.go
File metadata and controls
87 lines (71 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package main
import (
"context"
"log"
"sync"
"strings"
"time"
"database/sql"
"github.com/eyop23/rssagg/internal/database"
"github.com/google/uuid"
)
func startScraping(db *db.Queries, concurrency int, timeBetweenFetch time.Duration) {
log.Printf(`Fetching feeds with concurrency %v with time duration of %v`, concurrency, timeBetweenFetch)
ticker := time.NewTicker(timeBetweenFetch)
for ; ; <-ticker.C {
feeds, err := db.GetNextFeedsToFetch(context.Background(), int32(concurrency))
if err != nil {
log.Printf("error fetching feeds- %v", err)
continue
}
wg := sync.WaitGroup{}
for _, feed := range feeds {
wg.Add(1)
go scrapeFeed(db, feed, &wg)
}
wg.Wait()
}
}
func scrapeFeed(queries *db.Queries, feed db.Feed, wg *sync.WaitGroup) {
defer wg.Done()
_, errr := queries.MarkFeedAsFetched(context.Background(), feed.ID)
if errr != nil {
log.Printf("Error marking feed as fetched- %v", errr)
return
}
rssFeed, errrr := urlToFeed(feed.Url)
if errrr != nil {
log.Printf("Error fetching feed- %v", errrr)
return
}
for _, item := range rssFeed.Channel.Item {
description := sql.NullString{}
if item.Description != "" {
description.String = item.Description
description.Valid = true
}
pubAt,err := time.Parse(time.RFC1123Z,item.PubDate)
if err != nil {
log.Println("couldn't parse date")
continue
}
_,err = queries.CreatePost(context.Background(),
db.CreatePostParams{
ID:uuid.New(),
CreatedAt:time.Now().UTC(),
UpdatedAt:time.Now().UTC(),
Title:item.Title,
Description:description,
PublishedAt:pubAt,
Url:item.Link,
FeedID:feed.ID,
})
if err != nil {
if strings.Contains(err.Error(),"duplicate key") {
continue
}
log.Println("couldn't create post",err)
}
}
log.Printf("Feed %v collected, %v posts found", feed.Name, len(rssFeed.Channel.Item))
}