Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX KomikCast: domain and getpages #6168

Merged
merged 3 commits into from
Aug 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions src/web/mjs/connectors/KomikCast.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,23 @@ export default class KomikCast extends WordPressMangastream {
super.id = 'komikcast';
super.label = 'KomikCast';
this.tags = [ 'manga', 'indonesian' ];
this.url = 'https://komikcast.io';
this.url = 'https://komikcast.vip';
this.path = '/daftar-komik/?list';

this.queryMangas = 'div.text-mode_list-items ul li a.series, div.text-mode_list-items ul li a.text-mode_list-item';
this.queryChapters = 'div.komik_info-chapters ul li.komik_info-chapters-item a.chapter-link-item';
this.queryChaptersTitle = undefined;
this.queryPages = 'div.main-reading-area img[src^="http"], div.separator img[src^="http"]';
this.queryPages = 'div.main-reading-area source[src^="http"], div.separator source[src^="http"]';
}

async _initializeConnector() {
// do nothing on purpose
}

async _getPages(chapter) {
const uri = new URL(chapter.id, this.url);
const request = new Request(uri, this.requestOptions);
const data = await this.fetchDOM(request, this.queryPages);
return data.map(image => this.createConnectorURI(this.getAbsolutePath(image, request.url)));
}
}
Loading