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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
|
package main
import (
"encoding/json"
"fmt"
"html"
"io/ioutil"
"net/http"
"net/url"
"regexp"
"strconv"
"strings"
"time"
"github.com/PuerkitoBio/goquery"
"github.com/anikhasibul/queue"
"github.com/jmoiron/sqlx"
log "github.com/sirupsen/logrus"
)
type App struct {
Config *Config
DB *sqlx.DB
Now time.Time
}
func main() {
var err error
_own_conf := _conf
app := App{Config: &_own_conf}
_conf = Config{}
app.Now = time.Now()
log.Debug(fmt.Sprintf(`Connecting to "%s" database "%s" as user "%s" on host "%s:%s" with extra options "%s".`, app.Config.DBDriver, app.Config.DBDBName, app.Config.DBUser, app.Config.DBHost, app.Config.DBPort, app.Config.DBOptions))
app.DB, err = sqlx.Connect(app.Config.DBDriver, app.Config.DBUser+":"+app.Config.DBPassword+"@tcp("+app.Config.DBHost+":"+app.Config.DBPort+")/"+app.Config.DBDBName+"?"+app.Config.DBOptions)
if err != nil {
log.Fatal(err, "Cannot connect to database")
}
if err = app.DB.Ping(); err != nil {
log.Fatal(err, "No connection to database")
}
defer app.DB.Close()
app.FixURLs()
return
/*
app.deleteOrphanedArticles()
app.topStories()
app.deleteOrphanedArticles()
app.updateAllDiscussions()
*/
app.walkDown()
/**
* Resolve redirects on stored urls.
*/
//return
}
func (app *App) walkDown() {
//var err error
max_item := getMaxItem()
//max_item := 27351341
//max_item := 27262623
//max_item := 41495306
//max_item := 36128477
//max_item := 32670334
//max_item := 41231601
//max_item := 41165987
//max_item := 41136898
//max_item := 22554000
//max_item := 22494596
//max_item := 22354383
//max_item := 18984000
//max_item := 18732000
//max_item := 16017000
//max_item := 15494000
//max_item := 15038031
//max_item := 14450000
min_item := 0
var new_max_item syncMaxItem
if app.Config.OnlyUpdateStories {
min_item = app.getMaxStoredItem()
}
log.Infof("walkDown: max_item: %d; min_item: %d\n", max_item, min_item)
const maxRoutines = 400
//const maxRoutines = 1
q := queue.New(maxRoutines)
defer q.Close()
//for i := max_item; i > 22600000; i-- {
for i := max_item; i > min_item; i-- {
q.Add()
go func(i int, new_max_item *syncMaxItem) {
defer q.Done()
Story, ok := getStory(i)
if ok {
if len(Story.Links) > 0 {
//log.Debugf("%+v\n", Story)
//log.Debugf("%+v\n", Story.Links)
}
err := app.saveStory(Story)
if err != nil {
log.Fatal(err)
} else {
new_max_item.mu.Lock()
if Story.Id > new_max_item.max_item {
new_max_item.max_item = Story.Id
}
new_max_item.mu.Unlock()
}
/*
*/
}
/*
* Prints status update every 1000th entry
*/
if i%1000 == 0 {
log.Infof("%s: Getting item %d\n", time.Now(), i)
}
}(i, &new_max_item)
}
q.Wait()
if min_item == 0 {
err := app.createMaxStoredItem(new_max_item.max_item)
if err != nil {
log.Fatal(err)
}
} else if min_item != new_max_item.max_item && new_max_item.max_item != 0 {
err := app.updateNewMaxStoredItem(new_max_item.max_item)
if err != nil {
log.Fatal(err)
}
}
}
func getMaxItem() int {
response, err := http.Get("https://hacker-news.firebaseio.com/v0/maxitem.json")
if err != nil {
panic(err)
}
data, err := ioutil.ReadAll(response.Body)
if err != nil {
panic(err)
}
max_item, err := strconv.Atoi(string(data))
if err != nil {
panic(err)
}
return max_item
}
func (app *App) topStories() {
var err error
data1 := strings.TrimSuffix(string(getTopStories()), "]")
data2 := strings.TrimPrefix(string(getBestStories()), "[")
data1 = data1 + ","
data := data1 + data2
var story_ids []int
err = json.Unmarshal([]byte(data), &story_ids)
if err != nil {
log.Warn("topStories: Unmarshaling json failed")
panic(err)
}
const maxRoutines = 20
q := queue.New(maxRoutines)
defer q.Close()
for _, id := range story_ids {
q.Add()
go func(id int) {
Story, ok := getStory(id)
defer q.Done()
if ok {
log.Infof("%+v\n", Story)
err = app.saveStory(Story)
if err != nil {
log.Fatal(err)
}
}
}(id)
}
q.Wait()
}
func getStory(id int) (Story, bool) {
Story := getDetail(id)
if Story.Dead {
return Story, false
}
if Story.Type == "Story" && Story.Score < 10 && Story.Descendants < 10 {
return Story, false
}
var duplicates = make(map[string]bool)
/*
if (time.Now().Unix() - 3456000) > int64(Story.Time) {
}
*/
Story.Title = stripHNPrefix(Story.Title)
u, err := url.Parse(Story.Url)
if err != nil {
log.Warnf("getStory: Parsing URL failed: %s\n", err.Error())
return Story, false
}
/**
* Check if story links to Youtube
*/
is_video, err := regexp.MatchString("(?i)(youtube.com)|(youtu.be)|(vimeo.com)", u.Host)
if err != nil {
log.Errorf("Failed to parse and match regex: %s\n", err.Error())
return Story, false
}
if is_video {
link := getURL(Story.Url, 2)
Story.Links = append(Story.Links, link)
log.Info("match youtube host")
log.Infof("%+v\n", Story)
duplicates[link.Url] = true
}
/**
* Check if story links to movie platform
*/
is_movie, err := regexp.MatchString("(?i)(imdb.com)|(rottentomatoes.com)|(metacritic.com)", u.Host)
if err != nil {
log.Errorf("Failed to parse and match regex: %s\n", err.Error())
return Story, false
}
if is_movie {
link := getURL(Story.Url, 1)
Story.Links = append(Story.Links, link)
log.Info("match moview platform url")
log.Infof("%+v\n", Story)
duplicates[link.Url] = true
}
/**
* Check for (Video) in title
*/
is_video, err = regexp.MatchString("(?i)(\\(video\\))|(\\[video\\])", Story.Title)
if err != nil {
log.Errorf("Failed to parse and match regex: %s\n", err.Error())
return Story, false
}
if is_video {
if !duplicates[Story.Url] {
link := getURL(Story.Url, 2)
Story.Links = append(Story.Links, link)
log.Info("match video title")
log.Infof("%+v\n", Story)
duplicates[Story.Url] = true
}
}
/**
* Check if story links to movie platform
*/
is_movie, err = regexp.MatchString("(?i)(imdb.com)|(rottentomatoes.com)|(metacritic.com)", u.Host)
if err != nil {
log.Errorf("Failed to parse and match regex: %s\n", err.Error())
return Story, false
}
if is_movie {
if !duplicates[Story.Url] {
link := getURL(Story.Url, 1)
Story.Links = append(Story.Links, link)
log.Info("match moview platform url")
log.Infof("%+v\n", Story)
duplicates[Story.Url] = true
}
}
/**
* Parse all URLs in Story.Text
log.Debugf("StoryID: %d\n", Story.Id)
log.Debugf("StoryID: %d\n", Story.Text)
*/
/**
* This comment broke my code:
* https://news.ycombinator.com/item?id=27351340
*/
tmpdoc, err := goquery.NewDocumentFromReader(strings.NewReader("<html>" + Story.Text + "</html>"))
if err != nil {
log.Errorf("Failed to parse html: %s\n", err.Error())
return Story, false
}
sel := tmpdoc.Find("html")
// remove all found elements from selection
sel.Find("code").Each(func(i int, s *goquery.Selection) {
//log.Warnf("%+v\n", s.Get(0))
RemoveNode(sel.Get(0), s.Get(0))
})
tmphtml, err := sel.Html()
if err != nil {
log.Warn("Failed to generate html from selection: ", err.Error())
}
doc, err := goquery.NewDocumentFromReader(strings.NewReader(tmphtml))
if err != nil {
log.Errorf("Failed to parse html: %s\n", err.Error())
return Story, false
}
doc.Find("a").Each(func(i int, s *goquery.Selection) {
l, ok := s.Attr("href")
if ok {
/**
* Check for Youtube in text field
*/
is_video, err = regexp.MatchString("(?i)(youtube.com)|(youtu.be)|(vimeo.com)", l)
if err != nil {
log.Fatal("Failed to parse and match regex: %s\n", err.Error())
//log.Errorf("Failed to parse and match regex: %s\n", err.Error())
//return Story, false
}
if is_video {
if !duplicates[l] {
link := getURL(l, 2)
Story.Links = append(Story.Links, link)
log.Info("match youtube text")
log.Infof("%+v\n", Story)
duplicates[l] = true
}
}
/**
* Check for movie platforms in text field
*/
is_movie, err = regexp.MatchString("(?i)(imdb.com)|(rottentomatoes.com)|(metacritic.com)", l)
if err != nil {
log.Fatal("Failed to parse and match regex: %s\n", err.Error())
//log.Errorf("Failed to parse and match regex: %s\n", err.Error())
//return Story, false
}
if is_movie {
if !duplicates[l] {
link := getURL(l, 1)
Story.Links = append(Story.Links, link)
log.Info("match moview platform text")
log.Infof("%+v\n", Story)
duplicates[l] = true
}
}
}
})
//Story.Url = normalizeUrl(Story.Url)
if len(Story.Links) > 0 {
return Story, true
} else {
return Story, false
}
}
func getURL(_url string, field int) Link {
_url = normalizeUrl(_url)
var link Link
u, err := url.Parse(_url)
if err != nil {
log.Warnf("getURL: Parsing URL failed: %s \n", err.Error())
return link
}
link.Field = field
link.Url = _url
link.Host = u.Host
switch u.Host {
case "www.youtube.com",
"music.youtube.com",
"www.music.youtube.com":
//log.Warn(_url)
if strings.HasPrefix(u.Path, "/@") || strings.HasPrefix(u.Path, "/c/") || strings.HasPrefix(u.Path, "/user/") || strings.HasPrefix(u.Path, "/channel/") {
link.Type = "channel"
path_parts := strings.Split(u.Path, "/")
if strings.HasPrefix(u.Path, "/@") {
link.Param = strings.TrimPrefix(path_parts[1], "@")
} else {
link.Param = path_parts[2]
}
} else if strings.HasPrefix(u.Path, "/shorts") || strings.HasPrefix(u.Path, "/live") || strings.HasPrefix(u.Path, "/embed") {
link.Type = "video"
path_parts := strings.Split(u.Path, "/")
if len(path_parts) > 2 {
link.Param = path_parts[2]
} else {
link.Param = ""
link.Type = "null"
}
} else if strings.HasPrefix(u.Path, "/playlist") {
link.Type = "playlist"
m, err := url.ParseQuery(u.RawQuery)
if err != nil {
log.Warnf("getURL: Parsing RawQuery for Youtube failed: %s \n", err.Error())
return link
}
/**
* ?list= includes the playlist id
*/
p, ok := m["list"]
if !ok {
log.Warnf("getURL: Playlist: Youtube has no param: %s \n", link.Url)
} else {
link.Param = p[0]
}
} else if strings.HasPrefix(u.Path, "/watch/") {
link.Type = "video"
path_parts := strings.Split(u.Path, "/")
link.Param = path_parts[2]
} else if strings.HasPrefix(u.Path, "/watch") {
link.Type = "video"
m, err := url.ParseQuery(u.RawQuery)
if err != nil {
log.Warnf("getURL: Parsing RawQuery for Youtube failed: %s \n", err.Error())
return link
}
/**
* ?v= includes the video id
*/
p, ok := m["v"]
if !ok {
//log.Infof("getURL: v=VideoID: Youtube has no param: %s \n", link.Url)
log.Warnf("getURL: v=VideoID: Youtube has no param: %s \n", link.Url)
} else {
link.Param = p[0]
}
} else if u.Path == "/" || u.Path == "" {
link.Type = "null"
link.Param = ""
} else {
link.Type = "channel"
path_parts := strings.Split(u.Path, "/")
link.Param = path_parts[1]
}
/**
* nice debug
if link.Param == "" && !strings.HasPrefix(u.Path, "/clip") && !strings.HasPrefix(u.Path, "/results") && u.Path != "/watch" {
log.Fatal(link)
}
*/
break
case "www.imdb.com":
//log.Warn(u.Path)
if strings.HasPrefix(u.Path, "/title/") {
link.Type = "film"
path_parts := strings.Split(u.Path, "/")
if strings.HasPrefix(path_parts[1], "tt") {
link.Param = path_parts[1]
} else {
log.Infof("getURL: IMDB: path_parts[1] doesn't have a film id: %s %s %+v", u.Path, path_parts[2], path_parts)
log.Info(path_parts)
}
} else if strings.HasPrefix(u.Path, "/tt") {
link.Type = "film"
path_parts := strings.Split(u.Path, "/")
link.Param = path_parts[1]
} else if strings.HasPrefix(u.Path, "/name/") {
link.Type = "actor"
path_parts := strings.Split(u.Path, "/")
link.Param = path_parts[2]
} else if strings.HasPrefix(u.Path, "/character/") {
link.Type = "character"
path_parts := strings.Split(u.Path, "/")
link.Param = path_parts[2]
} else if strings.HasPrefix(u.Path, "/company/") {
link.Type = "company"
path_parts := strings.Split(u.Path, "/")
link.Param = path_parts[2]
} else if strings.HasPrefix(u.Path, "/video/") || strings.HasPrefix(u.Path, "/videoplayer/") {
link.Type = "video"
path_parts := strings.Split(u.Path, "/")
link.Param = path_parts[2]
} else if strings.HasPrefix(u.Path, "/user/") {
link.Type = "user"
path_parts := strings.Split(u.Path, "/")
link.Param = path_parts[2]
} else if strings.HasPrefix(u.Path, "/news/") || strings.HasPrefix(u.Path, "/board/announcement") {
link.Type = "news"
path_parts := strings.Split(u.Path, "/")
link.Param = path_parts[2]
} else if strings.HasPrefix(u.Path, "/review/") {
link.Type = "review"
path_parts := strings.Split(u.Path, "/")
link.Param = path_parts[2]
} else if strings.HasPrefix(u.Path, "/404") || u.Path == "" || u.Path == "/" || strings.HasPrefix(u.Path, "/interfaces") || strings.HasPrefix(u.Path, "/titanic") || strings.HasPrefix(u.Path, "/freedive/") || strings.HasPrefix(u.Path, "/conditions") || strings.HasPrefix(u.Path, "/help/") || strings.HasPrefix(u.Path, "/showtimes/") || strings.HasPrefix(u.Path, "/1") || strings.Contains(u.Path, "/mediaviewer/") || strings.HasPrefix(u.Path, "/media") || strings.HasPrefix(u.Path, "/licensing") || strings.HasPrefix(u.Path, "/lists") || strings.HasPrefix(u.Path, "/stats") || strings.HasPrefix(u.Path, "/rg/") || strings.HasPrefix(u.Path, "/hackernews") || strings.HasPrefix(u.Path, "/robots.txt") || strings.HasPrefix(u.Path, "/: the prestige") || strings.HasPrefix(u.Path, "/features/") || strings.HasPrefix(u.Path, "/keyword/") {
link.Type = "null"
link.Param = ""
} else if strings.HasPrefix(u.Path, "/list/") || strings.HasPrefix(u.Path, "/chart/") || strings.Contains(u.Path, "/top-rated-") || strings.HasPrefix(u.Path, "/whats-on-tv/") {
link.Type = "film_list"
path_parts := strings.Split(u.Path, "/")
link.Param = path_parts[2]
} else if strings.HasPrefix(u.Path, "/find") || strings.HasPrefix(u.Path, "/search") || strings.HasPrefix(u.Path, "/filmosearch") {
link.Type = "imdb_search"
} else {
log.Infof("getURL: IMDB: path does not include title: %s \n", u.Path)
//log.Warnf("getURL: IMDB: path does not include title: %s \n", u.Path)
log.Fatalf("getURL: IMDB: path does not include title: %s \n", u.Path)
}
break
case "www.vimeo.com":
// todo
default:
//log.Warnf("getURL: Host not recognized. Missing param: %s", u.Host)
return link
}
if link.Host == "www.music.youtube.com" {
u.Host = "music.youtube.com"
link.Url = u.String()
link.Host = "music.youtube.com"
}
return link
}
func getResponse(url string) *http.Response {
var err error
var response *http.Response
response, err = http.Get(url)
if err != nil {
for i := 0; i < 4; i++ {
if i == 0 {
log.Debug("getResponse: Got error connecting to firebase/wikipedia. Retry: " + strconv.Itoa(i))
} else {
log.Warn("getResponse: Got error connecting to firebase/wikipedia. Retry: " + strconv.Itoa(i))
}
resp2, err2 := http.Get(url)
if err2 == nil {
return resp2
}
}
panic(err)
}
return response
}
func getBestResponse() *http.Response {
_url := "https://hacker-news.firebaseio.com/v0/beststories.json"
return getResponse(_url)
}
func getTopResponse() *http.Response {
_url := "https://hacker-news.firebaseio.com/v0/topstories.json"
return getResponse(_url)
}
func getStoryResponse(item_id string) *http.Response {
_url := "https://hacker-news.firebaseio.com/v0/item/" + item_id + ".json"
return getResponse(_url)
}
func getDetail(id int) Story {
response := getStoryResponse(strconv.Itoa(id))
data, err := ioutil.ReadAll(response.Body)
if err != nil {
panic(err)
}
var story Story
err = json.Unmarshal(data, &story)
if err != nil {
log.Warn("getDetail: Unmarshaling json failed ", data)
panic(err)
}
//log.Debug("%+v\n", Story)
story.Text = html.UnescapeString(story.Text)
log.Tracef("StoryID: %d\n", story.Id)
return story
}
func getTopStories() []byte {
response := getTopResponse()
data, err := ioutil.ReadAll(response.Body)
if err != nil {
panic(err)
}
return data
}
func getBestStories() []byte {
response := getBestResponse()
data, err := ioutil.ReadAll(response.Body)
if err != nil {
panic(err)
}
return data
}
func (app *App) updateAllDiscussions() {
const maxRoutines = 20
var item_ids []int
app.DB.Select(&item_ids, "SELECT item_id FROM discussion WHERE posted_on > (UNIX_TIMESTAMP()-3456000) order by posted_on")
q := queue.New(maxRoutines)
defer q.Close()
for _, item_id := range item_ids {
q.Add()
go func(item_id int) {
defer q.Done()
Story, ok := getStory(item_id)
if !ok {
/**
* Check if we got a network error or a dead story.
*/
if 0 == Story.Id {
log.Warnf("updateAllDiscussions: Failure getting Story for item_id: %d\n", item_id)
} else if Story.Descendants > 10 || Story.Score > 10 {
log.Infof(`
updateAllDiscussions: There is a bug. Can't update discussion with id %d.
NOTE: If this is happening again, probably the url was changed from Wikipedia to a different source.
%+v\n
`, item_id, Story)
}
return
}
err := app.updateDiscussion(Story)
if err != nil {
log.Warn(err)
return
}
}(item_id)
}
q.Wait()
}
|