aboutsummaryrefslogtreecommitdiff
path: root/ytparser.go
blob: a3e954426942f70d3777594602ca0bb63b361421 (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
package ytparser

import (
	"text/template"
	"encoding/json"
	"fmt"
	"net/http"
	"bytes"
	"os"
	"io"
	"io/ioutil"
	"strings"
	"net/url"
	"regexp"
)

const windowInitDataString string = "window[\"ytInitialData\"] = "
const initDataString string = "var ytInitialData = "
const baseUrl string = "https://youtube.com"

// A Item represents a youtube video, or more precisely its metadata (title,
// url...).
type Item struct {
	Id    string
	Title string
	Url   string // The url of the video
	ThumbUrl string // The thumbnail url
	ChannelId string
	ChannelTitle string
	ChannelUrl string
	Published string // The published date provided by youtube as is.
	LengthText string // The length of the video rendered as text by youtube.
	AtomUrl string
	ViewCount string
}

// Executes a given template on an item and returns the resulting string.
//
// The item is passed directly to the template execution. For example: "title:
// {{.Title}}" would return the item's title prefixed with "title: ".
func (item Item) Format(t *template.Template) string {
	var b strings.Builder
	err := t.Execute(&b, item)
	if err != nil {
		panic(err)
	}
	return b.String()
}

func (item Item) String() string {
	return fmt.Sprintf("id: %s, title: %s, url: %s", item.Id, item.Title, item.Url)
}

func parsejson(data string) ([]Item, error) {
	dec := json.NewDecoder(strings.NewReader(data))

	depth := 0
	isArray := false
	isValue := false
	var items []Item
	var item Item
	var names []string
	nbItems := 0
	for {
		tok, err := dec.Token()
		if err == io.EOF {
			break
		} else if err != nil {
			return items, err
		}

		switch t := tok.(type) {
		case json.Delim:
			if t == '{' {
				depth++
			} else if t == '}' {
				depth--
				names = names[:depth]
			}
			isArray = t == '['
			isValue = false
		case string:
			if !isArray {
				if !isValue {
					if t == "videoRenderer" {
						if nbItems > 0 {
							items = append(items, item)
						}
						item = Item{}
						nbItems++
					}
					if depth > len(names) {
						names = append(names, t)
					} else {
						names[depth - 1] = t
					}
					//fmt.Println(t, depth, len(names), names[depth - 1])
					isValue = true
				} else {
					//fmt.Println(names[len(names) - 1])
					if depth >= 2 &&
							names[depth-2] == "videoRenderer" &&
							names[depth-1] == "videoId" {
						item.Id = t
						item.Url = fmt.Sprintf("https://youtube.com/watch?v=%s", t)
					}
					if depth >= 3 &&
							names[depth-3] == "title" &&
							names[depth-2] == "runs" &&
							names[depth-1] == "text" {
						item.Title = t
					}
					if depth >= 3 &&
							names[depth-3] == "ownerText" &&
							names[depth-2] == "runs" &&
							names[depth-1] == "text" {
						item.ChannelTitle = t
					}
					if depth >= 6 &&
							names[depth-6] == "ownerText" &&
							names[depth-5] == "runs" &&
							names[depth-4] == "navigationEndpoint" &&
							names[depth-3] == "commandMetadata" &&
							names[depth-2] == "webCommandMetadata" &&
							names[depth-1] == "url" {
						item.ChannelUrl = baseUrl + t
					}
					if depth >= 4 &&
							names[depth-4] == "videoRenderer" &&
							names[depth-3] == "thumbnail" &&
							names[depth-2] == "thumbnails" &&
							names[depth-1] == "url" {
						item.ThumbUrl = t
					}
					if depth >= 3 &&
								names[depth-3] == "videoRenderer" &&
								names[depth-2] == "publishedTimeText" &&
								names[depth-1] == "simpleText" {
						item.Published = t
					}
					if depth >= 5 &&
								names[depth-5] == "longBylineText" &&
								names[depth-4] == "runs" &&
								names[depth-3] == "navigationEndpoint" &&
								names[depth-2] == "browseEndpoint" &&
								names[depth-1] == "browseId" {
						item.ChannelId = t
						item.AtomUrl = fmt.Sprintf("https://www.youtube.com/feeds/videos.xml?channel_id=%s", t)
					}
					if depth >= 2 &&
								names[depth-2] == "lengthText" &&
								names[depth-1] == "simpleText" {
						item.LengthText = t
					}
					if depth >= 2 &&
								names[depth-2] == "viewCountText" &&
								names[depth-1] == "simpleText" {
						item.ViewCount = t
					}
					isValue = false
				}
			}
		default:
		}
	}
	return items, nil
}

// Prints an array of Item based on a given template format.
//
// The format should follow go's text/template format. For example:
// "{{.Title}}" would print the titles of each item.
func PrintItems(items []Item, format string) {
	t := template.Must(template.New("items").Parse(format))
	for _, i := range items {
		fmt.Println(i.Format(t))
	}
}

func request(query string, page int, lang string, order string) (string, error) {
	q := url.QueryEscape(query)
	url := fmt.Sprintf("https://www.youtube.com/results?search_query=%s&page=%d&hl=%s&sp=%s", q, page, lang, order)
	res, err := http.DefaultClient.Get(url)
	if err != nil {
		return "", err
	}
	body, err := ioutil.ReadAll(res.Body)
	if err != nil {
		return "", err
	}
	initString := windowInitDataString
	idx := bytes.Index(body, []byte(windowInitDataString))
	if idx == -1 {
		initString = initDataString
		idx = bytes.Index(body, []byte(initDataString))
	}
	idx += len(initString)
	startData := body[idx:]
	pattern := regexp.MustCompile(`; *(\n|<\/script>)`)
	loc := pattern.FindIndex(startData)
	startData = startData[:loc[0]]
	//fmt.Printf("%s\n", string(startData))
	//os.Exit(0)
	return string(startData), nil
}

func isValidData(data string) bool {
	return data != ""
}

func translateOrder(order string) string {
	switch order {
	case "relevance":
		return "CAASAhAB"
	case "date":
		return "CAISAhAB"
	case "views":
		return "CAMSAhAB"
	case "rating":
		return "CAESAhAB"
	default:
		return "CAASAhAB"
	}
}

// Launch a search on the given query, page, language and order and return an
// array of items and/or an error.
//
// The lang parameter must be a youtube supported language code ("en", "fr",
// "de"...) and allows getting certain information such as the published date
// in the selected language. If empty, youtube should detect the language based
// on location.
//
// The order parameter can be any of the following: relevance, date, views,
// rating. The default value is relevance.
//
// This function may return items even if there is an error, allowing the
// search to be considered partially successful.
// If this is the case it most likely means there was an error during the
// parse, but some items were still successfully parsed before the error.
func Search(query string, page int, lang string, order string) ([]Item, error) {
	var data string = ""
	var err error
	for i := 1; i < 4 && !isValidData(data); i++ {
		if i > 1 {
			fmt.Fprintf(os.Stderr, "Yt data invalid, retrying (attempt %d)\n", i)
		}
		data, err = request(query, page, lang, translateOrder(order))
		if err != nil {
			return nil, err
		}
	}
	return parsejson(data)
}