summaryrefslogtreecommitdiff
path: root/main.go
blob: 98f4ab2ec86ab024096dce54ac48f28676e230a1 (plain)
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
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.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 {
		var link Link
		link.Url = normalizeUrl(Story.Url)
		link.Field = 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 {
		var link Link
		link.Url = normalizeUrl(Story.Url)
		link.Field = 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] {

			var link Link
			link.Url = normalizeUrl(Story.Url)
			link.Field = 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] {

			var link Link
			link.Url = normalizeUrl(Story.Url)
			link.Field = 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] {

					var link Link
					link.Url = normalizeUrl(l)
					link.Field = 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] {

					var link Link
					link.Url = normalizeUrl(l)
					link.Field = 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 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()
}