-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
251 lines (206 loc) · 7.41 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
package main
import (
"fmt"
"log"
"strings"
"strconv"
"github.com/PuerkitoBio/goquery"
"sync"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
"time"
"github.com/robfig/cron"
"net/url"
)
type News struct {
ID bson.ObjectId `bson:"_id,omitempty"`
Provider string
Url string
Image string
Title string
CreatedAt time.Time
}
func removeQueryString(inputUrl string) string {
u, err := url.Parse(inputUrl)
if err != nil {
log.Fatal(err)
}
u.RawQuery = ""
return u.String()
}
// TODO: GoLang Parallelize
func Parallelize(functions ...func()) {
var waitGroup sync.WaitGroup
waitGroup.Add(len(functions))
defer waitGroup.Wait()
for _, function := range functions {
go func(copy func()) {
defer waitGroup.Done()
copy()
}(function)
}
}
func main() {
cronjob := cron.New()
spec := "0 */3 * * * *"
cronjob.AddFunc(spec, func() {
Parallelize(ettoday, appledaily, udn)
})
cronjob.Start()
select {}
// Parallelize(ettoday, appledaily)
// ettoday()
// appledaily()
}
// 東森新聞雲
func ettoday() {
// 開啟 mongodb connection,並且在 function 結束後關閉
session, err := mgo.Dial("mongodb://localhost:27017")
defer session.Close()
// 爬即時新聞頁面
doc, err := goquery.NewDocument("http://www.ettoday.net/news/news-list.htm")
if err != nil {
log.Fatal(err)
}
// 連線到 all_news db 與 news collection
c := session.DB("all_news").C("news")
err = c.EnsureIndexKey("url")
err = c.EnsureIndexKey("-createdat")
doc.Find(".part_list_2 h3").Each(func(i int, s *goquery.Selection) {
// 找出所有即時新聞的連結
url, _ := s.Find("a").Attr("href")
// 爬出所有即時新聞的新聞內頁
inner, err := goquery.NewDocument("http://www.ettoday.net" + url)
if err != nil {
log.Fatal(err)
}
// 取出標題,建立時間,圖片資訊
title := s.Find("a").Text()
image, _ := inner.Find(".story").Find("img").Attr("src")
dateString := s.Find("span").Text()
date, _ := time.Parse("2006/01/02 15:04", dateString)
// 建立 news 物件
news := News{"", "ettoday", url, image, title, date}
// 用新聞連結找出資料
result := News{}
_ = c.Find(bson.M{"url": "http://www.ettoday.net" + news.Url}).One(&result)
if result.Url != "" {
fmt.Printf("已經存在的新聞資料: %s\n", "http://www.ettoday.net" + result.Url)
fmt.Printf("時間: %s\n", result.CreatedAt)
fmt.Println("------------------------\n")
}
// 如果找不到這個新聞連結的資料,就幫他建立新的資料
if result.Url == "" {
fmt.Printf("建立新的新聞資訊: %s\n", "http://www.ettoday.net" + news.Url)
fmt.Printf("時間: %s\n", date)
fmt.Println("------------------------\n")
_ = c.Insert(&News{
Provider: news.Provider,
Title: news.Title,
Image: "https:" + news.Image,
Url: "http://www.ettoday.net" + news.Url,
CreatedAt: news.CreatedAt,
})
}
})
}
// 蘋果日報
func appledaily() {
// 開啟 mongodb connection,並且在 function 結束後關閉
session, err := mgo.Dial("mongodb://localhost:27017")
defer session.Close()
// 連線到 all_news db 與 news collection
newsCollection := session.DB("all_news").C("news")
err = newsCollection.EnsureIndexKey("url")
err = newsCollection.EnsureIndexKey("-createdat")
doc, err := goquery.NewDocument("http://www.appledaily.com.tw/realtimenews/section/new/")
if err != nil {
log.Fatal(err)
}
doc.Find("li.rtddt").Each(func(i int, s *goquery.Selection) {
url, _ := s.Find("a").Attr("href")
innerNews, err := goquery.NewDocument("http://www.appledaily.com.tw" + url)
if err != nil {
log.Fatal(err)
}
title := innerNews.Find("#h1").Text()
image, _ := innerNews.Find(".imgmid2 img").Attr("src")
dateString := innerNews.Find(".gggs time").Text()
date, _ := time.Parse("2006年01月02日15:04", dateString)
// 用新聞連結找出資料
result := News{}
_ = newsCollection.Find(bson.M{"url": "http://www.appledaily.com.tw" + url}).One(&result)
if result.Url != "" {
fmt.Printf("已經存在的新聞資料: %s\n", result.Url)
fmt.Printf("時間: %s\n", result.CreatedAt)
fmt.Println("------------------------\n")
}
// 如果找不到這個新聞連結的資料,就幫他建立新的資料
if result.Url == "" {
fmt.Printf("建立新的新聞資訊: %s\n", "http://www.appledaily.com.tw" + url)
fmt.Printf("時間: %s\n", date)
fmt.Println("------------------------\n")
_ = newsCollection.Insert(&News{
Provider: "appledaily",
Title: title,
Image: image,
Url: "http://www.appledaily.com.tw" + url,
CreatedAt: date,
})
}
})
}
// UDN
func udn() {
// 開啟 mongodb connection,並且在 function 結束後關閉
session, err := mgo.Dial("mongodb://localhost:27017")
defer session.Close()
if err != nil {
log.Fatal(err)
}
// 連線到 all_news db 與 news collection
newsCollection := session.DB("all_news").C("news")
err = newsCollection.EnsureIndexKey("url")
err = newsCollection.EnsureIndexKey("-createdat")
doc, err := goquery.NewDocument("https://udn.com/news/breaknews/1/99")
if err != nil {
log.Fatal(err)
}
doc.Find("#breaknews_body dl dt").Each(func(i int, s *goquery.Selection) {
// 找出 url 並且去掉 query string
url, _ := s.Find("a").Attr("href")
url = "https://udn.com" + removeQueryString(url)
image, _ := s.Find("img").Attr("src")
title := s.Find("h2").Text()
// 拆解 date 並組成可用的時間格式
dateString := s.Find(".info .dt").Text()
thisYear := strconv.Itoa(time.Now().Year())
newDateString := thisYear + "/" + strings.Replace(dateString, "-", "/", -1)
date, _ := time.Parse("2006/01/02 15:04", newDateString)
// fmt.Printf("title = %s\n", title)
// fmt.Printf("url = %s\n", url)
// fmt.Printf("image = %s\n", image)
// fmt.Printf("date = %s\n", date)
// 用新聞連結找出資料
result := News{}
_ = newsCollection.Find(bson.M{"url": url}).One(&result)
if result.Url != "" {
fmt.Printf("已經存在的新聞資料: %s\n", result.Url)
fmt.Printf("時間: %s\n", result.CreatedAt)
fmt.Println("------------------------\n")
}
// 如果找不到這個新聞連結的資料,就幫他建立新的資料
if result.Url == "" {
fmt.Printf("建立新的新聞資訊: %s\n", url)
fmt.Printf("時間: %s\n", date)
fmt.Println("------------------------\n")
_ = newsCollection.Insert(&News{
Provider: "udn",
Title: title,
Image: image,
Url: url,
CreatedAt: date,
})
}
})
}