-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
132 lines (113 loc) · 2.45 KB
/
main.go
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package main
import (
"fmt"
"os"
"sync"
"github.com/teris-io/shortid"
)
// Page struct to store in database
type Page struct {
ID string `json:"id"`
Title string `json:"title"`
Description string `json:"description"`
Body string `json:"body"`
URL string `json:"url"`
}
var queue = make(chan string)
func crawlURL(url string) {
// Extract links, title and description
s := NewScraper(url)
if s == nil {
return
}
links := s.Links()
title, description := s.MetaDataInformation()
body := s.Body()
// Check if the page exists
existsLink, page := ExistingPage(url)
if existsLink {
// Update the page in database
params := map[string]interface{}{
"title": title,
"description": description,
"body": body,
}
success := UpdatePage(page.ID, params)
if !success {
return
}
fmt.Println("Page", url, "with ID", page.ID, "updated")
} else {
// Create the new page in the database.
id, _ := shortid.Generate()
newPage := Page{
ID: id,
Title: title,
Description: description,
Body: body,
URL: url,
}
success := CreatePage(newPage)
if !success {
return
}
fmt.Println("Page", url, "created")
}
for _, link := range links {
go func(l string) {
queue <- l
}(link)
}
}
func worker(wg *sync.WaitGroup, id int) {
for link := range queue {
crawlURL(link)
}
wg.Done()
}
func checkIndexPresence() {
NewElasticSearchClient()
exists := ExistsIndex(indexName)
if !exists {
CreateIndex(indexName)
}
}
// Allocate workers and start crawling with the first URL
func startCrawling(start string) {
checkIndexPresence()
var wg sync.WaitGroup
noOfWorkers := 10
// Send first url to the channel
go func(s string) {
queue <- s
}(start)
// Create worker pool with noOfWorkers workers
wg.Add(noOfWorkers)
for i := 1; i <= noOfWorkers; i++ {
go worker(&wg, i)
}
wg.Wait()
}
func deleteIndex() {
NewElasticSearchClient()
DeleteIndex()
}
func main() {
args := os.Args
if len(args) < 2 {
fmt.Println("Not option provided, please specify one of the options below:")
fmt.Println()
fmt.Println("1. If you want to crawl the internet:")
fmt.Println("\tgo run *.go index CRAWLING_START_URL")
fmt.Println()
fmt.Println("2. If you want to delete the pages index from elastic search:")
fmt.Println("\tgo run *.go delete")
return
}
switch args[1] {
case "index":
startCrawling(args[2])
case "delete":
deleteIndex()
}
}