Repair broken source search (Philia, LikeManga, Greed, Comix, Mangago) + add MangaDex#4
Open
Superfish1000 wants to merge 2 commits into
Open
Conversation
Several sources changed framework/domain/API and their search (and in
some cases chapter listing) silently broke. Repaired:
- Philia Scans: migrated from WordPress (nonce/admin-ajax) to a Next.js
JSON site. search via /all-mangas?s= (a.manga-card); chapters via
GET /api/manga/{slug}/chapters.
- LikeManga: rebranded likemanga.in -> mgread.io (UIkit markup;
results in article.uk-grid-small > a.uk-link-heading).
- Greed Scans: greedscans.com -> greedscans.org and the search moved
client-side; use themesia admin-ajax action=ts_ac_do_search.
- Comix: API /api/v2 -> /api/v1; search is /manga?keyword=, response
fields are camelCase (hid, poster, latestChapter, ratedAvg, url).
(Chapter listing is auth-gated and left as-is.)
- Mangago: mangago.me -> mangago.zone.
Also switch /api/search and /api/chapters from the edge runtime to
nodejs: the edge fetch TLS fingerprint triggered false 403s/empty
responses from some hosts (e.g. Mangago) that work fine under node.
Add a new source:
- MangaDex (api.mangadex.org): official public API, no Cloudflare.
search /manga?title=&includes[]=cover_art; chapters via
/manga/{id}/feed?translatedLanguage[]=en (paginated).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Contributor
|
@Superfish1000 is attempting to deploy a commit to the googlyblox's projects Team on Vercel. A member of the Team first needs to authorize it. |
New source row (Active). Existing sources' statuses are maintained automatically by the CI health-check job (update-readme-health.ts), which only updates existing rows — new sources must be added manually. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Several sources had broken search (and in some cases chapter listing) because their sites changed framework, domain, or API. This repairs them and adds one new source.
Repaired
admin-ajaxflow to the site's new Next.js JSON API. Search viaGET /all-mangas?s=(a.manga-card), chapters viaGET /api/manga/{slug}/chapters.likemanga.in→mgread.io(UIkit theme; results now inarticle.uk-grid-small > a.uk-link-heading).greedscans.com→greedscans.org; search moved client-side, now uses the themesia autocompleteadmin-ajax.php?action=ts_ac_do_search./api/v2→/api/v1; search is/manga?keyword=, response fields are camelCase (hid,poster,latestChapter,ratedAvg,url). Chapter listing is auth-gated server-side and left unchanged.mangago.me→mangago.zone.Runtime
/api/searchand/api/chaptersfrom the edge runtime to nodejs. The edge fetch TLS fingerprint triggered false403/empty responses from some hosts (e.g. Mangago) that work fine under node.New source
api.mangadex.org) — official public API, no Cloudflare. Search/manga?title=&includes[]=cover_art; chapters via/manga/{id}/feed?translatedLanguage[]=en(paginated).Testing
Each source verified against a running server with
/api/searchand/api/chapters, using site-appropriate queries (many sources simply don't carry "Solo Leveling", so a multi-query matrix was used to distinguish genuinely-broken from no-match).tsc --noEmitpasses; lint clean.Not included
Sources still behind Cloudflare's JS challenge (UTOON, KappaBeast, TopManhua, Manhuaus, Rage Scans, Qi Scans) or on dead/parked domains are unchanged — they need a browser-engine solver (e.g. FlareSolverr), out of scope here.
🤖 Generated with Claude Code