-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoutube.js
229 lines (211 loc) · 7.26 KB
/
youtube.js
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
'use strict';
import { getCookie, makeRestRequest, Platform } from './util.js';
var i;
// Scrapes auth data from the user's youtube to make the request.
const fetchYtcfg = () => {
return new Promise((resolve, reject) => {
makeRestRequest({
method: 'GET',
url: 'https://www.youtube.com',
headers: {}
})
.then((response) => {
var fake_html = document.createElement('html');
fake_html.innerHTML = response;
let scripts = fake_html.getElementsByTagName('script')
Array.prototype.slice.call(scripts).forEach(script => {
let script_str = script.innerHTML;
if (script_str.includes('XSRF_TOKEN')) {
let xsrf_matches = script_str.match(
new RegExp('"XSRF_TOKEN":"([a-zA-Z0-9]+=)"'));
let client_matches = script_str.match(
new RegExp('"INNERTUBE_CONTEXT_CLIENT_VERSION":"([\\d.]+)"'));
if (xsrf_matches.length == 2 && client_matches.length == 2) {
resolve({
XSRF_TOKEN: xsrf_matches[1],
INNERTUBE_CONTEXT_CLIENT_VERSION: client_matches[1]
});
}
}
});
reject('Couldn\'t fetch YouTube ytcfg.');
})
.catch(reject);
});
};
const fetchFollowedChannels = ytcfg => {
return makeRestRequest({
method: 'GET',
url:
'https://www.youtube.com/guide_ajax?action_load_guide=1',
headers: {
'x-youtube-client-name': '1',
'x-youtube-identity-token': ytcfg.XSRF_TOKEN,
'x-youtube-client-version': ytcfg.INNERTUBE_CONTEXT_CLIENT_VERSION
},
json: true
});
};
// Loads '.../channel/UC.../live' and returns {view_count:xx, title:xx}.
const fetchLiveWatchPageData = url => {
return new Promise((resolve, reject) => {
makeRestRequest({
method: 'GET',
url: url
})
.then(response => {
let fake_html = document.createElement('html');
fake_html.innerHTML = response;
let watch_page_data = {};
let title_elements = fake_html.getElementsByTagName('title');
for (i = 0; i < title_elements.length; i++) {
if (title_elements[i].text != 'YouTube') {
watch_page_data.title = title_elements[i].text;
}
}
let scripts = fake_html.getElementsByTagName('script');
Array.prototype.slice.call(scripts).forEach(script => {
let script_str = script.innerHTML;
if (script_str.includes('watching now')) {
let viewers_matches = script_str.match(
new RegExp('([\\d,]+)\ watching\ now'));
if (viewers_matches.length >= 2) {
watch_page_data.view_count = parseInt(
viewers_matches[1].replace(',', ''));
resolve(watch_page_data);
} else {
reject(`Failed to regex view count for ${url}`);
}
}
});
reject(`Failed to find 'watching now' for ${url}, stream probably wen't offline`);
})
.catch(reject);
});
};
const buildStreamerObj = renderer => {
if (renderer.badges && renderer.badges.liveBroadcasting) {
return {
avatar: renderer.thumbnail.thumbnails[0].url,
name: renderer.title,
game: 'None', // No easy API for this.
view_count: 0, // No easy API for this, filled later.
link: 'https://www.youtube.com/channel/' +
renderer.navigationEndpoint.browseEndpoint.browseId + '/live',
platform: Platform.YOUTUBE
};
}
};
const isYtcfgValid = ytcfg => {
return ytcfg.XSRF_TOKEN != null &&
ytcfg.INNERTUBE_CONTEXT_CLIENT_VERSION != null;
};
class YoutubeFetcher {
constructor() {
// Whether the last fetch was successful.
this.status = false;
// Used to expire a successful status.
this.last_success = -1;
// The last retrieved streamer objects fetched. If there was a failure,
// return [].
this.streamer_objs = [];
// Necessary to make authenticated requests.
this._cached_ytcfg = {};
}
fetchStreamerObjs() {
return new Promise((resolve, reject) => {
this._getYtcfg()
.then(fetchFollowedChannels)
.then(follower_response => {
let new_streamer_objs = [];
let found_subs = false;
follower_response.response.items.forEach(item => {
let is_logged_in_but_no_subs_marker = item.guideSectionRenderer;
if (is_logged_in_but_no_subs_marker &&
is_logged_in_but_no_subs_marker.title == 'Subscriptions') {
found_subs = true;
}
let subs = item.guideSubscriptionsSectionRenderer;
if (subs) {
subs.items.forEach(item => {
let guideEntry = item.guideEntryRenderer;
if (guideEntry) {
found_subs = true;
let streamer_obj = buildStreamerObj(guideEntry);
if (streamer_obj) {
new_streamer_objs.push(streamer_obj);
}
}
// Followed channels under 'Show More'.
let hidden_subs = item.guideCollapsibleEntryRenderer;
if (hidden_subs) {
hidden_subs.expandableItems.forEach(item => {
let guideEntry = item.guideEntryRenderer;
if (guideEntry) {
let streamer_obj = buildStreamerObj(guideEntry);
if (streamer_obj) {
new_streamer_objs.push(streamer_obj);
}
}
});
}
});
}
});
if (found_subs) {
this.status = true;
this.last_success = Date.now();
} else {
this.status = false;
}
this.streamer_objs = new_streamer_objs;
return this.streamer_objs;
}).then(new_streamer_objs => {
let watch_page_promises = [];
new_streamer_objs.forEach(streamer_obj => {
watch_page_promises.push(
fetchLiveWatchPageData(streamer_obj.link));
});
return Promise.all(watch_page_promises);
}).then(watch_page_data => {
for (i = 0; i < watch_page_data.length; i++) {
this.streamer_objs[i].view_count =
watch_page_data[i].view_count;
this.streamer_objs[i].stream_title =
watch_page_data[i].title;
}
resolve(this.streamer_objs);
})
.catch(error => {
console.log('Unable to reach YouTube: ', error);
this.status = false;
this.streamer_objs = [];
// Dump ytcfg incase it is responsible.
this._cached_ytcfg = {};
resolve(this.streamer_objs);
});
});
}
// If cached, return the cached YTCFG. Otherwise, fetch a new one and update
// __cached_ytcfg.
_getYtcfg() {
return new Promise((resolve, reject) => {
if (isYtcfgValid(this._cached_ytcfg)) {
resolve(this._cached_ytcfg);
} else {
fetchYtcfg()
.then(ytcfg => {
if (isYtcfgValid(ytcfg)) {
this._cached_ytcfg = ytcfg;
resolve(this._cached_ytcfg);
} else {
// If its still broken, fail.
reject('Unable to build ytcfg.');
}
})
.catch(reject);
}
});
}
}
export {YoutubeFetcher};