aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Youtube.cpp
blob: 40b296d889bfb34bdafdf5ad32c9067e2829d0a7 (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
#include "../../plugins/Youtube.hpp"
#include "../../include/Storage.hpp"
#include <string.h>
#include <unordered_set>

namespace QuickMedia {
    static std::shared_ptr<BodyItem> parse_content_video_renderer(const Json::Value &content_item_json, std::unordered_set<std::string> &added_videos) {
        if(!content_item_json.isObject())
            return nullptr;
        
        const Json::Value &video_renderer_json = content_item_json["videoRenderer"];
        if(!video_renderer_json.isObject())
            return nullptr;
        
        const Json::Value &video_id_json = video_renderer_json["videoId"];
        if(!video_id_json.isString())
            return nullptr;

        std::string video_id_str = video_id_json.asString();
        if(added_videos.find(video_id_str) != added_videos.end())
            return nullptr;

        std::string thumbnail_url = "https://img.youtube.com/vi/" + video_id_str + "/hqdefault.jpg";

        const char *date = nullptr;
        const Json::Value &published_time_text_json = video_renderer_json["publishedTimeText"];
        if(published_time_text_json.isObject()) {
            const Json::Value &text_json = published_time_text_json["simpleText"];
            if(text_json.isString())
                date = text_json.asCString();
        }

        const char *length = nullptr;
        const Json::Value &length_text_json = video_renderer_json["lengthText"];
        if(length_text_json.isObject()) {
            const Json::Value &text_json = length_text_json["simpleText"];
            if(text_json.isString())
                length = text_json.asCString();
        }

        const char *title = nullptr;
        const Json::Value &title_json = video_renderer_json["title"];
        if(title_json.isObject()) {
            const Json::Value &runs_json = title_json["runs"];
            if(runs_json.isArray() && !runs_json.empty()) {
                const Json::Value &first_runs_json = runs_json[0];
                if(first_runs_json.isObject()) {
                    const Json::Value &text_json = first_runs_json["text"];
                    if(text_json.isString())
                        title = text_json.asCString();
                }
            }
        }

        if(!title)
            return nullptr;
        
        auto body_item = BodyItem::create(title);
        /* TODO: Make date a different color */
        std::string date_str;
        if(date)
            date_str += date;
        if(length) {
            if(!date_str.empty())
                date_str += '\n';
            date_str += length;
        }
        body_item->set_description(std::move(date_str));
        body_item->url = "https://www.youtube.com/watch?v=" + video_id_str;
        body_item->thumbnail_url = std::move(thumbnail_url);
        added_videos.insert(video_id_str);
        return body_item;
    }

    // Returns empty string if continuation token can't be found
    static std::string item_section_renderer_get_continuation_token(const Json::Value &item_section_renderer_json) {
        const Json::Value &continuations_json = item_section_renderer_json["continuations"];
        if(!continuations_json.isArray() || continuations_json.empty())
            return "";
        
        const Json::Value &first_continuation_json = continuations_json[0];
        if(!first_continuation_json.isObject())
            return "";
        
        const Json::Value &next_continuation_data_json = first_continuation_json["nextContinuationData"];
        if(!next_continuation_data_json.isObject())
            return "";
        
        const Json::Value &continuation_json = next_continuation_data_json["continuation"];
        if(!continuation_json.isString())
            return "";
        
        return continuation_json.asString();
    }

    static void parse_item_section_renderer(const Json::Value &item_section_renderer_json, std::string &continuation_token, std::unordered_set<std::string> &added_videos, BodyItems &result_items) {
        if(continuation_token.empty())
            continuation_token = item_section_renderer_get_continuation_token(item_section_renderer_json);
        
        const Json::Value &item_contents_json = item_section_renderer_json["contents"];
        if(!item_contents_json.isArray())
            return;

        for(const Json::Value &content_item_json : item_contents_json) {
            if(!content_item_json.isObject())
                continue;

            const Json::Value &shelf_renderer_json = content_item_json["shelfRenderer"];
            if(!shelf_renderer_json.isObject())
                continue;

            const Json::Value &item_content_json = shelf_renderer_json["content"];
            if(!item_content_json.isObject())
                continue;

            const Json::Value &vertical_list_renderer_json = item_content_json["verticalListRenderer"];
            if(!vertical_list_renderer_json.isObject())
                continue;

            const Json::Value &items_json = vertical_list_renderer_json["items"];
            if(!items_json.isArray())
                continue;
            
            for(const Json::Value &item_json : items_json) {
                std::shared_ptr<BodyItem> body_item = parse_content_video_renderer(item_json, added_videos);
                if(body_item)
                    result_items.push_back(std::move(body_item));
            }
        }
    
        for(const Json::Value &content_item_json : item_contents_json) {
            std::shared_ptr<BodyItem> body_item = parse_content_video_renderer(content_item_json, added_videos);
            if(body_item)
                result_items.push_back(std::move(body_item));
        }
    }

    static std::string remove_index_from_playlist_url(const std::string &url) {
        std::string result = url;
        size_t index = result.rfind("&index=");
        if(index == std::string::npos)
            return result;
        return result.substr(0, index);
    }

    static std::shared_ptr<BodyItem> parse_compact_video_renderer_json(const Json::Value &item_json, std::unordered_set<std::string> &added_videos) {
        const Json::Value &compact_video_renderer_json = item_json["compactVideoRenderer"];
        if(!compact_video_renderer_json.isObject())
            return nullptr;
        
        const Json::Value &video_id_json = compact_video_renderer_json["videoId"];
        if(!video_id_json.isString())
            return nullptr;

        std::string video_id_str = video_id_json.asString();
        if(added_videos.find(video_id_str) != added_videos.end())
            return nullptr;

        std::string thumbnail_url = "https://img.youtube.com/vi/" + video_id_str + "/hqdefault.jpg";

        const char *date = nullptr;
        const Json::Value &published_time_text_json = compact_video_renderer_json["publishedTimeText"];
        if(published_time_text_json.isObject()) {
            const Json::Value &text_json = published_time_text_json["simpleText"];
            if(text_json.isString())
                date = text_json.asCString();
        }

        const char *length = nullptr;
        const Json::Value &length_text_json = compact_video_renderer_json["lengthText"];
        if(length_text_json.isObject()) {
            const Json::Value &text_json = length_text_json["simpleText"];
            if(text_json.isString())
                length = text_json.asCString();
        }

        const char *title = nullptr;
        const Json::Value &title_json = compact_video_renderer_json["title"];
        if(title_json.isObject()) {
            const Json::Value &simple_text_json = title_json["simpleText"];
            if(simple_text_json.isString()) {
                title = simple_text_json.asCString();
            }
        }

        if(!title)
            return nullptr;
        
        auto body_item = BodyItem::create(title);
        /* TODO: Make date a different color */
        std::string date_str;
        if(date)
            date_str += date;
        if(length) {
            if(!date_str.empty())
                date_str += '\n';
            date_str += length;
        }
        body_item->set_description(std::move(date_str));
        body_item->url = "https://www.youtube.com/watch?v=" + video_id_str;
        body_item->thumbnail_url = std::move(thumbnail_url);
        added_videos.insert(video_id_str);
        return body_item;
    }

    SearchResult YoutubeSearchPage::search(const std::string &str, BodyItems &result_items) {
        std::string url = "https://youtube.com/results?search_query=";
        url += url_param_encode(str);

        std::vector<CommandArg> additional_args = {
            { "-H", "x-spf-referer: " + url },
            { "-H", "x-youtube-client-name: 1" },
            { "-H", "x-youtube-client-version: 2.20200626.03.00" },
            { "-H", "referer: " + url }
        };

        //std::vector<CommandArg> cookies = get_cookies();
        //additional_args.insert(additional_args.end(), cookies.begin(), cookies.end());

        Json::Value json_root;
        DownloadResult result = download_json(json_root, url + "&pbj=1", std::move(additional_args), true);
        if(result != DownloadResult::OK) return download_result_to_search_result(result);

        if(!json_root.isArray())
            return SearchResult::ERR;

        std::string continuation_token;
        std::unordered_set<std::string> added_videos; /* The input contains duplicates, filter them out! */

        for(const Json::Value &json_item : json_root) {
            if(!json_item.isObject())
                continue;

            const Json::Value &response_json = json_item["response"];
            if(!response_json.isObject())
                continue;

            const Json::Value &contents_json = response_json["contents"];
            if(!contents_json.isObject())
                continue;

            const Json::Value &tcsrr_json = contents_json["twoColumnSearchResultsRenderer"];
            if(!tcsrr_json.isObject())
                continue;

            const Json::Value &primary_contents_json = tcsrr_json["primaryContents"];
            if(!primary_contents_json.isObject())
                continue;

            const Json::Value &section_list_renderer_json = primary_contents_json["sectionListRenderer"];
            if(!section_list_renderer_json.isObject())
                continue;
            
            const Json::Value &contents2_json = section_list_renderer_json["contents"];
            if(!contents2_json.isArray())
                continue;
            
            for(const Json::Value &item_json : contents2_json) {
                if(!item_json.isObject())
                    continue;
                
                const Json::Value &item_section_renderer_json = item_json["itemSectionRenderer"];
                if(!item_section_renderer_json.isObject())
                    continue;

                parse_item_section_renderer(item_section_renderer_json, continuation_token, added_videos, result_items);
            }
        }

        // The continuation data can also contain continuation, but we ignore that for now. Only get the first continuation data
        if(!continuation_token.empty())
            search_suggestions_get_continuation(url, continuation_token, result_items);

        return SearchResult::OK;
    }

    PluginResult YoutubeSearchPage::submit(const std::string &title, const std::string &url, std::vector<Tab> &result_tabs) {
        (void)title;
        (void)url;
        result_tabs.push_back(Tab{create_body(), std::make_unique<YoutubeVideoPage>(program), nullptr});
        return PluginResult::OK;
    }

    void YoutubeSearchPage::search_suggestions_get_continuation(const std::string &url, const std::string &continuation_token, BodyItems &result_items) {
        std::string next_url = url + "&pbj=1&ctoken=" + continuation_token;

        std::vector<CommandArg> additional_args = {
            { "-H", "x-spf-referer: " + url },
            { "-H", "x-youtube-client-name: 1" },
            { "-H", "x-spf-previous: " + url },
            { "-H", "x-youtube-client-version: 2.20200626.03.00" },
            { "-H", "referer: " + url }
        };

        //std::vector<CommandArg> cookies = get_cookies();
        //additional_args.insert(additional_args.end(), cookies.begin(), cookies.end());

        Json::Value json_root;
        DownloadResult result = download_json(json_root, next_url, std::move(additional_args), true);
        if(result != DownloadResult::OK) return;

        if(!json_root.isArray())
            return;

        std::string next_continuation_token;
        std::unordered_set<std::string> added_videos;

        for(const Json::Value &json_item : json_root) {
            if(!json_item.isObject())
                continue;

            const Json::Value &response_json = json_item["response"];
            if(!response_json.isObject())
                continue;

            const Json::Value &continuation_contents_json = response_json["continuationContents"];
            if(!continuation_contents_json.isObject())
                continue;

            const Json::Value &item_section_continuation_json = continuation_contents_json["itemSectionContinuation"];
            if(!item_section_continuation_json.isObject())
                continue;

            // Note: item_section_continuation json object is compatible with item_section_renderer json object
            parse_item_section_renderer(item_section_continuation_json, next_continuation_token, added_videos, result_items);
        }
    }

    // TODO: Make this faster by using string search instead of parsing html.
    // TODO: If the result is a play
    BodyItems YoutubeVideoPage::get_related_media(const std::string &url) {
        BodyItems result_items;

        std::string modified_url = remove_index_from_playlist_url(url);
        std::vector<CommandArg> additional_args = {
            { "-H", "x-spf-referer: " + url },
            { "-H", "x-youtube-client-name: 1" },
            { "-H", "x-spf-previous: " + url },
            { "-H", "x-youtube-client-version: 2.20200626.03.00" },
            { "-H", "referer: " + url }
        };

        //std::vector<CommandArg> cookies = get_cookies();
        //additional_args.insert(additional_args.end(), cookies.begin(), cookies.end());

        Json::Value json_root;
        DownloadResult result = download_json(json_root, modified_url + "&pbj=1", std::move(additional_args), true);
        if(result != DownloadResult::OK) return result_items;

        if(!json_root.isArray())
            return result_items;

        std::unordered_set<std::string> added_videos;

        for(const Json::Value &json_item : json_root) {
            if(!json_item.isObject())
                continue;

            const Json::Value &response_json = json_item["response"];
            if(!response_json.isObject())
                continue;

            const Json::Value &contents_json = response_json["contents"];
            if(!contents_json.isObject())
                return result_items;

            const Json::Value &tcwnr_json = contents_json["twoColumnWatchNextResults"];
            if(!tcwnr_json.isObject())
                return result_items;

            const Json::Value &secondary_results_json = tcwnr_json["secondaryResults"];
            if(!secondary_results_json.isObject())
                return result_items;

            const Json::Value &secondary_results2_json = secondary_results_json["secondaryResults"];
            if(!secondary_results2_json.isObject())
                return result_items;
            
            const Json::Value &results_json = secondary_results2_json["results"];
            if(!results_json.isArray())
                return result_items;

            for(const Json::Value &item_json : results_json) {
                if(!item_json.isObject())
                    continue;

                auto body_item = parse_compact_video_renderer_json(item_json, added_videos);
                if(body_item)
                    result_items.push_back(std::move(body_item));
                
                const Json::Value &compact_autoplay_renderer_json = item_json["compactAutoplayRenderer"];
                if(!compact_autoplay_renderer_json.isObject())
                    continue;
                
                const Json::Value &item_contents_json = compact_autoplay_renderer_json["contents"];
                if(!item_contents_json.isArray())
                    continue;
                
                for(const Json::Value &content_item_json : item_contents_json) {
                    if(!content_item_json.isObject())
                        continue;
                    
                    auto body_item = parse_compact_video_renderer_json(content_item_json, added_videos);
                    if(body_item)
                        result_items.push_back(std::move(body_item));
                }
            }
        }

        return result_items;
    }
}