aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/MangaGeneric.cpp
blob: 767f0772febd2a7200a3373347947ee646899954 (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
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
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
#include "../../plugins/MangaGeneric.hpp"
#include "../../include/StringUtils.hpp"
#include "../../include/Theme.hpp"
#include <quickmedia/HtmlSearch.h>
#include <json/value.h>
#include <assert.h>

namespace QuickMedia {
    struct HtmlSearchUserdata {
        BodyItems *body_items;
        const char *field1 = nullptr;
        const char *field2 = nullptr;
        const char *field2_contains = nullptr;
    };

    enum class MergeType {
        THUMBNAIL,
        DESCRIPTION
    };

    struct HtmlMergeUserdata {
        MergeType type;
        BodyItemContext body_item_image_context;
        const char *field_name = nullptr;
        const char *field_contains = nullptr;
        const char *desc_prefix = nullptr;
    };

    struct HtmlListPageImagesUserdata {
        std::vector<std::string> *urls;
        const char *field_name = nullptr;
        const char *field_contains = nullptr;
    };

    struct HtmlPageCountUserdata {
        int num_pages = 0;
        const char *field_name = nullptr;
        const char *field_contains = nullptr;
    };

    struct HtmlPageImageUserdata {
        std::string *url = nullptr;
        const char *field_name = nullptr;
        const char *field_contains = nullptr;
    };

    static bool string_view_contains(const QuickMediaStringView str, const char *sub) {
        return memmem(str.data, str.size, sub, strlen(sub));
    }

    static QuickMediaStringView html_attr_or_inner_text(QuickMediaMatchNode *node, const char *field_name) {
        if(strcmp(field_name, "text") == 0)
            return quickmedia_html_node_get_text(node);
        else
            return quickmedia_html_node_get_attribute_value(node, field_name);
    }

    static void body_items_prepend_website_url(BodyItems &body_items, const std::string &website_url) {
        for(auto &body_item : body_items) {
            if(string_starts_with(body_item->url, "//"))
                body_item->url = "https://" + body_item->url.substr(2);
            else if(string_starts_with(body_item->url, "/"))
                body_item->url = website_url + body_item->url.substr(1);

            if(string_starts_with(body_item->thumbnail_url, "//"))
                body_item->thumbnail_url = "https://" + body_item->thumbnail_url.substr(2);
            else if(string_starts_with(body_item->thumbnail_url, "/"))
                body_item->thumbnail_url = website_url + body_item->thumbnail_url.substr(1);
        }
    }

    static int html_append_search(QuickMediaHtmlSearch *html_search, const char *html_query, HtmlSearchUserdata *search_userdata) {
        return quickmedia_html_find_nodes_xpath(html_search, html_query,
            [](QuickMediaMatchNode *node, void *userdata) {
                HtmlSearchUserdata *search_userdata = (HtmlSearchUserdata*)userdata;
                QuickMediaStringView field1_value = html_attr_or_inner_text(node, search_userdata->field1);
                if(search_userdata->field2) {
                    QuickMediaStringView field2_value = html_attr_or_inner_text(node, search_userdata->field2);
                    if(field1_value.data && field2_value.data && (!search_userdata->field2_contains || string_view_contains(field2_value, search_userdata->field2_contains))) {
                        std::string field1_fixed(field1_value.data, field1_value.size);
                        html_unescape_sequences(field1_fixed);
                        auto item = BodyItem::create(std::move(field1_fixed));
                        item->url = std::string(field2_value.data, field2_value.size);
                        search_userdata->body_items->push_back(std::move(item));
                    }
                } else {
                    if(field1_value.data) {
                        std::string field1_fixed(field1_value.data, field1_value.size);
                        html_unescape_sequences(field1_fixed);
                        auto item = BodyItem::create(std::move(field1_fixed));
                        search_userdata->body_items->push_back(std::move(item));
                    }
                }
                return 0;
            }, search_userdata);
    }

    static int html_body_item_merge(QuickMediaHtmlSearch *html_search, const char *html_query, HtmlMergeUserdata *merge_userdata) {
        return quickmedia_html_find_nodes_xpath(html_search, html_query,
            [](QuickMediaMatchNode *node, void *userdata) {
                HtmlMergeUserdata *merge_userdata = (HtmlMergeUserdata*)userdata;
                BodyItemContext &body_item_image_context = merge_userdata->body_item_image_context;
                QuickMediaStringView field_value = html_attr_or_inner_text(node, merge_userdata->field_name);
                if(body_item_image_context.index < body_item_image_context.body_items->size()
                    && field_value.data && (!merge_userdata->field_contains || string_view_contains(field_value, merge_userdata->field_contains)))
                {
                    std::string field_stripped(field_value.data, field_value.size);
                    html_unescape_sequences(field_stripped);
                    if(merge_userdata->type == MergeType::THUMBNAIL) {
                        (*body_item_image_context.body_items)[body_item_image_context.index]->thumbnail_url = std::move(field_stripped);
                        (*body_item_image_context.body_items)[body_item_image_context.index]->thumbnail_size = {101, 141};
                    } else if(merge_userdata->type == MergeType::DESCRIPTION) {
                        const char *prefix = merge_userdata->desc_prefix ? merge_userdata->desc_prefix : "";
                        (*body_item_image_context.body_items)[body_item_image_context.index]->set_description(prefix + std::move(field_stripped));
                        (*body_item_image_context.body_items)[body_item_image_context.index]->set_description_color(get_theme().faded_text_color);
                    }
                    body_item_image_context.index++;
                }
                return 0;
            }, merge_userdata);
    }

    static int html_get_page_url(QuickMediaHtmlSearch *html_search, const char *html_query, HtmlPageImageUserdata *page_image_userdata) {
        return quickmedia_html_find_nodes_xpath(html_search, html_query,
            [](QuickMediaMatchNode *node, void *userdata) {
                HtmlPageImageUserdata *page_image_userdata = (HtmlPageImageUserdata*)userdata;
                QuickMediaStringView field1_value = html_attr_or_inner_text(node, page_image_userdata->field_name);
                if(page_image_userdata->url->empty() && field1_value.data && (!page_image_userdata->field_contains || string_view_contains(field1_value, page_image_userdata->field_contains))) {
                    *page_image_userdata->url = std::string(field1_value.data, field1_value.size);
                }
                return 0;
            }, page_image_userdata);
    }

    MangaGenericSearchPage::MangaGenericSearchPage(Program *program, const char *service_name, const char *website_url, bool fail_on_http_error) :
        Page(program), service_name(service_name), website_url(website_url ? website_url : ""), fail_on_http_error(fail_on_http_error)
    {
        if(!this->website_url.empty()) {
            if(this->website_url.back() != '/')
                this->website_url.push_back('/');
        }
    }

    SearchResult MangaGenericSearchPage::search(const std::string &str, BodyItems &result_items) {
        if(str.empty())
            return SearchResult::OK;

        return plugin_result_to_search_result(get_page(str, 0, result_items));
    }

    PluginResult MangaGenericSearchPage::get_page(const std::string &url, bool is_post, const std::vector<MangaFormDataStr> &form_data, BodyItems &result_items) {
        std::vector<CommandArg> args;
        if(!website_url.empty())
            args.push_back({ "-H", "referer: " + website_url });

        if(is_post) {
            args.push_back({ "-X", "POST" });
            args.push_back({ "-H", "x-requested-with: XMLHttpRequest" });
            for(const MangaFormDataStr &form : form_data) {
                args.push_back({ "--form-string", std::string(form.key) + "=" + form.value });
            }

            assert(search_query.json_handler);
            std::string err_msg;
            Json::Value json_root;
            if(download_json(json_root, url, args, true, fail_on_http_error ? nullptr : &err_msg) != DownloadResult::OK)
                return PluginResult::NET_ERR;

            result_items = search_query.json_handler(json_root);
            body_items_prepend_website_url(result_items, website_url);
            return PluginResult::OK;
        }

        std::string target_url;
        std::string website_data;
        std::vector<std::string> website_headers;
        if(download_to_string(url, website_data, args, true, fail_on_http_error, false, &website_headers) != DownloadResult::OK)
            return PluginResult::NET_ERR;

        if(website_data.empty())
            return PluginResult::OK;

        QuickMediaHtmlSearch html_search;
        int result = quickmedia_html_search_init(&html_search, website_data.c_str(), website_data.size());
        if(result != 0)
            goto cleanup;

        for(const TextQuery &text_query : text_queries) {
            if(!text_query.html_query || !text_query.title_field) {
                assert(false);
                result = -1;
                goto cleanup;
            }

            BodyItems new_result_items;
            HtmlSearchUserdata search_userdata;
            search_userdata.body_items = &new_result_items;
            search_userdata.field1 = text_query.title_field;
            search_userdata.field2 = text_query.url_field;
            search_userdata.field2_contains = text_query.url_contains;

            result = html_append_search(&html_search, text_query.html_query, &search_userdata);
            if(result != 0)
                goto cleanup;

            if(!text_query.url_field && !new_result_items.empty()) {
                if(target_url.empty() && !website_headers.empty()) {
                    target_url = header_extract_value(website_headers.front(), "location");
                    if(target_url.empty()) {
                        fprintf(stderr, "Failed to extract target location from %s\n", url.c_str());
                        result = -1;
                        goto cleanup;
                    }
                }

                for(auto &new_body_item : new_result_items) {
                    new_body_item->url = target_url;
                }
            }

            result_items.insert(result_items.end(), std::move_iterator(new_result_items.begin()), std::move_iterator(new_result_items.end()));
        }

        for(const DescriptionQuery &description_query : description_queries) {
            assert(description_query.html_query && description_query.field_name);
            if(description_query.html_query && description_query.field_name) {
                HtmlMergeUserdata merge_userdata;
                merge_userdata.type = MergeType::DESCRIPTION;
                merge_userdata.body_item_image_context.body_items = &result_items;
                merge_userdata.body_item_image_context.index = 0;
                merge_userdata.field_name = description_query.field_name;
                merge_userdata.field_contains = nullptr;
                result = html_body_item_merge(&html_search, description_query.html_query, &merge_userdata);
                if(result != 0)
                    goto cleanup;
            }
        }

        for(const ThumbnailQuery &thumbnail_query : thumbnail_queries) {
            assert(thumbnail_query.html_query && thumbnail_query.field_name);
            if(thumbnail_query.html_query && thumbnail_query.field_name) {
                HtmlMergeUserdata merge_userdata;
                merge_userdata.type = MergeType::THUMBNAIL;
                merge_userdata.body_item_image_context.body_items = &result_items;
                merge_userdata.body_item_image_context.index = 0;
                merge_userdata.field_name = thumbnail_query.field_name;
                merge_userdata.field_contains = thumbnail_query.field_contains;
                result = html_body_item_merge(&html_search, thumbnail_query.html_query, &merge_userdata);
                if(result != 0)
                    goto cleanup;
            }
        }

        body_items_prepend_website_url(result_items, website_url);

        cleanup:
        quickmedia_html_search_deinit(&html_search);
        if(result == 0) {
            return PluginResult::OK;
        } else {
            result_items.clear();
            return PluginResult::ERR;
        }
    }

    PluginResult MangaGenericSearchPage::get_page(const std::string &str, int page, BodyItems &result_items) {
        if(search_query.is_post) {
            if(page != 0)
                return PluginResult::OK;

            std::vector<MangaFormDataStr> form_data(search_query.form_data.size());
            for(size_t i = 0; i < form_data.size(); ++i) {
                MangaFormDataStr &form = form_data[i];
                form.key = search_query.form_data[i].key;
                form.value = search_query.form_data[i].value;
                string_replace_all(form.value, "%s", str);
            }
            return get_page(search_query.search_template, search_query.is_post, form_data, result_items);
        } else {
            std::string url = search_query.search_template;
            string_replace_all(url, "%s", url_param_encode(str));
            size_t num_replaced = string_replace_all(url, "%p", std::to_string(search_query.page_start + page));
            if(num_replaced == 0 && page != 0)
                return PluginResult::OK;
            else
                return get_page(url, false, {}, result_items);
        }
    }

    PluginResult MangaGenericSearchPage::submit(const SubmitArgs &submit_args, std::vector<Tab> &result_tabs) {
        if(!list_chapters_query.html_query || !list_chapters_query.title_field || !list_chapters_query.url_field) {
            assert(false);
            return PluginResult::ERR;
        }

        std::vector<CommandArg> args;
        if(!website_url.empty())
            args.push_back({ "-H", "referer: " + website_url });

        std::map<std::string, std::string> creators; // key = name, value = url
        BodyItems chapters_items;
        HtmlSearchUserdata search_userdata;
        search_userdata.body_items = &chapters_items;
        search_userdata.field1 = list_chapters_query.title_field;
        search_userdata.field2 = list_chapters_query.url_field;
        search_userdata.field2_contains = list_chapters_query.url_contains;

        std::string website_data;
        if(download_to_string(submit_args.url, website_data, args, true, fail_on_http_error) != DownloadResult::OK)
            return PluginResult::NET_ERR;

        QuickMediaHtmlSearch html_search;
        int result = quickmedia_html_search_init(&html_search, website_data.c_str(), website_data.size());
        if(result != 0)
            goto cleanup;

        result = html_append_search(&html_search, list_chapters_query.html_query, &search_userdata);
        if(result != 0)
            goto cleanup;

        assert(!list_chapters_query.uploaded_time_html_query || list_chapters_query.uploaded_time_field_name);
        if(list_chapters_query.uploaded_time_html_query && list_chapters_query.uploaded_time_field_name) {
            HtmlMergeUserdata merge_userdata;
            merge_userdata.type = MergeType::DESCRIPTION;
            merge_userdata.body_item_image_context.body_items = &chapters_items;
            merge_userdata.body_item_image_context.index = 0;
            merge_userdata.field_name = list_chapters_query.uploaded_time_field_name;
            merge_userdata.field_contains = list_chapters_query.uploaded_time_field_contains;
            merge_userdata.desc_prefix = "Uploaded: ";
            result = html_body_item_merge(&html_search, list_chapters_query.uploaded_time_html_query, &merge_userdata);
        }

        struct HtmlAuthorsUserdata {
            std::map<std::string, std::string> *creators;
            const AuthorsQuery *authors_query;
        };

        for(const AuthorsQuery &authors_query : authors_queries) {
            if(authors_query.html_query && authors_query.title_field && authors_query.url_field) {
                HtmlAuthorsUserdata authors_userdata;
                authors_userdata.creators = &creators;
                authors_userdata.authors_query = &authors_query;

                quickmedia_html_find_nodes_xpath(&html_search, authors_query.html_query,
                    [](QuickMediaMatchNode *node, void *userdata) {
                        HtmlAuthorsUserdata *authors_userdata = (HtmlAuthorsUserdata*)userdata;
                        QuickMediaStringView title_value = html_attr_or_inner_text(node, authors_userdata->authors_query->title_field);
                        QuickMediaStringView url_value = html_attr_or_inner_text(node, authors_userdata->authors_query->url_field);
                        if(title_value.data && url_value.data && (!authors_userdata->authors_query->url_contains || string_view_contains(url_value, authors_userdata->authors_query->url_contains)))
                            (*authors_userdata->creators)[std::string(title_value.data, title_value.size)] = std::string(url_value.data, url_value.size);
                        return 0;
                    }, &authors_userdata);
            }
        }

        body_items_prepend_website_url(chapters_items, website_url);

        for(auto &it : creators) {
            if(string_starts_with(it.second, "//"))
                it.second = "https://" + it.second.substr(2);
            else if(string_starts_with(it.second, "/"))
                it.second = website_url + it.second.substr(1);
        }

        cleanup:
        quickmedia_html_search_deinit(&html_search);
        if(result != 0)
            return PluginResult::ERR;

        auto body = create_body();
        body->set_items(std::move(chapters_items));
        auto chapters_page = std::make_unique<MangaGenericChaptersPage>(program, submit_args.title, submit_args.url, submit_args.thumbnail_url, manga_id_extractor, service_name, website_url, &list_page_query, fail_on_http_error);
        result_tabs.push_back(Tab{std::move(body), std::move(chapters_page), create_search_bar("Search...", SEARCH_DELAY_FILTER)});

        for(auto &it : creators) {
            Creator creator;
            creator.name = it.first;
            creator.url = it.second;
            result_tabs.push_back(Tab{create_body(), std::make_unique<MangaGenericCreatorPage>(program, this, std::move(creator)), create_search_bar("Search...", SEARCH_DELAY_FILTER)});
        }

        return PluginResult::OK;
    }

    PluginResult MangaGenericChaptersPage::submit(const SubmitArgs &args, std::vector<Tab> &result_tabs) {
        result_tabs.push_back(Tab{nullptr, std::make_unique<MangaGenericImagesPage>(program, content_title, args.title, args.url, service_name, website_url, list_page_query, fail_on_http_error, thumbnail_url), nullptr});
        return PluginResult::OK;
    }

    bool MangaGenericChaptersPage::extract_id_from_url(const std::string &url, std::string &manga_id) const {
        size_t start_index = url.rfind(manga_id_extractor.prefix);
        if(start_index == std::string::npos)
            return false;

        start_index += strlen(manga_id_extractor.prefix);
        if(!manga_id_extractor.end) {
            manga_id = url.substr(start_index);
            return true;
        }
        
        size_t end_index = url.find(manga_id_extractor.end, start_index);
        if(end_index == std::string::npos) {
            manga_id = url.substr(start_index);
            return true;
        }
        
        manga_id = url.substr(start_index, end_index - start_index);
        return true;
    }

    PluginResult MangaGenericCreatorPage::submit(const SubmitArgs &args, std::vector<Tab> &result_tabs) {
        return search_page->submit(args, result_tabs);
    }

    PluginResult MangaGenericCreatorPage::lazy_fetch(BodyItems &result_items) {
        return search_page->get_page(creator.url, false, {}, result_items);
    }

    static bool is_number(const char *str) {
        while(*str) {
            char c = *str;
            if(c < '0' || c > '9')
                return false;
            ++str;
        }
        return true;
    }

    ImageResult MangaGenericImagesPage::update_image_urls(int &num_images) {
        num_images = 0;
        switch(list_page_query->type) {
            case ListPageQueryType::IMAGES: {
                ImageResult result = get_page_image_urls();
                if(result != ImageResult::OK) return result;
                num_images = chapter_image_urls.size();
                return ImageResult::OK;
            }
            case ListPageQueryType::PAGINATION: {
                const ListPagePaginationQuery *list_page_pagination_query = &list_page_query->pagination_query;
                if(!list_page_pagination_query->pages_html_query || !list_page_pagination_query->pages_field_name
                    || !list_page_pagination_query->image_html_query || !list_page_pagination_query->image_field_name
                    || !list_page_pagination_query->next_page_html_query || !list_page_pagination_query->next_page_field_name)
                {
                    assert(false);
                    return ImageResult::ERR;
                }

                current_image_url.clear();
                next_page_url.clear();

                HtmlPageCountUserdata page_count_userdata;
                page_count_userdata.num_pages = 0;
                page_count_userdata.field_name = list_page_pagination_query->pages_field_name;
                page_count_userdata.field_contains = nullptr;

                HtmlPageImageUserdata page_image_userdata;
                page_image_userdata.url = &current_image_url;
                page_image_userdata.field_name = list_page_pagination_query->image_field_name;
                page_image_userdata.field_contains = list_page_pagination_query->image_field_contains;

                HtmlPageImageUserdata next_page_userdata;
                next_page_userdata.url = &next_page_url;
                next_page_userdata.field_name = list_page_pagination_query->next_page_field_name;
                next_page_userdata.field_contains = list_page_pagination_query->next_page_field_contains;

                std::vector<CommandArg> args;
                if(!website_url.empty())
                    args.push_back({ "-H", "referer: " + website_url });

                std::string website_data;
                if(download_to_string(url, website_data, args, true, fail_on_http_error) != DownloadResult::OK)
                    return ImageResult::NET_ERR;

                QuickMediaHtmlSearch html_search;
                int result = quickmedia_html_search_init(&html_search, website_data.c_str(), website_data.size());
                if(result != 0)
                    goto cleanup;

                result = quickmedia_html_find_nodes_xpath(&html_search, list_page_pagination_query->pages_html_query,
                    [](QuickMediaMatchNode *node, void *userdata) {
                        HtmlPageCountUserdata *page_count_userdata = (HtmlPageCountUserdata*)userdata;
                        QuickMediaStringView field1_value = html_attr_or_inner_text(node, page_count_userdata->field_name);
                        if(field1_value.data) {
                            std::string field_value_stripped(field1_value.data, field1_value.size);
                            if(is_number(field_value_stripped.c_str()))
                                page_count_userdata->num_pages = strtoll(field_value_stripped.c_str(), nullptr, 10);
                        }
                        return 0;
                    }, &page_count_userdata);

                if(result != 0 || page_count_userdata.num_pages == 0) {
                    result = -1;
                    goto cleanup;
                }

                result = html_get_page_url(&html_search, list_page_pagination_query->image_html_query, &page_image_userdata);
                if(result != 0 || current_image_url.empty()) {
                    result = -1;
                    goto cleanup;
                }

                result = html_get_page_url(&html_search, list_page_pagination_query->next_page_html_query, &next_page_userdata);
                if(next_page_url.empty())
                    result = -1;

                cleanup:
                quickmedia_html_search_deinit(&html_search);
                if(result != 0) {
                    current_image_url.clear();
                    next_page_url.clear();
                    return ImageResult::ERR;
                }

                if(string_starts_with(current_image_url, "//"))
                    current_image_url = "https://" + current_image_url.substr(2);
                else if(string_starts_with(current_image_url, "/"))
                    current_image_url = website_url + current_image_url.substr(1);

                num_images = page_count_userdata.num_pages;
                chapter_num_pages = num_images;
                return ImageResult::OK;
            }
            case ListPageQueryType::CUSTOM: {
                ImageResult result = get_page_image_urls();
                if(result != ImageResult::OK) return result;
                num_images = chapter_image_urls.size();
                return ImageResult::OK;
            }
        }
        return ImageResult::OK;
    }

    ImageResult MangaGenericImagesPage::for_each_page_in_chapter(PageCallback callback) {
        switch(list_page_query->type) {
            case ListPageQueryType::IMAGES: {
                for(const std::string &url : chapter_image_urls) {
                    if(!callback(url))
                        break;
                }
                return ImageResult::OK;
            }
            case ListPageQueryType::PAGINATION: {
                const ListPagePaginationQuery *list_page_pagination_query = &list_page_query->pagination_query;
                if(!list_page_pagination_query->image_html_query || !list_page_pagination_query->image_field_name
                    || !list_page_pagination_query->next_page_html_query || !list_page_pagination_query->next_page_field_name)
                {
                    assert(false);
                    return ImageResult::ERR;
                }

                if(!callback(current_image_url))
                    return ImageResult::OK;

                for(int i = 0; i < chapter_num_pages; ++i) {
                    std::string full_url = url + next_page_url;
                    current_image_url.clear();
                    next_page_url.clear();

                    HtmlPageImageUserdata page_image_userdata;
                    page_image_userdata.url = &current_image_url;
                    page_image_userdata.field_name = list_page_pagination_query->image_field_name;
                    page_image_userdata.field_contains = list_page_pagination_query->image_field_contains;

                    HtmlPageImageUserdata next_page_userdata;
                    next_page_userdata.url = &next_page_url;
                    next_page_userdata.field_name = list_page_pagination_query->next_page_field_name;
                    next_page_userdata.field_contains = list_page_pagination_query->next_page_field_contains;

                    std::vector<CommandArg> args;
                    if(!website_url.empty())
                        args.push_back({ "-H", "referer: " + website_url });

                    std::string image_src;
                    std::string website_data;
                    DownloadErrorHandler error_callback = [](std::string&){ return true; };
                    if(fail_on_http_error)
                        error_callback = nullptr;
                    if(download_to_string_cache(full_url, website_data, args, true, error_callback) != DownloadResult::OK)
                        return ImageResult::ERR;

                    QuickMediaHtmlSearch html_search;
                    int result = quickmedia_html_search_init(&html_search, website_data.c_str(), website_data.size());
                    if(result != 0)
                        goto cleanup;

                    html_get_page_url(&html_search, list_page_pagination_query->image_html_query, &page_image_userdata);
                    html_get_page_url(&html_search, list_page_pagination_query->next_page_html_query, &next_page_userdata);

                    cleanup:
                    quickmedia_html_search_deinit(&html_search);

                    if(string_starts_with(current_image_url, "//"))
                        current_image_url = "https://" + current_image_url.substr(2);
                    else if(string_starts_with(current_image_url, "/"))
                        current_image_url = website_url + current_image_url.substr(1);

                    if(!callback(current_image_url))
                        break;
                }

                return ImageResult::OK;
            }
            case ListPageQueryType::CUSTOM: {
                for(const std::string &url : chapter_image_urls) {
                    if(!callback(url))
                        break;
                }
                return ImageResult::OK;
            }
        }
        return ImageResult::OK;
    }

    ImageResult MangaGenericImagesPage::get_page_image_urls() {
        std::vector<CommandArg> args;
        if(!website_url.empty())
            args.push_back({ "-H", "referer: " + website_url });

        std::string website_data;
        if(download_to_string(url, website_data, args, true, fail_on_http_error) != DownloadResult::OK)
            return ImageResult::NET_ERR;

        if(list_page_query->type == ListPageQueryType::IMAGES) {
            const ListPageImagesQuery *list_page_images_query = &list_page_query->images_query;
            if(!list_page_images_query->html_query || !list_page_images_query->field_name) {
                assert(false);
                return ImageResult::ERR;
            }

            HtmlListPageImagesUserdata list_page_images_userdata;
            list_page_images_userdata.urls = &chapter_image_urls;
            list_page_images_userdata.field_name = list_page_images_query->field_name;
            list_page_images_userdata.field_contains = list_page_images_query->field_contains;

            QuickMediaHtmlSearch html_search;
            int result = quickmedia_html_search_init(&html_search, website_data.c_str(), website_data.size());
            if(result != 0)
                goto cleanup;

            result = quickmedia_html_find_nodes_xpath(&html_search, list_page_images_query->html_query,
                [](QuickMediaMatchNode *node, void *userdata) {
                    HtmlListPageImagesUserdata *list_page_images_userdata = (HtmlListPageImagesUserdata*)userdata;
                    QuickMediaStringView field1_value = html_attr_or_inner_text(node, list_page_images_userdata->field_name);
                    if(field1_value.data && (!list_page_images_userdata->field_contains || string_view_contains(field1_value, list_page_images_userdata->field_contains))) {
                        list_page_images_userdata->urls->push_back(std::string(field1_value.data, field1_value.size));
                    }
                    return 0;
                }, &list_page_images_userdata);

            if(result == 0 && !chapter_image_urls.empty() && list_page_images_query->post_handler)
                list_page_images_query->post_handler(chapter_image_urls);

            cleanup:
            quickmedia_html_search_deinit(&html_search);
            if(result != 0 || chapter_image_urls.empty()) {
                chapter_image_urls.clear();
                return ImageResult::ERR;
            }
        } else if(list_page_query->type == ListPageQueryType::CUSTOM) {
            const ListPageCustomQuery *list_page_custom_query = &list_page_query->custom_query;
            if(!list_page_custom_query->handler) {
                assert(false);
                return ImageResult::ERR;
            }
            chapter_image_urls = list_page_custom_query->handler(website_data);
        } else {
            assert(false);
            return ImageResult::ERR;
        }

        for(std::string &url : chapter_image_urls) {
            if(string_starts_with(url, "//"))
                url = "https://" + url.substr(2);
            else if(string_starts_with(url, "/"))
                url = website_url + url.substr(1);
        }

        chapter_num_pages = chapter_image_urls.size();
        return ImageResult::OK;
    }


    MangaGenericSearchPage& MangaGenericSearchPage::search_handler(const char *search_template, int page_start) {
        search_query.search_template = search_template;
        search_query.page_start = page_start;
        search_query.form_data.clear();
        search_query.is_post = false;
        search_query.json_handler = nullptr;
        return *this;
    }

    MangaGenericSearchPage& MangaGenericSearchPage::search_post_handler(const char *url, std::vector<MangaFormData> form_data, SearchQueryJsonHandler result_handler) {
        search_query.search_template = url;
        search_query.page_start = 1;
        search_query.form_data = std::move(form_data);
        search_query.is_post = true;
        search_query.json_handler = std::move(result_handler);
        return *this;
    }

    MangaGenericSearchPage& MangaGenericSearchPage::text_handler(std::vector<TextQuery> queries) {
        text_queries = std::move(queries);
        return *this;
    }

    MangaGenericSearchPage& MangaGenericSearchPage::description_handler(std::vector<DescriptionQuery> queries) {
        description_queries = std::move(queries);
        return *this;
    }

    MangaGenericSearchPage& MangaGenericSearchPage::thumbnail_handler(std::vector<ThumbnailQuery> queries) {
        thumbnail_queries = std::move(queries);
        return *this;
    }

    MangaGenericSearchPage& MangaGenericSearchPage::authors_handler(std::vector<AuthorsQuery> queries) {
        authors_queries = std::move(queries);
        return *this;
    }

    MangaGenericSearchPage& MangaGenericSearchPage::list_chapters_handler(const char *html_query, const char *title_field, const char *url_field, const char *url_contains) {
        list_chapters_query.html_query = html_query;
        list_chapters_query.title_field = title_field;
        list_chapters_query.url_field = url_field;
        list_chapters_query.url_contains = url_contains;
        return *this;
    }

    MangaGenericSearchPage& MangaGenericSearchPage::list_chapters_uploaded_time_handler(const char *html_query, const char *field_name, const char *field_contains) {
        list_chapters_query.uploaded_time_html_query = html_query;
        list_chapters_query.uploaded_time_field_name = field_name;
        list_chapters_query.uploaded_time_field_contains = field_contains;
        return *this;
    }

    MangaGenericSearchPage& MangaGenericSearchPage::list_page_images_handler(const char *html_query, const char *field_name, const char *field_contains, ListPageImagesQueryPost post_handler) {
        list_page_query.type = ListPageQueryType::IMAGES;
        list_page_query.images_query.html_query = html_query;
        list_page_query.images_query.field_name = field_name;
        list_page_query.images_query.field_contains = field_contains;
        list_page_query.images_query.post_handler = std::move(post_handler);
        return *this;
    }

    MangaGenericSearchPage& MangaGenericSearchPage::list_page_images_pagination_handler(
        const char *pages_html_query, const char *pages_field_name,
        const char *image_html_query, const char *image_field_name, const char *image_field_contains,
        const char *next_page_html_query, const char *next_page_field_name, const char *next_page_field_contains)
    {
        list_page_query.type = ListPageQueryType::PAGINATION;
        list_page_query.pagination_query.pages_html_query = pages_html_query;
        list_page_query.pagination_query.pages_field_name = pages_field_name;

        list_page_query.pagination_query.image_html_query = image_html_query;
        list_page_query.pagination_query.image_field_name = image_field_name;
        list_page_query.pagination_query.image_field_contains = image_field_contains;

        list_page_query.pagination_query.next_page_html_query = next_page_html_query;
        list_page_query.pagination_query.next_page_field_name = next_page_field_name;
        list_page_query.pagination_query.next_page_field_contains = next_page_field_contains;
        return *this;
    }

    MangaGenericSearchPage& MangaGenericSearchPage::list_page_images_custom_handler(ListPageCustomHandler handler) {
        assert(handler);
        list_page_query.type = ListPageQueryType::CUSTOM;
        list_page_query.custom_query.handler = std::move(handler);
        return *this;
    }

    MangaGenericSearchPage& MangaGenericSearchPage::manga_id_handler(const char *prefix, const char *end) {
        manga_id_extractor.prefix = prefix;
        manga_id_extractor.end = end;
        return *this;
    }
}