diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index 6339a335..00000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,8 +0,0 @@ -blank_issues_enabled: false -contact_links: - - name: ⚠️ Application issue - url: https://github.com/kodjodevf/mangayomi/issues/new/choose - about: Issues and requests about the app itself should be opened in the mangayomi repository instead - - name: Mangayomi app GitHub repository - url: https://github.com/kodjodevf/mangayomi - about: Issues about the app itself should be opened here instead. diff --git a/.github/ISSUE_TEMPLATE/report_issue.yml b/.github/ISSUE_TEMPLATE/report_issue.yml deleted file mode 100644 index 16ca391b..00000000 --- a/.github/ISSUE_TEMPLATE/report_issue.yml +++ /dev/null @@ -1,100 +0,0 @@ -name: 🐞 Issue report -description: Report a source issue in Mangayomi -labels: [Bug] -body: - - - type: input - id: source - attributes: - label: Source information - description: | - You can find the extension name and version in **Browse → Extensions**. - placeholder: | - Example: "Gogoanime 0.0.35 (English)" - validations: - required: true - - - type: input - id: language - attributes: - label: Source language - placeholder: | - Example: "English" - validations: - required: true - - - type: textarea - id: reproduce-steps - attributes: - label: Steps to reproduce - description: Provide an example of the issue. - placeholder: | - Example: - 1. First step - 2. Second step - 3. Issue here - validations: - required: true - - - type: textarea - id: expected-behavior - attributes: - label: Expected behavior - placeholder: | - Example: - "This should happen..." - validations: - required: true - - - type: textarea - id: actual-behavior - attributes: - label: Actual behavior - placeholder: | - Example: - "This happened instead..." - validations: - required: true - - - type: input - id: mangayomi-version - attributes: - label: Mangayomi version - description: | - You can find your Mangayomi version in **More → About**. - placeholder: | - Example: "0.0.67" - validations: - required: true - - - type: input - id: device - attributes: - label: Device - description: List your device, model and the OS version. - placeholder: | - Example: "Google Pixel 5 Android 11" - validations: - required: true - - - type: textarea - id: other-details - attributes: - label: Other details - placeholder: | - Additional details and attachments. - - - type: checkboxes - id: acknowledgements - attributes: - label: Acknowledgements - description: Your issue will be closed if you haven't done these steps. - options: - - label: I have searched the existing issues and this is a new ticket, **NOT** a duplicate or related to another open or closed issue. - required: true - - label: I have written a short but informative title. - required: true - - label: I have updated all installed extensions. - required: true - - label: If this is an issue with the app itself, I should be opening an issue in the [app repository](https://github.com/kodjodevf/mangayomi/issues/new/choose). - required: true diff --git a/.github/ISSUE_TEMPLATE/request_feature.yml b/.github/ISSUE_TEMPLATE/request_feature.yml deleted file mode 100644 index d10e5c99..00000000 --- a/.github/ISSUE_TEMPLATE/request_feature.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: ⭐ Feature request -description: Suggest a feature to improve an existing source -labels: [Feature request] -body: - - - type: input - id: source - attributes: - label: Source name - description: | - You can find the extension name in **Browse → Extensions**. - placeholder: | - Example: "AniWatch" - validations: - required: true - - - type: input - id: language - attributes: - label: Source language - placeholder: | - Example: "English" - validations: - required: true - - - type: textarea - id: feature-description - attributes: - label: Describe your suggested feature - description: How can an existing extension be improved? - placeholder: | - Example: - "It should work like this..." - validations: - required: true - - - type: textarea - id: other-details - attributes: - label: Other details - placeholder: | - Additional details and attachments. - - - type: checkboxes - id: acknowledgements - attributes: - label: Acknowledgements - description: Your issue will be closed if you haven't done these steps. - options: - - label: I have searched the existing issues and this is a new ticket, **NOT** a duplicate or related to another open or closed issue. - required: true - - label: I have written a short but informative title. - required: true - - label: If this is an issue with the app itself, I should be opening an issue in the [app repository](https://github.com/kodjodevf/mangayomi/issues/new/choose). - required: true diff --git a/.github/ISSUE_TEMPLATE/request_source.yml b/.github/ISSUE_TEMPLATE/request_source.yml deleted file mode 100644 index 21ded8d6..00000000 --- a/.github/ISSUE_TEMPLATE/request_source.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: 🌐 Source request -description: Suggest a new source for Mangayomi -labels: [Source request] -body: - - - type: input - id: name - attributes: - label: Source name - placeholder: | - Example: "Not Real Source" - validations: - required: true - - - type: input - id: link - attributes: - label: Source link - placeholder: | - Example: "https://notrealsource.org" - validations: - required: true - - - type: input - id: language - attributes: - label: Source language - placeholder: | - Example: "English" - validations: - required: true - - - type: textarea - id: other-details - attributes: - label: Other details - placeholder: | - Additional details and attachments. - Example: "+18/NSFW = yes" - - - type: checkboxes - id: acknowledgements - attributes: - label: Acknowledgements - description: Your issue will be closed if you haven't done these steps. - options: - - label: I have searched the existing issues and this is a new ticket, **NOT** a duplicate or related to another open or closed issue. - required: true - - label: I have written a title with source name. - required: true - - label: I have checked that the extension does not already exist by searching the [GitHub repository](https://github.com/kodjodevf/mangayomi-extensions/) and verified it does not appear in the code base. - required: true diff --git a/.github/workflows/gen_index.yml b/.github/workflows/gen_index.yml deleted file mode 100644 index b1a0709c..00000000 --- a/.github/workflows/gen_index.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Generate json index - -on: - push: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Dart - uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603 - - - name: Generage - run: | - dart run source_generator.dart - - - name: Commit and Push Changes - run: | - git config --local user.email "github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - git checkout main - git add index.json - git add anime_index.json - git commit -m "Update extensions" - git push origin main --force \ No newline at end of file diff --git a/1.png b/1.png new file mode 100644 index 00000000..bdd3cc51 Binary files /dev/null and b/1.png differ diff --git a/2.png b/2.png new file mode 100644 index 00000000..3271a703 Binary files /dev/null and b/2.png differ diff --git a/3.png b/3.png new file mode 100644 index 00000000..8a888eaf Binary files /dev/null and b/3.png differ diff --git a/4.png b/4.png new file mode 100644 index 00000000..9baac925 Binary files /dev/null and b/4.png differ diff --git a/5.png b/5.png new file mode 100644 index 00000000..68533371 Binary files /dev/null and b/5.png differ diff --git a/6.png b/6.png new file mode 100644 index 00000000..1d458a0e Binary files /dev/null and b/6.png differ diff --git a/CONTRIBUTING-JS.md b/CONTRIBUTING-JS.md deleted file mode 100644 index d95e53dc..00000000 --- a/CONTRIBUTING-JS.md +++ /dev/null @@ -1,205 +0,0 @@ -# Contributing - -This guide have some instructions and tips on how to create a new Mangayomi extension on js extension. - -## Prerequisites - -Before starting please have installed the recent desktop version of the mangayomi application preferably or if you want with a tablet too. - - -### Writing your extension -1. Open the app. -2. Go to extension tab : -![1](https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/screenshots/1.png) -3. then click `+` and you will see : -![2](https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/screenshots/2.png) -4. Fill in the fields with your new source that you would like to create, -![3](https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/screenshots/3.png) -NB: only the `ApiUrl` field is optional -then click on save -5. you will see your new source in the extension list -![4](https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/screenshots/4.png) -click to open settings -6. After click on edit code -![5](https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/screenshots/5.png) -7. Finally you can now write the extension -![6](https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/screenshots/6.png) -- This page contains three parts: - - Code editor: where you will write your code - - Fecth result: where you will test the different implemented methods by having a result in the expected format - - Console: which will show you the logs - -Once extension is ready you can relocate your code into `mangayomi-extension` project in a `src` or `multisrc` package and create a Pull Request. - -### Source - -| Field | Description | -| ----- | ----------- | -| `name` | Name displayed in the "Sources" tab in Mangayomi. | -| `baseUrl` | Base URL of the source without any trailing slashes. | -| `apiUrl` | (Optional, defaults is empty) Api URL of the source with trailing slashes. | -| `lang` | An ISO 639-1 compliant language code (two letters in lower case in most cases, but can also include the country/dialect part by using a simple dash character). | -| `id` | Identifier of your source, automatically set in `Source`. It should only be manually overriden if you need to copy an existing autogenerated ID. | -| `isManga` | (Optional, defaults to `true`) specify source type (false for anime and true for manga)| -| `dateFormat` | (Optional, defaults is empty) | -| `iconUrl` | The extension icon URL | -| `version` | The extension version code. This must be incremented with any change to the code. | -| `dateFormatLocale` | (Optional, defaults is empty) | -| `isNsfw` | (Optional, defaults to `false`) Flag to indicate that a source contains NSFW content. | - -### Extension call flow - -#### Popular manga - -a.k.a. the Browse source entry point in the app (invoked by tapping on the source name). - -- The app calls `getPopular` which should return a JSON - ```bash - { - 'list': array of {'url':string,'name':string,'link':string}, - hasNextPage: Boolean - } - ``` - - This method supports pagination. When user scrolls the manga list and more results must be fetched, the app calls it again with increasing `page` values(starting with `page=1`). This continues while `hasNextPage` is passed as `true` and `list` is not empty. - -#### Latest manga - -a.k.a. the Latest source entry point in the app (invoked by tapping on the "Latest" button beside the source name). - -- Similar to popular manga, but should be fetching the latest entries from a source. - -#### Search manga - -- When the user searches inside the app, `search` will be called and the rest of the flow is similar to what happens with `getPopular`. -- `getFilterList` will be called to get all filters and filter types. - - -#### Manga Details - -- When user taps on an manga, `getDetail` will be called and the results will be cached. -- `getDetail` is called to update an manga's details from when it was initialized earlier. - - `title` is a string containing title. - - `description` is a string containing description. - - `author` is a string containing author. - - `genre` contain array of all genres. - - `status` is an "integer" value. - You can refer to this example to see the correspondence: - ```bash - 0=>"ongoing", 1=>"complete", 2=>"hiatus", 3=>"canceled", 4=>"publishingFinished", 5=>unknow - ``` - - - `chapters` or `episodes` contain all of all manga chapters or anime episodes. - - `name` is a string containing a chapter name. - - `url` is a string containing a chapter url. - - `scanlator` is a string containing a chapter scanlator. - - `dateUpload` is a string containing date **expressed in millisecondsSinceEpoch**. - - If you don't pass `dateUpload` and leave it null, the app will use the default date instead, but it's recommended to always fill it if it's available. - -#### Chapter pages - -- When user opens an chapter, `getPageList` will be called and it will return an array of string that are used by the reader. - -#### Episode Videos - -- When user opens an episode, `getVideoList` will be called and it will return a - ```bash - array of {'url':string,'originalUrl':string,'quality':string} - ``` - - that are used by the player. - -## Example sources that can help you understand how to create your source - -- [Example](https://github.com/kodjodevf/mangayomi-extensions/blob/main/javascript/anime/src/de/aniworld.js) - of HTML parsing using HTML DOM selector. -- [Example](https://github.com/kodjodevf/mangayomi-extensions/blob/main/javascript/anime/src/en/allanime.js) - of Json API usage. - - -## Some functions already available and usable - - -### http client - -Return Response -```bash -- Simple request - -const client = new Client(); - -const res = await client.get("http://example.com"); - -console.log(res.body); - -- With headers - -const client = new Client(); - -const res = await client.get("http://example.com",{"Referer": "http://example.com"}); - -console.log(res.body); - -- With body - -const client = new Client(); - -final res = await client.post("http://example.com",{"Referer": "http://example.com"},{'name':'test'}); - -console.log(res.body); - -``` - -### HTML DOM selector - -Example: -```bash -const htmlString = ` - - -
author
-
div head
-
- - - - - - - - - - - - - -
1234onetwothreefour
-
-
end
- -` - -const document = new Document(htmlString); -console.log(document.selectFirst("a").attr("href")); // https://github.com/kodjodevf -console.log(document.selectFirst("td").text); // 1 - -``` -See [`dom_selector`](https://github.com/kodjodevf/mangayomi/blob/lib/eval/javascript/dom_selector.dart) to see available methods. - - -### String utils -- this.substringAfter(`string: pattern`) -- this.substringAfterLast(`string: pattern`) -- this.substringBefore(`string: pattern`) -- this.substringBeforeLast(`string: pattern`) -- this.substringBetween(`string: left`, `string: right`) - -### Crypto utils -- unpackJs(`string: code`); -- deobfuscateJsPassword(`string: inputString`) -- encryptAESCryptoJS(`string: plainText`, `string: passphrase`) -- decryptAESCryptoJS(`string: encrypted`, `string: passphrase`) -- cryptoHandler(`string: text`, `string: iv`, `string: secretKeyString`, `Boolean: encrypt`) - -## Help - -If you need a help or have some questions, ask a community in our [Discord server](https://discord.com/invite/EjfBuYahsP). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index fa0475cc..00000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,360 +0,0 @@ -# Contributing - -This guide have some instructions and tips on how to create a new Mangayomi extension. - -## Prerequisites - -Before you start, please note that the ability to use following technologies is **required**. - -- [Flutter development](https://flutter.dev/) -- [Dart](https://dart.dev/) -- Web scraping - - [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML) - - [CSS selectors](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors) - -This project uses the capabilities of the [dart_eval](https://pub.dev/packages/dart_eval) package - -### Tools -- [Android Studio](https://developer.android.com/studio) -- [VS Code](https://code.visualstudio.com/) -- Any platform emulator - -### Writing your extension -1. Clone [Mangayomi](https://github.com/kodjodevf/mangayomi) next, read the README file to learn how to run the project. -2. Open the project then go to : -```console -lib -└── sources - └── source_test.dart -``` -and you will see this : - -```bash -import 'package:mangayomi/models/source.dart'; - -//For testing purposes, set to true -const useTestSourceCode = true; - -final testSourceModelList = [ - Source( - id: "Test Source".hashCode, - name: "Test Source", - // Example: https://gogoanime3.net - baseUrl: "", - // source code - sourceCode: testSourceCode, - // Example: en - lang: "", - // Example: false for anime true for manga - isManga: false) -]; - -const testSourceCode = r''' -import 'package:mangayomi/bridge_lib.dart'; - -class TestSource extends MProvider { - TestSource({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - bool get supportsLatest => true; - - @override - Future getPopular(int page) async { - // TODO: implement - } - - @override - Future getLatestUpdates(int page) async { - // TODO: implement - } - - @override - Future search(String query, int page, FilterList filterList) async { - // TODO: implement - } - - @override - Future getDetail(String url) async { - // TODO: implement - } - - // For anime episode video list - @override - Future> getVideoList(String url) async { - // TODO: implement - } - - // For manga chapter pages - @override - Future> getPageList(String url) { - // TODO: implement - } - - @override - List getFilterList() { - // TODO: implement - } - - @override - List getSourcePreferences() { - // TODO: implement - } -} - -TestSource main(MSource source) { - return TestSource(source:source); -} - -'''; - -``` -For testing your source set `useTestSourceCode` to true. -During the development it is recommended (but not necessary) to write it directly mangayomi application project. -Once extension is ready you can relocate your code into `mangayomi-extension` project in a `src` or `multisrc` package and create a Pull Request. - -### Source - -| Field | Description | -| ----- | ----------- | -| `name` | Name displayed in the "Sources" tab in Mangayomi. | -| `baseUrl` | Base URL of the source without any trailing slashes. | -| `apiUrl` | (Optional, defaults is empty) Api URL of the source with trailing slashes. | -| `lang` | An ISO 639-1 compliant language code (two letters in lower case in most cases, but can also include the country/dialect part by using a simple dash character). | -| `id` | Identifier of your source, automatically set in `Source`. It should only be manually overriden if you need to copy an existing autogenerated ID. | -| `sourceCodeUrl` | contains the URL where the extension source code can be downloaded | -| `sourceCode` | contains the extension source code | -| `isManga` | (Optional, defaults to `true`) specify source type (false for anime and true for manga)| -| `dateFormat` | (Optional, defaults is empty) | -| `iconUrl` | The extension icon URL | -| `version` | The extension version code. This must be incremented with any change to the code. | -| `dateFormatLocale` | (Optional, defaults is empty) | -| `isNsfw` | (Optional, defaults to `false`) Flag to indicate that a source contains NSFW content. | - -### Extension call flow - -#### Popular manga - -a.k.a. the Browse source entry point in the app (invoked by tapping on the source name). - -- The app calls `getPopular` which should return a `MPages` containing the first batch of found `MManga` entries. - - This method supports pagination. When user scrolls the manga list and more results must be fetched, the app calls it again with increasing `page` values(starting with `page=1`). This continues while `MPages.hasNextPage` is passed as `true` and `MPages.list` is not empty. -- To show the list properly, the app needs `url`, `title` and `imageUrl`. You **must** set them here. The rest of the fields could be filled later.(refer to Manga Details below). - -#### Latest manga - -a.k.a. the Latest source entry point in the app (invoked by tapping on the "Latest" button beside the source name). - -- Similar to popular manga, but should be fetching the latest entries from a source. - -#### Search manga - -- When the user searches inside the app, `search` will be called and the rest of the flow is similar to what happens with `getPopular`. - - If search functionality is not available, return `MPages([], false)` -- `getFilterList` will be called to get all filters and filter types. - -### Filters - -The search flow have support to filters that can be added to a `FilterList` inside the `getFilterList` method. When the user changes the filter's state, they will be passed to the `search` method, and they can be iterated to create the request (by getting the `filter.state` value, where the type varies depending on the `Filter` used). You can check the filter types available [here](https://github.com/kodjodevf/mangayomi/blob/main/lib/eval/model/filter.dart) and in the table below. - -| Filter | Description | -| ------ | ----------- | -| `HeaderFilter` | A simple header. Useful for separating sections in the list or showing any note or warning to the user. | -| `SeparatorFilter` | A line separator. Useful for visual distinction between sections. | -| `SelectFilter` | A select control, similar to HTML's ``. | -| `CheckBoxFilter` | A checkbox control, similar to HTML's ``. The state is `true` if it's checked. | -| `TriStateFilter` | A enhanced checkbox control that supports an excluding state | -| `GroupFilter` | A group of filters (preferentially of the same type). The state will be a `List` with all the states. | -| `SortFilter` | A control for sorting, with support for the ordering. The state indicates which item index is selected and if the sorting is `ascending`. | - -All control filters can have a default state set. It's usually recommended if the source have filters to make the initial state match the popular manga list, so when the user open the filter sheet, the state is equal and represents the current manga showing. - -#### Manga Details - -- When user taps on an manga, `getDetail` will be called and the results will be cached. - - A `MManga` entry is identified by its `url`. -- `getDetail` is called to update an manga's details from when it was initialized earlier. - - `MManga.title` is a string containing title. - - `MManga.description` is a string containing description. - - `MManga.author` is a string containing author. - - `MManga.genre` contain list of all genres. - - `MManga.status` is an "enum" value. - - To get the status in enum value from a status string, you can use a `parseStatus` function like in the example below. - `Status` parseStatus(`String status`, `List statusList`) - ```bash - final statusList = [ - { "ongoing": 0, - "complete": 1, - "hiatus": 2, - "canceled": 3, - "publishingFinished": 4, - } - ]; - final status = parseStatus('ongoing', statusList); - print(status); // Status.ongoing - ``` - Refer to [the values in the `MManga` model](https://github.com/kodjodevf/mangayomi/blob/main/lib/models/manga.dart). - - During a backup, only `url` and `title` are stored. To restore the rest of the manga data, the app calls `getDetail`, so all fields should be (re)filled in if possible. - - If a `MManga` is cached `getDetail` will be only called when the user does a manual update(Swipe-to-Refresh). - - `MManga.chapters` contain list of all manga chapters. - - `MChapter.name` is a string containing a chapter name. - - `MChapter.url` is a string containing a chapter url. - - `MChapter.scanlator` is a string containing a chapter scanlator. - - `MChapter.dateUpload` is a string containing date **expressed in millisecondsSinceEpoch**. - - To get the time in millisecondsSinceEpoch from a date string, you can use a `parseDates` function like in the example below. - `List` parseDates(`List values`, `String dateFormat`, `String dateFormatLocale`,) - ```bash - final dates = parseDates(["2023-12-10T11:49:02+000"], "yyyy-MM-dd'T'HH:mm:ss+SSS", "en_US"); - ``` - - If you don't pass `MChapter.dateUpload` and leave it null, the app will use the default date instead, but it's recommended to always fill it if it's available. - - -#### Chapter pages - -- When user opens an chapter, `getPageList` will be called and it will return a `List` that are used by the reader. - -#### Episode Videos - -- When user opens an episode, `getVideoList` will be called and it will return a `List` that are used by the player. - -## Example sources that can help you understand how to create your source - -- [Example](https://github.com/kodjodevf/mangayomi-extensions/blob/main/anime/src/en/kisskh/kisskh.dart) - of Json API usage. -- [Example](https://github.com/kodjodevf/mangayomi-extensions/blob/main/manga/src/en/mangahere/mangahere.dart) - of HTML parsing using xpath selector. -- [Example](https://github.com/kodjodevf/mangayomi-extensions/blob/main/manga/multisrc/madara/madara.dart) - of HTML parsing using HTML DOM selector. - - -## Some functions already available and usable - - -### http client - -Return Response -```bash -- Simple request - -final Client client = Client(); - -final res = await client.get(Uri.parse("http://example.com")); - -print(res.body); - -- With headers - -final Client client = Client(); - -final res = await client.get(Uri.parse("http://example.com"),headers:{"Referer": "http://example.com"}); - -print(res.body); - -- With body - -final Client client = Client(); - -final res = await client.post(Uri.parse("http://example.com"),headers:{"Referer": "http://example.com"},'body':{'name':'test'}); - -print(res.body); - -``` - -### xpath selector -Return result as `List` - -Example: -```bash -final String htmlString = ''' - - - -
div head
-
- - - - - - - - - - - - - -
1234onetwothreefour
-
-
end
- - -'''; - - - List xpathRes = xpath(htmlString,'//div/a/@href'); - print(xpathRes); // [https://github.com/kodjodevf] - print(xpathRes.first); // https://github.com/kodjodevf - -``` -### HTML DOM selector - -Example: -```bash -final String htmlString = ''' - - - -
div head
-
- - - - - - - - - - - - - -
1234onetwothreefour
-
-
end
- - -'''; - - - MDocument document = parseHtml(htmlString); - print(document.selectFirst("a").attr("href")); // https://github.com/kodjodevf - print(document.selectFirst("td").text); // 1 - -``` -See [`MDocument` model](https://github.com/kodjodevf/mangayomi/blob/main/lib/eval/model/document.dart) and [`MElement` model](https://github.com/kodjodevf/mangayomi/blob/main/lib/eval/model/element.dart) to see available methods. - - -### String utils -- `String` substringAfter(`String text`, `String pattern`) -- `String` substringAfterLast(`String text`, `String pattern`) -- `String` substringBefore(`String text`, `String pattern`) -- `String` substringBeforeLast(`String text`, `String pattern`) -- `String` getUrlWithoutDomain(`String url`) - -### Crypto utils -- `String` unpackJs(`String code`); -- `Future` evalJs(`String code`); -- `String` deobfuscateJsPassword(`String inputString`) -- `String` encryptAESCryptoJS(`String plainText`, `String passphrase`) -- `String` decryptAESCryptoJS(`String encrypted`, `String passphrase`) -- `String` cryptoHandler(`String text`, `String iv`, `String secretKeyString`, `bool encrypt`) - -## Help - -If you need a help or have some questions, ask a community in our [Discord server](https://discord.com/invite/EjfBuYahsP). diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 66a27ec5..00000000 --- a/LICENSE +++ /dev/null @@ -1,177 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - diff --git a/README.md b/README.md deleted file mode 100644 index f148fcaf..00000000 --- a/README.md +++ /dev/null @@ -1,32 +0,0 @@ -# Mangayomi Extensions - -This repository contains the available extension catalogues for the [Mangayomi](https://github.com/kodjodevf/mangayomi) app. - - -# Contributing - -Contributions are welcome! - -To get started with development, see [CONTRIBUTING.md](./CONTRIBUTING.md) for create sources in Dart or [CONTRIBUTING-JS.md](./CONTRIBUTING-JS.md) for create sources in JavaScript. - -## License - - Copyright 2023 Moustapha Kodjo Amadou - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - - -## Disclaimer - -The developer of this application does not have any affiliation with the content providers available. diff --git a/dart/anime/anime_source_list.dart b/dart/anime/anime_source_list.dart deleted file mode 100644 index 6e6e4173..00000000 --- a/dart/anime/anime_source_list.dart +++ /dev/null @@ -1,56 +0,0 @@ -import '../../model/source.dart'; -import 'multisrc/datalifeengine/sources.dart'; -import 'multisrc/dopeflix/sources.dart'; -import 'multisrc/zorotheme/sources.dart'; -import 'src/all/animeworldindia/sources.dart'; -import 'src/all/nyaa/source.dart'; -import 'src/ar/okanime/source.dart'; -import 'src/de/aniflix/source.dart'; -import 'src/de/animetoast/source.dart'; -import 'src/en/animepahe/source.dart'; -import 'src/en/aniwave/source.dart'; -import 'src/en/dramacool/source.dart'; -import 'src/en/gogoanime/source.dart'; -import 'src/en/nineanimetv/source.dart'; -import 'src/fr/animesama/source.dart'; -import 'src/hi/yomovies/source.dart'; -import 'src/en/kisskh/source.dart'; -import 'src/en/uhdmovies/source.dart'; -import 'src/fr/animesultra/source.dart'; -import 'src/fr/franime/source.dart'; -import 'src/fr/otakufr/source.dart'; -import 'src/id/nimegami/source.dart'; -import 'src/id/oploverz/source.dart'; -import 'src/id/otakudesu/source.dart'; -import 'src/it/animesaturn/source.dart'; -import 'src/pt/animesvision/source.dart'; -import 'src/sq/filma24/source.dart'; - -List dartAnimesourceList = [ - gogoanimeSource, - franimeSource, - otakufr, - animesultraSource, - ...zorothemeSourcesList, - kisskhSource, - okanimeSource, - otakudesu, - nimegami, - oploverz, - aniwave, - ...dopeflixSourcesList, - animesaturn, - uhdmoviesSource, - ...datalifeengineSourcesList, - filma24, - dramacoolSource, - yomoviesSource, - animesamaSource, - nineanimetv, - aniflix, - ...animeworldindiaSourcesList, - nyaaSource, - animepaheSource, - animetoast, - animesvision -]; diff --git a/dart/anime/multisrc/datalifeengine/datalifeengine.dart b/dart/anime/multisrc/datalifeengine/datalifeengine.dart deleted file mode 100644 index 471fb76f..00000000 --- a/dart/anime/multisrc/datalifeengine/datalifeengine.dart +++ /dev/null @@ -1,332 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class DataLifeEngine extends MProvider { - DataLifeEngine({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - bool get supportsLatest => false; - - @override - Future getPopular(int page) async { - final res = (await client - .get(Uri.parse("${source.baseUrl}${getPath(source)}page/$page"))) - .body; - return animeFromElement(res); - } - - @override - Future getLatestUpdates(int page) async { - return MPages([], false); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final filters = filterList.filters; - final baseUrl = source.baseUrl; - String res = ""; - if (query.isNotEmpty) { - if (query.length < 4) return MPages([], false); - final headers = { - "Host": Uri.parse(baseUrl).host, - "Origin": baseUrl, - "Referer": "$baseUrl/" - }; - final cleanQuery = query.replaceAll(" ", "+"); - if (page == 1) { - res = (await client.post( - Uri.parse( - "$baseUrl?do=search&subaction=search&story=$cleanQuery"), - headers: headers)) - .body; - } else { - res = (await client.post( - Uri.parse( - "$baseUrl?do=search&subaction=search&search_start=$page&full_search=0&result_from=11&story=$cleanQuery"), - headers: headers)) - .body; - } - } else { - String url = ""; - for (var filter in filters) { - if (filter.type == "CategoriesFilter") { - if (filter.state != 0) { - url = "$baseUrl${filter.values[filter.state].value}page/$page/"; - } - } else if (filter.type == "GenresFilter") { - if (filter.state != 0) { - url = "$baseUrl${filter.values[filter.state].value}page/$page/"; - } - } - } - res = (await client.get(Uri.parse(url))).body; - } - - return animeFromElement(res); - } - - @override - Future getDetail(String url) async { - String res = (await client.get(Uri.parse(url))).body; - MManga anime = MManga(); - final description = xpath(res, '//span[@itemprop="description"]/text()'); - anime.description = description.isNotEmpty ? description.first : ""; - anime.genre = xpath(res, '//span[@itemprop="genre"]/a/text()'); - - List? episodesList = []; - - if (source.name == "French Anime") { - final epsData = xpath(res, '//div[@class="eps"]/text()'); - for (var epData in epsData.first.split('\n')) { - final data = epData.split('!'); - MChapter ep = MChapter(); - ep.name = "Episode ${data.first}"; - ep.url = data.last; - episodesList.add(ep); - } - } else { - final eps = xpath(res, - '//*[@class="hostsblock"]/div/a[contains(@href,"https")]/parent::div/@class'); - if (eps.isNotEmpty) { - for (var i = 0; i < eps.length; i++) { - final epUrls = xpath(res, - '//*[@class="hostsblock"]/div[@class="${eps[i]}"]/a[contains(@href,"https")]/@href'); - MChapter ep = MChapter(); - ep.name = "Episode ${i + 1}"; - ep.url = epUrls.join(",").replaceAll("/vd.php?u=", ""); - ep.scanlator = eps[i].contains('vf') ? 'VF' : 'VOSTFR'; - episodesList.add(ep); - } - } else { - anime.status = MStatus.completed; - final epUrls = xpath(res, - '//*[contains(@class,"filmlinks")]/div/a[contains(@href,"https")]/@href'); - MChapter ep = MChapter(); - ep.name = "Film"; - ep.url = epUrls.join(",").replaceAll("/vd.php?u=", ""); - episodesList.add(ep); - } - } - - anime.chapters = episodesList.reversed.toList(); - return anime; - } - - @override - Future> getVideoList(String url) async { - List videos = []; - final sUrls = url.split(','); - for (var sUrl in sUrls) { - List a = []; - if (sUrl.contains("dood")) { - a = await doodExtractor(sUrl, "DoodStream"); - } else if (sUrl.contains("voe.sx")) { - a = await voeExtractor(sUrl, "Voe"); - } else if (sUrl.contains("streamvid") || - sUrl.contains("guccihide") || - sUrl.contains("streamhide")) { - a = await streamHideExtractor(sUrl); - } else if (sUrl.contains("uqload")) { - a = await uqloadExtractor(sUrl); - } else if (sUrl.contains("upstream")) { - a = await upstreamExtractor(sUrl); - } else if (sUrl.contains("sibnet")) { - a = await sibnetExtractor(sUrl); - } else if (sUrl.contains("ok.ru")) { - a = await okruExtractor(sUrl); - } - videos.addAll(a); - } - return videos; - } - - MPages animeFromElement(String res) { - final htmls = parseHtml(res).select("div#dle-content > div.mov"); - List animeList = []; - for (var h in htmls) { - final html = h.innerHtml; - final url = xpath(html, '//a/@href').first; - final name = xpath(html, '//a/text()').first; - final image = xpath(html, '//div[contains(@class,"mov")]/img/@src').first; - final season = xpath(html, '//div/span[@class="block-sai"]/text()'); - MManga anime = MManga(); - anime.name = - "$name ${season.isNotEmpty ? season.first.replaceAll("\n", " ") : ""}"; - anime.imageUrl = "${source.baseUrl}$image"; - anime.link = url; - animeList.add(anime); - } - final hasNextPage = xpath(res, '//span[@class="pnext"]/a/@href').isNotEmpty; - return MPages(animeList, hasNextPage); - } - - Future> streamHideExtractor(String url) async { - final res = (await client.get(Uri.parse(url))).body; - final masterUrl = substringBefore( - substringAfter( - substringAfter( - substringAfter(unpackJs(res), "sources:"), "file:\""), - "src:\""), - '"'); - final masterPlaylistRes = (await client.get(Uri.parse(masterUrl))).body; - List videos = []; - for (var it in substringAfter(masterPlaylistRes, "#EXT-X-STREAM-INF:") - .split("#EXT-X-STREAM-INF:")) { - final quality = - "${substringBefore(substringBefore(substringAfter(substringAfter(it, "RESOLUTION="), "x"), ","), "\n")}p"; - - String videoUrl = substringBefore(substringAfter(it, "\n"), "\n"); - - if (!videoUrl.startsWith("http")) { - videoUrl = - "${masterUrl.split("/").sublist(0, masterUrl.split("/").length - 1).join("/")}/$videoUrl"; - } - - MVideo video = MVideo(); - video - ..url = videoUrl - ..originalUrl = videoUrl - ..quality = "StreamHideVid - $quality"; - videos.add(video); - } - return videos; - } - - Future> upstreamExtractor(String url) async { - final res = (await client.get(Uri.parse(url))).body; - final js = xpath(res, '//script[contains(text(), "m3u8")]/text()'); - if (js.isEmpty) { - return []; - } - final masterUrl = - substringBefore(substringAfter(unpackJs(js.first), "{file:\""), "\"}"); - final masterPlaylistRes = (await client.get(Uri.parse(masterUrl))).body; - List videos = []; - for (var it in substringAfter(masterPlaylistRes, "#EXT-X-STREAM-INF:") - .split("#EXT-X-STREAM-INF:")) { - final quality = - "${substringBefore(substringBefore(substringAfter(substringAfter(it, "RESOLUTION="), "x"), ","), "\n")}p"; - - String videoUrl = substringBefore(substringAfter(it, "\n"), "\n"); - - if (!videoUrl.startsWith("http")) { - videoUrl = - "${masterUrl.split("/").sublist(0, masterUrl.split("/").length - 1).join("/")}/$videoUrl"; - } - - MVideo video = MVideo(); - video - ..url = videoUrl - ..originalUrl = videoUrl - ..quality = "Upstream - $quality"; - videos.add(video); - } - return videos; - } - - Future> uqloadExtractor(String url) async { - final res = (await client.get(Uri.parse(url))).body; - final js = xpath(res, '//script[contains(text(), "sources:")]/text()'); - if (js.isEmpty) { - return []; - } - - final videoUrl = - substringBefore(substringAfter(js.first, "sources: [\""), '"'); - MVideo video = MVideo(); - video - ..url = videoUrl - ..originalUrl = videoUrl - ..quality = "Uqload" - ..headers = {"Referer": "${Uri.parse(url).origin}/"}; - return [video]; - } - - String getPath() { - if (source.name == "French Anime") return "/animes-vostfr/"; - return "/serie-en-streaming/"; - } - - @override - List getFilterList() { - return [ - HeaderFilter("La recherche de texte ignore les filtres"), - if (source.name == "French Anime") - SelectFilter("CategoriesFilter", "Catégories", 0, [ - SelectFilterOption("", ""), - SelectFilterOption("Action", "/genre/action/"), - SelectFilterOption("Aventure", "/genre/aventure/"), - SelectFilterOption("Arts martiaux", "/genre/arts-martiaux/"), - SelectFilterOption("Combat", "/genre/combat/"), - SelectFilterOption("Comédie", "/genre/comedie/"), - SelectFilterOption("Drame", "/genre/drame/"), - SelectFilterOption("Epouvante", "/genre/epouvante/"), - SelectFilterOption("Fantastique", "/genre/fantastique/"), - SelectFilterOption("Fantasy", "/genre/fantasy/"), - SelectFilterOption("Mystère", "/genre/mystere/"), - SelectFilterOption("Romance", "/genre/romance/"), - SelectFilterOption("Shonen", "/genre/shonen/"), - SelectFilterOption("Surnaturel", "/genre/surnaturel/"), - SelectFilterOption("Sci-Fi", "/genre/sci-fi/"), - SelectFilterOption("School life", "/genre/school-life/"), - SelectFilterOption("Ninja", "/genre/ninja/"), - SelectFilterOption("Seinen", "/genre/seinen/"), - SelectFilterOption("Horreur", "/genre/horreur/"), - SelectFilterOption("Tranche de vie", "/genre/tranchedevie/"), - SelectFilterOption("Psychologique", "/genre/psychologique/") - ]), - if (source.name == "French Anime") - SelectFilter("GenresFilter", "Genres", 0, [ - SelectFilterOption("", ""), - SelectFilterOption("Animes VF", "/animes-vf/"), - SelectFilterOption("Animes VOSTFR", "/animes-vostfr/"), - SelectFilterOption("Films VF et VOSTFR", "/films-vf-vostfr/") - ]), - if (source.name == "Wiflix") - SelectFilter("CategoriesFilter", "Catégories", 0, [ - SelectFilterOption("", ""), - SelectFilterOption("Séries", "/serie-en-streaming/"), - SelectFilterOption("Films", "/film-en-streaming/") - ]), - if (source.name == "Wiflix") - SelectFilter("GenresFilter", "Genres", 0, [ - SelectFilterOption("", ""), - SelectFilterOption("Action", "/film-en-streaming/action/"), - SelectFilterOption("Animation", "/film-en-streaming/animation/"), - SelectFilterOption( - "Arts Martiaux", "/film-en-streaming/arts-martiaux/"), - SelectFilterOption("Aventure", "/film-en-streaming/aventure/"), - SelectFilterOption("Biopic", "/film-en-streaming/biopic/"), - SelectFilterOption("Comédie", "/film-en-streaming/comedie/"), - SelectFilterOption( - "Comédie Dramatique", "/film-en-streaming/comedie-dramatique/"), - SelectFilterOption( - "Épouvante Horreur", "/film-en-streaming/horreur/"), - SelectFilterOption("Drame", "/film-en-streaming/drame/"), - SelectFilterOption( - "Documentaire", "/film-en-streaming/documentaire/"), - SelectFilterOption("Espionnage", "/film-en-streaming/espionnage/"), - SelectFilterOption("Famille", "/film-en-streaming/famille/"), - SelectFilterOption("Fantastique", "/film-en-streaming/fantastique/"), - SelectFilterOption("Guerre", "/film-en-streaming/guerre/"), - SelectFilterOption("Historique", "/film-en-streaming/historique/"), - SelectFilterOption("Musical", "/film-en-streaming/musical/"), - SelectFilterOption("Policier", "/film-en-streaming/policier/"), - SelectFilterOption("Romance", "/film-en-streaming/romance/"), - SelectFilterOption( - "Science-Fiction", "/film-en-streaming/science-fiction/"), - SelectFilterOption("Spectacles", "/film-en-streaming/spectacles/"), - SelectFilterOption("Thriller", "/film-en-streaming/thriller/"), - SelectFilterOption("Western", "/film-en-streaming/western/"), - ]), - ]; - } -} - -DataLifeEngine main(MSource source) { - return DataLifeEngine(source: source); -} diff --git a/dart/anime/multisrc/datalifeengine/sources.dart b/dart/anime/multisrc/datalifeengine/sources.dart deleted file mode 100644 index d7d04c3d..00000000 --- a/dart/anime/multisrc/datalifeengine/sources.dart +++ /dev/null @@ -1,19 +0,0 @@ -import '../../../../model/source.dart'; -import 'src/frenchanime/frenchanime.dart'; -import 'src/wiflix/wiflix.dart'; - -const _datalifeengineVersion = "0.0.35"; -const _datalifeengineSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/multisrc/datalifeengine/datalifeengine.dart"; - -List get datalifeengineSourcesList => _datalifeengineSourcesList; -List _datalifeengineSourcesList = [ -//French Anime (FR) - frenchanimeSource, -//Wiflix (FR) - wiflixSource, -] - .map((e) => e - ..sourceCodeUrl = _datalifeengineSourceCodeUrl - ..version = _datalifeengineVersion) - .toList(); diff --git a/dart/anime/multisrc/datalifeengine/src/frenchanime/frenchanime.dart b/dart/anime/multisrc/datalifeengine/src/frenchanime/frenchanime.dart deleted file mode 100644 index f28491dc..00000000 --- a/dart/anime/multisrc/datalifeengine/src/frenchanime/frenchanime.dart +++ /dev/null @@ -1,13 +0,0 @@ -import '../../../../../../model/source.dart'; - -Source get frenchanimeSource => _frenchanimeSource; - -Source _frenchanimeSource = Source( - name: "French Anime", - baseUrl: "https://french-anime.com", - lang: "fr", - typeSource: "datalifeengine", - isManga: false, - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/multisrc/datalifeengine/src/frenchanime/icon.png", -); diff --git a/dart/anime/multisrc/datalifeengine/src/frenchanime/icon.png b/dart/anime/multisrc/datalifeengine/src/frenchanime/icon.png deleted file mode 100644 index 62591a8e..00000000 Binary files a/dart/anime/multisrc/datalifeengine/src/frenchanime/icon.png and /dev/null differ diff --git a/dart/anime/multisrc/datalifeengine/src/wiflix/icon.png b/dart/anime/multisrc/datalifeengine/src/wiflix/icon.png deleted file mode 100644 index 3317e744..00000000 Binary files a/dart/anime/multisrc/datalifeengine/src/wiflix/icon.png and /dev/null differ diff --git a/dart/anime/multisrc/datalifeengine/src/wiflix/wiflix.dart b/dart/anime/multisrc/datalifeengine/src/wiflix/wiflix.dart deleted file mode 100644 index 0034941e..00000000 --- a/dart/anime/multisrc/datalifeengine/src/wiflix/wiflix.dart +++ /dev/null @@ -1,13 +0,0 @@ -import '../../../../../../model/source.dart'; - -Source get wiflixSource => _wiflixSource; - -Source _wiflixSource = Source( - name: "Wiflix", - baseUrl: "https://wiflix.voto", - lang: "fr", - typeSource: "datalifeengine", - isManga: false, - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/multisrc/datalifeengine/src/wiflix/icon.png", -); diff --git a/dart/anime/multisrc/dopeflix/dopeflix.dart b/dart/anime/multisrc/dopeflix/dopeflix.dart deleted file mode 100644 index 535f33de..00000000 --- a/dart/anime/multisrc/dopeflix/dopeflix.dart +++ /dev/null @@ -1,547 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class DopeFlix extends MProvider { - DopeFlix({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - String get baseUrl => getPreferenceValue(source.id, "preferred_domain"); - - @override - Future getPopular(int page) async { - final res = (await client.get(Uri.parse( - "$baseUrl/${getPreferenceValue(source.id, "preferred_popular_page")}?page=$page"))) - .body; - return parseAnimeList(res); - } - - @override - Future getLatestUpdates(int page) async { - final res = (await client.get(Uri.parse("$baseUrl/home"))).body; - List animeList = []; - final path = - '//section[contains(text(),"${getPreferenceValue(source.id, "preferred_latest_page")}")]/div/div[@class="film_list-wrap"]/div[@class="flw-item"]/div[@class="film-poster"]'; - final urls = xpath(res, '$path/a/@href'); - final names = xpath(res, '$path/a/@title'); - final images = xpath(res, '$path/img/@data-src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - return MPages(animeList, false); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final filters = filterList.filters; - String url = "$baseUrl"; - - if (query.isNotEmpty) { - url += "/search/${query.replaceAll(" ", "-")}?page=$page"; - } else { - url += "/filter/?page=$page"; - for (var filter in filters) { - if (filter.type == "TypeFilter") { - final type = filter.values[filter.state].value; - url += "${ll(url)}type=$type"; - } else if (filter.type == "QualityFilter") { - final quality = filter.values[filter.state].value; - url += "${ll(url)}quality=$quality"; - } else if (filter.type == "ReleaseYearFilter") { - final year = filter.values[filter.state].value; - url += "${ll(url)}release_year=$year"; - } else if (filter.type == "GenresFilter") { - final genre = (filter.state as List).where((e) => e.state).toList(); - if (genre.isNotEmpty) { - url += "${ll(url)}genre="; - for (var st in genre) { - url += "${st.value}-"; - } - } - } else if (filter.type == "CountriesFilter") { - final country = (filter.state as List).where((e) => e.state).toList(); - if (country.isNotEmpty) { - url += "${ll(url)}country="; - for (var st in country) { - url += "${st.value}-"; - } - } - } - } - } - - final res = (await client.get(Uri.parse(url))).body; - return parseAnimeList(res); - } - - @override - Future getDetail(String url) async { - url = getUrlWithoutDomain(url); - final res = (await client.get(Uri.parse("$baseUrl$url"))).body; - MManga anime = MManga(); - final description = xpath(res, '//div[@class="description"]/text()'); - if (description.isNotEmpty) { - anime.description = description.first.replaceAll("Overview:", ""); - } - final author = xpath(res, '//div[contains(text(),"Production")]/a/text()'); - if (author.isNotEmpty) { - anime.author = author.first; - } - anime.genre = xpath(res, '//div[contains(text(),"Genre")]/a/text()'); - List episodesList = []; - final id = xpath(res, '//div[@class="detail_page-watch"]/@data-id').first; - final dataType = - xpath(res, '//div[@class="detail_page-watch"]/@data-type').first; - if (dataType == "1") { - MChapter episode = MChapter(); - episode.name = "Movie"; - episode.url = "$baseUrl/ajax/movie/episodes/$id"; - episodesList.add(episode); - } else { - final resS = - (await client.get(Uri.parse("$baseUrl/ajax/v2/tv/seasons/$id"))).body; - - final seasonIds = - xpath(resS, '//a[@class="dropdown-item ss-item"]/@data-id'); - final seasonNames = - xpath(resS, '//a[@class="dropdown-item ss-item"]/text()'); - for (int i = 0; i < seasonIds.length; i++) { - final seasonId = seasonIds[i]; - final seasonName = seasonNames[i]; - - final html = (await client - .get(Uri.parse("$baseUrl/ajax/v2/season/episodes/$seasonId"))) - .body; - - final epsHtmls = parseHtml(html).select("div.eps-item"); - - for (var epH in epsHtmls) { - final epHtml = epH.outerHtml; - final episodeId = - xpath(epHtml, '//div[contains(@class,"eps-item")]/@data-id') - .first; - final epNum = - xpath(epHtml, '//div[@class="episode-number"]/text()').first; - final epName = xpath(epHtml, '//h3[@class="film-name"]/text()').first; - MChapter episode = MChapter(); - episode.name = "$seasonName $epNum $epName"; - episode.url = "$baseUrl/ajax/v2/episode/servers/$episodeId"; - episodesList.add(episode); - } - } - } - anime.chapters = episodesList.reversed.toList(); - return anime; - } - - @override - Future> getVideoList(String url) async { - url = getUrlWithoutDomain(url); - final res = (await client.get(Uri.parse("$baseUrl/$url"))).body; - - final vidsHtmls = parseHtml(res).select("ul.fss-list a.btn-play"); - - List videos = []; - for (var vidH in vidsHtmls) { - final vidHtml = vidH.outerHtml; - final id = xpath(vidHtml, '//a/@data-id').first; - final name = xpath(vidHtml, '//span/text()').first; - final resSource = - (await client.get(Uri.parse("$baseUrl/ajax/sources/$id"))).body; - - final vidUrl = - substringBefore(substringAfter(resSource, "\"link\":\""), "\""); - List a = []; - String masterUrl = ""; - String type = ""; - if (name.contains("DoodStream")) { - a = await doodExtractor(vidUrl, "DoodStream"); - } else if (["Vidcloud", "UpCloud"].contains(name)) { - final id = substringBefore(substringAfter(vidUrl, "/embed-4/"), "?"); - final serverUrl = substringBefore(vidUrl, "/embed"); - - final resServer = (await client.get( - Uri.parse("$serverUrl/ajax/embed-4/getSources?id=$id"), - headers: {"X-Requested-With": "XMLHttpRequest"})) - .body; - final encrypted = getMapValue(resServer, "encrypted"); - - String videoResJson = ""; - if (encrypted == "true") { - final ciphered = getMapValue(resServer, "sources"); - - List> indexPairs = await generateIndexPairs(); - - var password = ''; - String ciphertext = ciphered; - int index = 0; - for (List item in json.decode(json.encode(indexPairs))) { - int start = item.first + index; - int end = start + item.last; - String passSubstr = ciphered.substring(start, end); - password += passSubstr; - ciphertext = ciphertext.replaceFirst(passSubstr, ""); - index += item.last; - } - videoResJson = decryptAESCryptoJS(ciphertext, password); - masterUrl = ((json.decode(videoResJson) as List>) - .first)['file']; - - type = ((json.decode(videoResJson) as List>) - .first)['type']; - } else { - masterUrl = - ((json.decode(resServer)["sources"] as List>) - .first)['file']; - - type = - ((json.decode(resServer)["sources"] as List>) - .first)['type']; - } - - final tracks = (json.decode(resServer)['tracks'] as List) - .where((e) => e['kind'] == 'captions' ? true : false) - .toList(); - List subtitles = []; - - for (var sub in tracks) { - try { - MTrack subtitle = MTrack(); - subtitle - ..label = sub["label"] - ..file = sub["file"]; - subtitles.add(subtitle); - } catch (_) {} - } - - subtitles = sortSubs(subtitles, source.id); - if (type == "hls") { - final masterPlaylistRes = - (await client.get(Uri.parse(masterUrl))).body; - - for (var it in substringAfter(masterPlaylistRes, "#EXT-X-STREAM-INF:") - .split("#EXT-X-STREAM-INF:")) { - final quality = - "${substringBefore(substringBefore(substringAfter(substringAfter(it, "RESOLUTION="), "x"), ","), "\n")}p"; - - String videoUrl = substringBefore(substringAfter(it, "\n"), "\n"); - - if (!videoUrl.startsWith("http")) { - videoUrl = - "${(masterUrl as String).split("/").sublist(0, (masterUrl as String).split("/").length - 1).join("/")}/$videoUrl"; - } - - MVideo video = MVideo(); - video - ..url = videoUrl - ..originalUrl = videoUrl - ..quality = "$name - $quality" - ..subtitles = subtitles; - a.add(video); - } - } else { - MVideo video = MVideo(); - video - ..url = masterUrl - ..originalUrl = masterUrl - ..quality = "$name - Default" - ..subtitles = subtitles; - a.add(video); - } - } - videos.addAll(a); - } - - return sortVideos(videos, source.id); - } - - Future>> generateIndexPairs() async { - final res = (await client.get(Uri.parse( - "https://rabbitstream.net/js/player/prod/e4-player.min.js"))) - .body; - - String script = substringBefore(substringAfter(res, "const "), "()"); - script = script.substring(0, script.lastIndexOf(',')); - final list = script - .split(",") - .map((String e) { - String value = substringAfter(e, "="); - if (value.contains("0x")) { - return int.parse(substringAfter(value, "0x"), radix: 16); - } else { - return int.parse(value); - } - }) - .toList() - .skip(1) - .toList(); - return chunked(list, 2) - .map((List list) => list.reversed.toList()) - .toList(); - } - - List> chunked(List list, int size) { - List> chunks = []; - for (int i = 0; i < list.length; i += size) { - int end = list.length; - if (i + size < list.length) { - end = i + size; - } - chunks.add(list.sublist(i, end)); - } - return chunks; - } - - MPages parseAnimeList(String res) { - List animeList = []; - final path = - '//div[@class="film_list-wrap"]/div[@class="flw-item"]/div[@class="film-poster"]'; - final urls = xpath(res, '$path/a/@href'); - final names = xpath(res, '$path/a/@title'); - final images = xpath(res, '$path/img/@data-src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - final pages = xpath( - res, '//ul[contains(@class,"pagination")]/li/a[@title="Next"]/@title'); - return MPages(animeList, pages.isNotEmpty); - } - - @override - List getFilterList() { - return [ - SelectFilter("TypeFilter", "Type", 0, [ - SelectFilterOption("All", "all"), - SelectFilterOption("Movies", "movies"), - SelectFilterOption("TV Shows", "tv") - ]), - SelectFilter("QualityFilter", "Quality", 0, [ - SelectFilterOption("All", "all"), - SelectFilterOption("HD", "HD"), - SelectFilterOption("SD", "SD"), - SelectFilterOption("CAM", "CAM") - ]), - SelectFilter("ReleaseYearFilter", "Released at", 0, [ - SelectFilterOption("All", "all"), - SelectFilterOption("2023", "2023"), - SelectFilterOption("2022", "2022"), - SelectFilterOption("2021", "2021"), - SelectFilterOption("2020", "2020"), - SelectFilterOption("2019", "2019"), - SelectFilterOption("2018", "2018"), - SelectFilterOption("Older", "older-2018") - ]), - SeparatorFilter(), - GroupFilter("GenresFilter", "Genre", [ - CheckBoxFilter("Action", "10"), - CheckBoxFilter("Action & Adventure", "24"), - CheckBoxFilter("Adventure", "18"), - CheckBoxFilter("Animation", "3"), - CheckBoxFilter("Biography", "37"), - CheckBoxFilter("Comedy", "7"), - CheckBoxFilter("Crime", "2"), - CheckBoxFilter("Documentary", "11"), - CheckBoxFilter("Drama", "4"), - CheckBoxFilter("Family", "9"), - CheckBoxFilter("Fantasy", "13"), - CheckBoxFilter("History", "19"), - CheckBoxFilter("Horror", "14"), - CheckBoxFilter("Kids", "27"), - CheckBoxFilter("Music", "15"), - CheckBoxFilter("Mystery", "1"), - CheckBoxFilter("News", "34"), - CheckBoxFilter("Reality", "22"), - CheckBoxFilter("Romance", "12"), - CheckBoxFilter("Sci-Fi & Fantasy", "31"), - CheckBoxFilter("Science Fiction", "5"), - CheckBoxFilter("Soap", "35"), - CheckBoxFilter("Talk", "29"), - CheckBoxFilter("Thriller", "16"), - CheckBoxFilter("TV Movie", "8"), - CheckBoxFilter("War", "17"), - CheckBoxFilter("War & Politics", "28"), - CheckBoxFilter("Western", "6") - ]), - GroupFilter("CountriesFilter", "Countries", [ - CheckBoxFilter("Argentina", "11"), - CheckBoxFilter("Australia", "151"), - CheckBoxFilter("Austria", "4"), - CheckBoxFilter("Belgium", "44"), - CheckBoxFilter("Brazil", "190"), - CheckBoxFilter("Canada", "147"), - CheckBoxFilter("China", "101"), - CheckBoxFilter("Czech Republic", "231"), - CheckBoxFilter("Denmark", "222"), - CheckBoxFilter("Finland", "158"), - CheckBoxFilter("France", "3"), - CheckBoxFilter("Germany", "96"), - CheckBoxFilter("Hong Kong", "93"), - CheckBoxFilter("Hungary", "72"), - CheckBoxFilter("India", "105"), - CheckBoxFilter("Ireland", "196"), - CheckBoxFilter("Israel", "24"), - CheckBoxFilter("Italy", "205"), - CheckBoxFilter("Japan", "173"), - CheckBoxFilter("Luxembourg", "91"), - CheckBoxFilter("Mexico", "40"), - CheckBoxFilter("Netherlands", "172"), - CheckBoxFilter("New Zealand", "122"), - CheckBoxFilter("Norway", "219"), - CheckBoxFilter("Poland", "23"), - CheckBoxFilter("Romania", "170"), - CheckBoxFilter("Russia", "109"), - CheckBoxFilter("South Africa", "200"), - CheckBoxFilter("South Korea", "135"), - CheckBoxFilter("Spain", "62"), - CheckBoxFilter("Sweden", "114"), - CheckBoxFilter("Switzerland", "41"), - CheckBoxFilter("Taiwan", "119"), - CheckBoxFilter("Thailand", "57"), - CheckBoxFilter("United Kingdom", "180"), - CheckBoxFilter("United States of America", "129") - ]), - ]; - } - - @override - List getSourcePreferences() { - return [ - if (source.name == "DopeBox") - ListPreference( - key: "preferred_domain", - title: "Preferred domain", - summary: "", - valueIndex: 0, - entries: ["dopebox.to", "dopebox.se"], - entryValues: ["https://dopebox.to", "https://dopebox.se"]), - if (source.name == "SFlix") - ListPreference( - key: "preferred_domain", - title: "Preferred domain", - summary: "", - valueIndex: 0, - entries: ["sflix.to", "sflix.se"], - entryValues: ["https://sflix.to", "https://sflix.se"]), - ListPreference( - key: "preferred_quality", - title: "Preferred Quality", - summary: "", - valueIndex: 0, - entries: ["1080p", "720p", "480p", "360p"], - entryValues: ["1080p", "720p", "480p", "360p"]), - ListPreference( - key: "preferred_subLang", - title: "Preferred sub language", - summary: "", - valueIndex: 1, - entries: [ - "Arabic", - "English", - "French", - "German", - "Hungarian", - "Italian", - "Japanese", - "Portuguese", - "Romanian", - "Russian", - "Spanish" - ], - entryValues: [ - "Arabic", - "English", - "French", - "German", - "Hungarian", - "Italian", - "Japanese", - "Portuguese", - "Romanian", - "Russian", - "Spanish" - ]), - ListPreference( - key: "preferred_latest_page", - title: "Preferred latest page", - summary: "", - valueIndex: 0, - entries: ["Movies", "TV Shows"], - entryValues: ["Latest Movies", "Latest TV Shows"]), - ListPreference( - key: "preferred_popular_page", - title: "Preferred popular page", - summary: "", - valueIndex: 0, - entries: ["Movies", "TV Shows"], - entryValues: ["movie", "tv-show"]), - ]; - } - - List sortVideos(List videos, int sourceId) { - String quality = getPreferenceValue(sourceId, "preferred_quality"); - - videos.sort((MVideo a, MVideo b) { - int qualityMatchA = 0; - if (a.quality.contains(quality)) { - qualityMatchA = 1; - } - int qualityMatchB = 0; - if (b.quality.contains(quality)) { - qualityMatchB = 1; - } - if (qualityMatchA != qualityMatchB) { - return qualityMatchB - qualityMatchA; - } - - final regex = RegExp(r'(\d+)p'); - final matchA = regex.firstMatch(a.quality); - final matchB = regex.firstMatch(b.quality); - final int qualityNumA = int.tryParse(matchA?.group(1) ?? '0') ?? 0; - final int qualityNumB = int.tryParse(matchB?.group(1) ?? '0') ?? 0; - return qualityNumB - qualityNumA; - }); - - return videos; - } - - List sortSubs(List subs, int sourceId) { - String lang = getPreferenceValue(sourceId, "preferred_subLang"); - - subs.sort((MTrack a, MTrack b) { - int langMatchA = 0; - if (a.label.toLowerCase().contains(lang.toLowerCase())) { - langMatchA = 1; - } - int langMatchB = 0; - if (b.label.toLowerCase().contains(lang.toLowerCase())) { - langMatchB = 1; - } - return langMatchB - langMatchA; - }); - return subs; - } - - String ll(String url) { - if (url.contains("?")) { - return "&"; - } - return "?"; - } -} - -DopeFlix main(MSource source) { - return DopeFlix(source: source); -} diff --git a/dart/anime/multisrc/dopeflix/sources.dart b/dart/anime/multisrc/dopeflix/sources.dart deleted file mode 100644 index dbc3cf23..00000000 --- a/dart/anime/multisrc/dopeflix/sources.dart +++ /dev/null @@ -1,19 +0,0 @@ -import '../../../../model/source.dart'; -import 'src/dopebox/dopebox.dart'; -import 'src/sflix/sflix.dart'; - -const _dopeflixVersion = "0.0.5"; -const _dopeflixSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/multisrc/dopeflix/dopeflix.dart"; - -List get dopeflixSourcesList => _dopeflixSourcesList; -List _dopeflixSourcesList = [ -//DopeBox (EN) - dopeboxSource, -//SFlix (EN) - sflixSource, -] - .map((e) => e - ..sourceCodeUrl = _dopeflixSourceCodeUrl - ..version = _dopeflixVersion) - .toList(); diff --git a/dart/anime/multisrc/dopeflix/src/dopebox/dopebox.dart b/dart/anime/multisrc/dopeflix/src/dopebox/dopebox.dart deleted file mode 100644 index 2029e53f..00000000 --- a/dart/anime/multisrc/dopeflix/src/dopebox/dopebox.dart +++ /dev/null @@ -1,13 +0,0 @@ -import '../../../../../../model/source.dart'; - -Source get dopeboxSource => _dopeboxSource; - -Source _dopeboxSource = Source( - name: "DopeBox", - baseUrl: "https://dopebox.to", - lang: "en", - typeSource: "dopeflix", - isManga: false, - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/multisrc/dopeflix/src/dopebox/icon.png", -); diff --git a/dart/anime/multisrc/dopeflix/src/dopebox/icon.png b/dart/anime/multisrc/dopeflix/src/dopebox/icon.png deleted file mode 100644 index 0e467600..00000000 Binary files a/dart/anime/multisrc/dopeflix/src/dopebox/icon.png and /dev/null differ diff --git a/dart/anime/multisrc/dopeflix/src/sflix/icon.png b/dart/anime/multisrc/dopeflix/src/sflix/icon.png deleted file mode 100644 index afdbec53..00000000 Binary files a/dart/anime/multisrc/dopeflix/src/sflix/icon.png and /dev/null differ diff --git a/dart/anime/multisrc/dopeflix/src/sflix/sflix.dart b/dart/anime/multisrc/dopeflix/src/sflix/sflix.dart deleted file mode 100644 index 89d420a4..00000000 --- a/dart/anime/multisrc/dopeflix/src/sflix/sflix.dart +++ /dev/null @@ -1,13 +0,0 @@ -import '../../../../../../model/source.dart'; - -Source get sflixSource => _sflixSource; - -Source _sflixSource = Source( - name: "SFlix", - baseUrl: "https://sflix.to", - lang: "en", - typeSource: "dopeflix", - isManga: false, - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/multisrc/dopeflix/src/sflix/icon.png", -); diff --git a/dart/anime/multisrc/zorotheme/sources.dart b/dart/anime/multisrc/zorotheme/sources.dart deleted file mode 100644 index 1a7d29cb..00000000 --- a/dart/anime/multisrc/zorotheme/sources.dart +++ /dev/null @@ -1,19 +0,0 @@ -import '../../../../model/source.dart'; -import 'src/hianime/hianime.dart'; -import 'src/kaido/kaido.dart'; - -const _zorothemeVersion = "0.0.9"; -const _zorothemeSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/multisrc/zorotheme/zorotheme.dart"; - -List get zorothemeSourcesList => _zorothemeSourcesList; -List _zorothemeSourcesList = [ -//AniWatch.to (EN) - aniwatchSource, -//Kaido.to (EN) - kaidoSource, -] - .map((e) => e - ..sourceCodeUrl = _zorothemeSourceCodeUrl - ..version = _zorothemeVersion) - .toList(); diff --git a/dart/anime/multisrc/zorotheme/src/hianime/hianime.dart b/dart/anime/multisrc/zorotheme/src/hianime/hianime.dart deleted file mode 100644 index 86b54428..00000000 --- a/dart/anime/multisrc/zorotheme/src/hianime/hianime.dart +++ /dev/null @@ -1,14 +0,0 @@ -import '../../../../../../model/source.dart'; - -Source get aniwatchSource => _aniwatchSource; - -Source _aniwatchSource = Source( - id: 814067600, - name: "HiAnime", - baseUrl: "https://hianime.to", - isManga: false, - lang: "en", - typeSource: "zorotheme", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/multisrc/zorotheme/src/hianime/icon.png", -); diff --git a/dart/anime/multisrc/zorotheme/src/hianime/icon.png b/dart/anime/multisrc/zorotheme/src/hianime/icon.png deleted file mode 100644 index 02dc16cf..00000000 Binary files a/dart/anime/multisrc/zorotheme/src/hianime/icon.png and /dev/null differ diff --git a/dart/anime/multisrc/zorotheme/src/kaido/icon.png b/dart/anime/multisrc/zorotheme/src/kaido/icon.png deleted file mode 100644 index 62ce8957..00000000 Binary files a/dart/anime/multisrc/zorotheme/src/kaido/icon.png and /dev/null differ diff --git a/dart/anime/multisrc/zorotheme/src/kaido/kaido.dart b/dart/anime/multisrc/zorotheme/src/kaido/kaido.dart deleted file mode 100644 index 7270c8cb..00000000 --- a/dart/anime/multisrc/zorotheme/src/kaido/kaido.dart +++ /dev/null @@ -1,13 +0,0 @@ -import '../../../../../../model/source.dart'; - -Source get kaidoSource => _kaidoSource; - -Source _kaidoSource = Source( - name: "Kaido.to", - baseUrl: "https://kaido.to", - lang: "en", - isManga: false, - typeSource: "zorotheme", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/multisrc/zorotheme/src/kaido/icon.png", -); diff --git a/dart/anime/multisrc/zorotheme/zorotheme.dart b/dart/anime/multisrc/zorotheme/zorotheme.dart deleted file mode 100644 index adbbb936..00000000 --- a/dart/anime/multisrc/zorotheme/zorotheme.dart +++ /dev/null @@ -1,633 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class ZoroTheme extends MProvider { - ZoroTheme({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - Future getPopular(int page) async { - final res = (await client - .get(Uri.parse("${source.baseUrl}/most-popular?page=$page"))) - .body; - - return animeElementM(res); - } - - @override - Future getLatestUpdates(int page) async { - final res = (await client - .get(Uri.parse("${source.baseUrl}/recently-updated?page=$page"))) - .body; - - return animeElementM(res); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final filters = filterList.filters; - String url = "${source.baseUrl}/"; - - if (query.isEmpty) { - url += "filter?"; - } else { - url += "search?keyword=$query"; - } - - for (var filter in filters) { - if (filter.type == "TypeFilter") { - final type = filter.values[filter.state].value; - if (type.isNotEmpty) { - url += "${ll(url)}type=$type"; - } - } else if (filter.type == "StatusFilter") { - final status = filter.values[filter.state].value; - if (status.isNotEmpty) { - url += "${ll(url)}status=$status"; - } - } else if (filter.type == "RatedFilter") { - final rated = filter.values[filter.state].value; - if (rated.isNotEmpty) { - url += "${ll(url)}rated=$rated"; - } - } else if (filter.type == "ScoreFilter") { - final score = filter.values[filter.state].value; - if (score.isNotEmpty) { - url += "${ll(url)}score=$score"; - } - } else if (filter.type == "SeasonFilter") { - final season = filter.values[filter.state].value; - if (season.isNotEmpty) { - url += "${ll(url)}season=$season"; - } - } else if (filter.type == "LanguageFilter") { - final language = filter.values[filter.state].value; - if (language.isNotEmpty) { - url += "${ll(url)}language=$language"; - } - } else if (filter.type == "SortFilter") { - final sort = filter.values[filter.state].value; - if (sort.isNotEmpty) { - url += "${ll(url)}sort=$sort"; - } - } else if (filter.type == "StartYearFilter") { - final sy = filter.values[filter.state].value; - if (sy.isNotEmpty) { - url += "${ll(url)}sy=$sy"; - } - } else if (filter.type == "StartMonthFilter") { - final sm = filter.values[filter.state].value; - if (sm.isNotEmpty) { - url += "${ll(url)}sm=$sm"; - } - } else if (filter.type == "StartDayFilter") { - final sd = filter.values[filter.state].value; - if (sd.isNotEmpty) { - url += "${ll(url)}sd=$sd"; - } - } else if (filter.type == "EndYearFilter") { - final ey = filter.values[filter.state].value; - if (ey.isNotEmpty) { - url += "${ll(url)}sy=$ey"; - } - } else if (filter.type == "EndMonthFilter") { - final em = filter.values[filter.state].value; - if (em.isNotEmpty) { - url += "${ll(url)}sm=$em"; - } - } else if (filter.type == "EndDayFilter") { - final ed = filter.values[filter.state].value; - if (ed.isNotEmpty) { - url += "${ll(url)}sd=$ed"; - } - } else if (filter.type == "GenreFilter") { - final genre = (filter.state as List).where((e) => e.state).toList(); - if (genre.isNotEmpty) { - url += "${ll(url)}genre="; - for (var st in genre) { - url += "${st.value},"; - } - } - } - } - url += "${ll(url)}page=$page"; - final res = (await client.get(Uri.parse(url))).body; - - return animeElementM(res); - } - - @override - Future getDetail(String url) async { - final statusList = [ - {"Currently Airing": 0, "Finished Airing": 1} - ]; - final res = (await client.get(Uri.parse("${source.baseUrl}$url"))).body; - MManga anime = MManga(); - final status = xpath(res, - '//*[@class="anisc-info"]/div[contains(text(),"Status:")]/span[2]/text()') - .first; - - anime.status = parseStatus(status, statusList); - anime.author = xpath(res, - '//*[@class="anisc-info"]/div[contains(text(),"Studios:")]/span/text()') - .first - .replaceAll("Studios:", ""); - anime.description = xpath(res, - '//*[@class="anisc-info"]/div[contains(text(),"Overview:")]/text()') - .first - .replaceAll("Overview:", ""); - final genre = xpath(res, - '//*[@class="anisc-info"]/div[contains(text(),"Genres:")]/a/text()'); - - anime.genre = genre; - final id = substringAfterLast(url, '-'); - - final urlEp = - "${source.baseUrl}/ajax${ajaxRoute('${source.baseUrl}')}/episode/list/$id"; - - final resEp = - (await client.get(Uri.parse(urlEp), headers: {"referer": url})).body; - - final html = json.decode(resEp)["html"]; - final epElements = parseHtml(html).select("a.ep-item"); - - List? episodesList = []; - - for (var epElement in epElements) { - final number = epElement.attr("data-number"); - final title = epElement.attr("title"); - - MChapter episode = MChapter(); - episode.name = "Episode $number: $title"; - episode.url = epElement.getHref; - episodesList.add(episode); - } - - anime.chapters = episodesList.reversed.toList(); - return anime; - } - - @override - Future> getVideoList(String url) async { - final id = substringAfterLast(url, '?ep='); - - final res = (await client.get( - Uri.parse( - "${source.baseUrl}/ajax${ajaxRoute('${source.baseUrl}')}/episode/servers?episodeId=$id"), - headers: {"referer": "${source.baseUrl}/$url"})) - .body; - final html = json.decode(res)["html"]; - - final serverElements = parseHtml(html).select("div.server-item"); - - List videos = []; - final hosterSelection = preferenceHosterSelection(source.id); - final typeSelection = preferenceTypeSelection(source.id); - for (var serverElement in serverElements) { - final name = serverElement.text; - final id = serverElement.attr("data-id"); - final subDub = serverElement.attr("data-type"); - - final resE = (await client.get( - Uri.parse( - "${source.baseUrl}/ajax${ajaxRoute('${source.baseUrl}')}/episode/sources?id=$id"), - headers: {"referer": "${source.baseUrl}/$url"})) - .body; - String epUrl = substringBefore(substringAfter(resE, "\"link\":\""), "\""); - List a = []; - if (hosterSelection.contains(name) && typeSelection.contains(subDub)) { - if (name.contains("Vidstreaming")) { - a = await rapidCloudExtractor(epUrl, "Vidstreaming - $subDub"); - } else if (name.contains("Vidcloud")) { - a = await rapidCloudExtractor(epUrl, "Vidcloud - $subDub"); - } else if (name.contains("StreamTape")) { - a = await streamTapeExtractor(epUrl, "StreamTape - $subDub"); - } else if (["HD-1", "HD-2"].any((element) => name.contains(element))) { - a = await rapidCloudExtractor(epUrl, "$name - $subDub"); - } - - videos.addAll(a); - } - } - - return sortVideos(videos, source.id); - } - - Future> rapidCloudExtractor(String url, String name) async { - final serverUrl = ['https://megacloud.tv', 'https://rapid-cloud.co']; - - final serverType = url.startsWith('https://megacloud.tv') ? 0 : 1; - final sourceUrl = [ - '/embed-2/ajax/e-1/getSources?id=', - '/ajax/embed-6-v2/getSources?id=' - ]; - final sourceSpliter = ['/e-1/', '/embed-6-v2/']; - final id = url.split(sourceSpliter[serverType]).last.split('?').first; - final resServer = (await client.get( - Uri.parse('${serverUrl[serverType]}${sourceUrl[serverType]}$id'), - headers: {"X-Requested-With": "XMLHttpRequest"})) - .body; - final encrypted = getMapValue(resServer, "encrypted"); - String videoResJson = ""; - List videos = []; - if (encrypted == "true") { - final ciphered = getMapValue(resServer, "sources"); - List> indexPairs = await generateIndexPairs(serverType); - var password = ''; - String ciphertext = ciphered; - int index = 0; - for (List item in json.decode(json.encode(indexPairs))) { - int start = item.first + index; - int end = start + item.last; - String passSubstr = ciphered.substring(start, end); - password += passSubstr; - ciphertext = ciphertext.replaceFirst(passSubstr, ""); - index += item.last; - } - videoResJson = decryptAESCryptoJS(ciphertext, password); - } else { - videoResJson = resServer; - } - - String masterUrl = - ((json.decode(videoResJson) as List>) - .first)['file']; - String type = ((json.decode(videoResJson) as List>) - .first)['type']; - - final tracks = (json.decode(resServer)['tracks'] as List) - .where((e) => e['kind'] == 'captions' ? true : false) - .toList(); - List subtitles = []; - - for (var sub in tracks) { - try { - MTrack subtitle = MTrack(); - subtitle - ..label = sub["label"] - ..file = sub["file"]; - subtitles.add(subtitle); - } catch (_) {} - } - - if (type == "hls") { - final masterPlaylistRes = (await client.get(Uri.parse(masterUrl))).body; - - for (var it in substringAfter(masterPlaylistRes, "#EXT-X-STREAM-INF:") - .split("#EXT-X-STREAM-INF:")) { - final quality = - "${substringBefore(substringBefore(substringAfter(substringAfter(it, "RESOLUTION="), "x"), ","), "\n")}p"; - - String videoUrl = substringBefore(substringAfter(it, "\n"), "\n"); - - if (!videoUrl.startsWith("http")) { - videoUrl = - "${masterUrl.split("/").sublist(0, masterUrl.split("/").length - 1).join("/")}/$videoUrl"; - } - - MVideo video = MVideo(); - video - ..url = videoUrl - ..originalUrl = videoUrl - ..quality = "$name - $quality" - ..subtitles = subtitles; - videos.add(video); - } - } else { - MVideo video = MVideo(); - video - ..url = masterUrl - ..originalUrl = masterUrl - ..quality = "$name - Default" - ..subtitles = subtitles; - videos.add(video); - } - return videos; - } - - Future>> generateIndexPairs(int serverType) async { - final jsPlayerUrl = [ - "https://megacloud.tv/js/player/a/prod/e1-player.min.js", - "https://rapid-cloud.co/js/player/prod/e6-player-v2.min.js" - ]; - final scriptText = - (await client.get(Uri.parse(jsPlayerUrl[serverType]))).body; - - final switchCode = scriptText.substring( - scriptText.lastIndexOf('switch'), scriptText.indexOf('=partKey')); - - List indexes = []; - for (var variableMatch - in RegExp(r'=(\w+)').allMatches(switchCode).toList()) { - final regex = RegExp( - ',${(variableMatch as RegExpMatch).group(1)}=((?:0x)?([0-9a-fA-F]+))'); - Match? match = regex.firstMatch(scriptText); - - if (match != null) { - String value = match.group(1); - if (value.contains("0x")) { - indexes.add(int.parse(substringAfter(value, "0x"), radix: 16)); - } else { - indexes.add(int.parse(value)); - } - } - } - - return chunked(indexes, 2); - } - - List> chunked(List list, int size) { - List> chunks = []; - for (int i = 0; i < list.length; i += size) { - int end = list.length; - if (i + size < list.length) { - end = i + size; - } - chunks.add(list.sublist(i, end)); - } - return chunks; - } - - MPages animeElementM(String res) { - List animeList = []; - - final urls = xpath( - res, '//*[@class^="flw-item"]/div[@class="film-detail"]/h3/a/@href'); - - final names = xpath(res, - '//*[@class^="flw-item"]/div[@class="film-detail"]/h3/a/@data-jname'); - - final images = xpath( - res, '//*[@class^="flw-item"]/div[@class="film-poster"]/img/@data-src'); - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - final nextPage = - xpath(res, '//li[@class="page-item"]/a[@title="Next"]/@href', ""); - return MPages(animeList, !nextPage.isEmpty); - } - - String ajaxRoute(String baseUrl) { - if (baseUrl == "https://kaido.to") { - return ""; - } - return "/v2"; - } - - List yearList = [ - for (var i = 1917; i < 2024; i++) - SelectFilterOption(i.toString(), i.toString()), - SelectFilterOption("All", "") - ]; - - @override - List getFilterList() { - return [ - SelectFilter("TypeFilter", "Type", 0, [ - SelectFilterOption("All", ""), - SelectFilterOption("Movie", "1"), - SelectFilterOption("TV", "2"), - SelectFilterOption("OVA", "3"), - SelectFilterOption("ONA", "4"), - SelectFilterOption("Special", "5"), - SelectFilterOption("Music", "6") - ]), - SelectFilter("StatusFilter", "Status", 0, [ - SelectFilterOption("All", ""), - SelectFilterOption("Finished Airing", "1"), - SelectFilterOption("Currently Airing", "2"), - SelectFilterOption("Not yet aired", "3") - ]), - SelectFilter("RatedFilter", "Rated", 0, [ - SelectFilterOption("All", ""), - SelectFilterOption("G", "1"), - SelectFilterOption("PG", "2"), - SelectFilterOption("PG-13", "3"), - SelectFilterOption("R", "4"), - SelectFilterOption("R+", "5"), - SelectFilterOption("Rx", "6") - ]), - SelectFilter("ScoreFilter", "Score", 0, [ - SelectFilterOption("All", ""), - SelectFilterOption("(1) Appalling", "1"), - SelectFilterOption("(2) Horrible", "2"), - SelectFilterOption("(3) Very Bad", "3"), - SelectFilterOption("(4) Bad", "4"), - SelectFilterOption("(5) Average", "5"), - SelectFilterOption("(6) Fine", "6"), - SelectFilterOption("(7) Good", "7"), - SelectFilterOption("(8) Very Good", "8"), - SelectFilterOption("(9) Great", "9"), - SelectFilterOption("(10) Masterpiece", "10") - ]), - SelectFilter("SeasonFilter", "Season", 0, [ - SelectFilterOption("All", ""), - SelectFilterOption("Spring", "1"), - SelectFilterOption("Summer", "2"), - SelectFilterOption("Fall", "3"), - SelectFilterOption("Winter", "4") - ]), - SelectFilter("LanguageFilter", "Language", 0, [ - SelectFilterOption("All", ""), - SelectFilterOption("SUB", "1"), - SelectFilterOption("DUB", "2"), - SelectFilterOption("SUB & DUB", "3") - ]), - SelectFilter("SortFilter", "Sort by", 0, [ - SelectFilterOption("All", ""), - SelectFilterOption("Default", "default"), - SelectFilterOption("Recently Added", "recently_added"), - SelectFilterOption("Recently Updated", "recently_updated"), - SelectFilterOption("Score", "score"), - SelectFilterOption("Name A-Z", "name_az"), - SelectFilterOption("Released Date", "released_date"), - SelectFilterOption("Most Watched", "most_watched") - ]), - SelectFilter( - "StartYearFilter", "Start year", 0, yearList.reversed.toList()), - SelectFilter("StartMonthFilter", "Start month", 0, [ - SelectFilterOption("All", ""), - for (var i = 1; i < 13; i++) - SelectFilterOption(i.toString(), i.toString()) - ]), - SelectFilter("StartDayFilter", "Start day", 0, [ - SelectFilterOption("All", ""), - for (var i = 1; i < 32; i++) - SelectFilterOption(i.toString(), i.toString()), - ]), - SelectFilter("EndYearFilter", "End year", 0, yearList.reversed.toList()), - SelectFilter("EndmonthFilter", "End month", 0, [ - SelectFilterOption("All", ""), - for (var i = 1; i < 32; i++) - SelectFilterOption(i.toString(), i.toString()) - ]), - SelectFilter("EndDayFilter", "End day", 0, [ - SelectFilterOption("All", ""), - for (var i = 1; i < 32; i++) - SelectFilterOption(i.toString(), i.toString()) - ]), - GroupFilter("GenreFilter", "Genre", [ - CheckBoxFilter("Action", "1"), - CheckBoxFilter("Adventure", "2"), - CheckBoxFilter("Cars", "3"), - CheckBoxFilter("Comedy", "4"), - CheckBoxFilter("Dementia", "5"), - CheckBoxFilter("Demons", "6"), - CheckBoxFilter("Drama", "8"), - CheckBoxFilter("Ecchi", "9"), - CheckBoxFilter("Fantasy", "10"), - CheckBoxFilter("Game", "11"), - CheckBoxFilter("Harem", "35"), - CheckBoxFilter("Historical", "13"), - CheckBoxFilter("Horror", "14"), - CheckBoxFilter("Isekai", "44"), - CheckBoxFilter("Josei", "43"), - CheckBoxFilter("Kids", "15"), - CheckBoxFilter("Magic", "16"), - CheckBoxFilter("Martial Arts", "17"), - CheckBoxFilter("Mecha", "18"), - CheckBoxFilter("Military", "38"), - CheckBoxFilter("Music", "19"), - CheckBoxFilter("Mystery", "7"), - CheckBoxFilter("Parody", "20"), - CheckBoxFilter("Police", "39"), - CheckBoxFilter("Psychological", "40"), - CheckBoxFilter("Romance", "22"), - CheckBoxFilter("Samurai", "21"), - CheckBoxFilter("School", "23"), - CheckBoxFilter("Sci-Fi", "24"), - CheckBoxFilter("Seinen", "42"), - CheckBoxFilter("Shoujo", "25"), - CheckBoxFilter("Shoujo Ai", "26"), - CheckBoxFilter("Shounen", "27"), - CheckBoxFilter("Shounen Ai", "28"), - CheckBoxFilter("Slice of Life", "36"), - CheckBoxFilter("Space", "29"), - CheckBoxFilter("Sports", "30"), - CheckBoxFilter("Super Power", "31"), - CheckBoxFilter("Supernatural", "37"), - CheckBoxFilter("Thriller", "41"), - CheckBoxFilter("Vampire", "32"), - CheckBoxFilter("Yaoi", "33"), - CheckBoxFilter("Yuri", "34") - ]), - ]; - } - - @override - List getSourcePreferences() { - return [ - ListPreference( - key: "preferred_quality", - title: "Preferred Quality", - summary: "", - valueIndex: 1, - entries: ["1080p", "720p", "480p", "360p"], - entryValues: ["1080", "720", "480", "360"]), - if (source.name == "HiAnime") - ListPreference( - key: "preferred_server1", - title: "Preferred server", - summary: "", - valueIndex: 0, - entries: ["HD-1", "HD-2", "StreamTape"], - entryValues: ["HD-1", "HD-2", "StreamTape"]), - if (source.name != "HiAnime") - ListPreference( - key: "preferred_server1", - title: "Preferred server", - summary: "", - valueIndex: 0, - entries: ["Vidstreaming", "VidCloud", "StreamTape"], - entryValues: ["Vidstreaming", "VidCloud", "StreamTape"]), - ListPreference( - key: "preferred_type1", - title: "Preferred Type", - summary: "", - valueIndex: 0, - entries: ["Sub", "Dub"], - entryValues: ["sub", "dub"]), - if (source.name != "HiAnime") - MultiSelectListPreference( - key: "hoster_selection1", - title: "Enable/Disable Hosts", - summary: "", - entries: ["Vidstreaming", "VidCloud", "StreamTape"], - entryValues: ["Vidstreaming", "VidCloud", "StreamTape"], - values: ["Vidstreaming", "VidCloud", "StreamTape"]), - if (source.name == "HiAnime") - MultiSelectListPreference( - key: "hoster_selection1", - title: "Enable/Disable Hosts", - summary: "", - entries: ["HD-1", "HD-2", "StreamTape"], - entryValues: ["HD-1", "HD-2", "StreamTape"], - values: ["HD-1", "HD-2", "StreamTape"]), - MultiSelectListPreference( - key: "type_selection", - title: "Enable/Disable Types", - summary: "", - entries: ["Sub", "Dub"], - entryValues: ["sub", "dub"], - values: ["sub", "dub"]), - ]; - } - - List sortVideos(List videos, int sourceId) { - String quality = getPreferenceValue(sourceId, "preferred_quality"); - String server = getPreferenceValue(sourceId, "preferred_server1"); - String type = getPreferenceValue(sourceId, "preferred_type1"); - videos.sort((MVideo a, MVideo b) { - int qualityMatchA = 0; - - if (a.quality.contains(quality) && - a.quality.toLowerCase().contains(type.toLowerCase()) && - a.quality.toLowerCase().contains(server.toLowerCase())) { - qualityMatchA = 1; - } - int qualityMatchB = 0; - if (b.quality.contains(quality) && - b.quality.toLowerCase().contains(type.toLowerCase()) && - b.quality.toLowerCase().contains(server.toLowerCase())) { - qualityMatchB = 1; - } - if (qualityMatchA != qualityMatchB) { - return qualityMatchB - qualityMatchA; - } - - final regex = RegExp(r'(\d+)p'); - final matchA = regex.firstMatch(a.quality); - final matchB = regex.firstMatch(b.quality); - final int qualityNumA = int.tryParse(matchA?.group(1) ?? '0') ?? 0; - final int qualityNumB = int.tryParse(matchB?.group(1) ?? '0') ?? 0; - return qualityNumB - qualityNumA; - }); - return videos; - } - - List preferenceHosterSelection(int sourceId) { - return getPreferenceValue(sourceId, "hoster_selection1"); - } - - List preferenceTypeSelection(int sourceId) { - return getPreferenceValue(sourceId, "type_selection"); - } - - String ll(String url) { - if (url.contains("?")) { - return "&"; - } - return "?"; - } -} - -ZoroTheme main(MSource source) { - return ZoroTheme(source: source); -} diff --git a/dart/anime/src/all/animeworldindia/animeworldindia.dart b/dart/anime/src/all/animeworldindia/animeworldindia.dart deleted file mode 100644 index 078cd210..00000000 --- a/dart/anime/src/all/animeworldindia/animeworldindia.dart +++ /dev/null @@ -1,395 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class AnimeWorldIndia extends MProvider { - AnimeWorldIndia({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - Future getPopular(int page) async { - final res = (await client.get(Uri.parse( - "${source.baseUrl}/advanced-search/page/$page/?s_lang=${source.lang}&s_orderby=viewed"))) - .body; - - return parseAnimeList(res); - } - - @override - Future getLatestUpdates(int page) async { - final res = (await client.get(Uri.parse( - "${source.baseUrl}/advanced-search/page/$page/?s_lang=${source.lang}&s_orderby=update"))) - .body; - - return parseAnimeList(res); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final filters = filterList.filters; - String url = - "${source.baseUrl}/advanced-search/page/$page/?s_keyword=$query&s_lang=${source.lang}"; - for (var filter in filters) { - if (filter.type == "TypeFilter") { - final type = filter.values[filter.state].value; - url += "${ll(url)}s_type=$type"; - } else if (filter.type == "StatusFilter") { - final status = filter.values[filter.state].value; - url += "${ll(url)}s_status=$status"; - } else if (filter.type == "StyleFilter") { - final style = filter.values[filter.state].value; - url += "${ll(url)}s_sub_type=$style"; - } else if (filter.type == "YearFilter") { - final year = filter.values[filter.state].value; - url += "${ll(url)}s_year=$year"; - } else if (filter.type == "SortFilter") { - final sort = filter.values[filter.state].value; - url += "${ll(url)}s_orderby=$sort"; - } else if (filter.type == "GenresFilter") { - final genre = (filter.state as List).where((e) => e.state).toList(); - url += "${ll(url)}s_genre="; - if (genre.isNotEmpty) { - for (var st in genre) { - url += "${st.value}".toLowerCase().replaceAll(" ", "-"); - if (genre.length > 1) { - url += "%2C"; - } - } - if (genre.length > 1) { - url = substringBeforeLast(url, '%2C'); - } - } - } - } - - final res = (await client.get(Uri.parse(url))).body; - return parseAnimeList(res); - } - - @override - Future getDetail(String url) async { - final res = (await client.get(Uri.parse(url))).body; - MManga anime = MManga(); - final document = parseHtml(res); - final isMovie = - document.xpath('//li/a[contains(text(),"Movie")]/text()').isNotEmpty; - if (isMovie) { - anime.status = MStatus.completed; - } else { - final eps = xpath( - res, '//ul/li/a[contains(@href,"${source.baseUrl}/watch")]/text()'); - if (eps.isNotEmpty) { - final epParts = eps.first - .substring(3) - .replaceAll(" ", "") - .replaceAll("\n", "") - .split('/'); - if (epParts.length == 2) { - if (epParts[0].compareTo(epParts[1]) == 0) { - anime.status = MStatus.completed; - } else { - anime.status = MStatus.ongoing; - } - } - } - } - anime.description = document.selectFirst("div[data-synopsis]")?.text ?? ""; - anime.author = document - .xpath('//li[contains(text(),"Producers:")]/span/a/text()') - .join(', '); - anime.genre = document.xpath( - '//span[@class="leading-6"]/a[contains(@class,"border-opacity-30")]/text()'); - final seasonsJson = json.decode(substringBeforeLast( - substringBefore( - substringAfter(res, "var season_list = "), "var season_label ="), - ";")) as List>; - bool isSingleSeason = seasonsJson.length == 1; - List? episodesList = []; - for (var i = 0; i < seasonsJson.length; i++) { - final seasonJson = seasonsJson[i]; - final seasonName = isSingleSeason ? "" : "Season ${i + 1}"; - final episodesJson = - (seasonJson["episodes"]["all"] as List>) - .reversed - .toList(); - for (var j = 0; j < episodesJson.length; j++) { - final episodeJson = episodesJson[j]; - final episodeTitle = episodeJson["metadata"]["title"] ?? ""; - String episodeName = ""; - if (isMovie) { - episodeName = "Movie"; - } else { - if (seasonName.isNotEmpty) { - episodeName = "$seasonName - "; - } - episodeName += "Episode ${j + 1} "; - if (episodeTitle.isNotEmpty) { - episodeName += "- $episodeTitle"; - } - } - MChapter episode = MChapter(); - episode.name = episodeName; - - episode.dateUpload = - "${int.parse(episodeJson["metadata"]["released"] ?? "0") * 1000}"; - episode.url = "/wp-json/kiranime/v1/episode?id=${episodeJson["id"]}"; - episodesList.add(episode); - } - } - - anime.chapters = episodesList.reversed.toList(); - return anime; - } - - @override - Future> getVideoList(String url) async { - final res = (await client.get(Uri.parse("${source.baseUrl}$url"))).body; - var resJson = substringBefore( - substringAfterLast(res, "\"players\":"), ",\"noplayer\":"); - var streams = (json.decode(resJson) as List>) - .where((e) => - (e["type"] == "stream" ? true : false) && - (e["url"] as String).isNotEmpty) - .toList() - .where((e) => language(source.lang).isEmpty || - language(source.lang) == e["language"] - ? true - : false) - .toList(); - List videos = []; - for (var stream in streams) { - String videoUrl = stream["url"]; - final language = stream["language"]; - final video = await mystreamExtractor(videoUrl, language); - videos.addAll(video); - } - - return sortVideos(videos, source.id); - } - - MPages parseAnimeList(String res) { - List animeList = []; - final document = parseHtml(res); - - for (var element in document.select("div.col-span-1")) { - MManga anime = MManga(); - anime.name = - element.selectFirst("div.font-medium.line-clamp-2.mb-3").text; - anime.link = element.selectFirst("a").getHref; - anime.imageUrl = - "${source.baseUrl}${getUrlWithoutDomain(element.selectFirst("img").getSrc)}"; - animeList.add(anime); - } - final hasNextPage = xpath(res, - '//li/span[@class="page-numbers current"]/parent::li//following-sibling::li/a/@href') - .isNotEmpty; - return MPages(animeList, hasNextPage); - } - - String language(String lang) { - final languages = { - "all": "", - "bn": "bengali", - "en": "english", - "hi": "hindi", - "ja": "japanese", - "ml": "malayalam", - "mr": "marathi", - "ta": "tamil", - "te": "telugu" - }; - return languages[lang] ?? ""; - } - - Future> mystreamExtractor(String url, String language) async { - List videos = []; - final res = (await client.get(Uri.parse(url))).body; - final streamCode = substringBefore( - substringAfter(substringAfter(res, "sniff("), ", \""), '"'); - - final streamUrl = - "${substringBefore(url, "/watch")}/m3u8/$streamCode/master.txt?s=1&cache=1"; - final masterPlaylistRes = (await client.get(Uri.parse(streamUrl))).body; - - List audios = []; - for (var it in substringAfter(masterPlaylistRes, "#EXT-X-MEDIA:TYPE=AUDIO") - .split("#EXT-X-MEDIA:TYPE=AUDIO")) { - final line = - substringBefore(substringAfter(it, "#EXT-X-MEDIA:TYPE=AUDIO"), "\n"); - final audioUrl = substringBefore(substringAfter(line, "URI=\""), "\""); - MTrack audio = MTrack(); - audio - ..label = substringBefore(substringAfter(line, "NAME=\""), "\"") - ..file = audioUrl; - audios.add(audio); - } - - for (var it in substringAfter(masterPlaylistRes, "#EXT-X-STREAM-INF:") - .split("#EXT-X-STREAM-INF:")) { - final quality = - "${substringBefore(substringBefore(substringAfter(substringAfter(it, "RESOLUTION="), "x"), ","), "\n")}p"; - - String videoUrl = substringBefore(substringAfter(it, "\n"), "\n"); - - MVideo video = MVideo(); - video - ..url = videoUrl - ..originalUrl = videoUrl - ..quality = "[$language] MyStream - $quality" - ..audios = audios; - videos.add(video); - } - return videos; - } - - @override - List getFilterList() { - return [ - SelectFilter("TypeFilter", "Type", 0, [ - SelectFilterOption("Any", "all"), - SelectFilterOption("TV", "tv"), - SelectFilterOption("Movie", "movies"), - ]), - SelectFilter("StatusFilter", "Status", 0, [ - SelectFilterOption("Any", "all"), - SelectFilterOption("Currently Airing", "airing"), - SelectFilterOption("Finished Airing", "completed"), - ]), - SelectFilter("StyleFilter", "Style", 0, [ - SelectFilterOption("Any", "all"), - SelectFilterOption("Anime", "anime"), - SelectFilterOption("Cartoon", "cartoon"), - ]), - SelectFilter("YearFilter", "Year", 0, [ - SelectFilterOption("Any", "all"), - SelectFilterOption("2024", "2024"), - SelectFilterOption("2023", "2023"), - SelectFilterOption("2022", "2022"), - SelectFilterOption("2021", "2021"), - SelectFilterOption("2020", "2020"), - SelectFilterOption("2019", "2019"), - SelectFilterOption("2018", "2018"), - SelectFilterOption("2017", "2017"), - SelectFilterOption("2016", "2016"), - SelectFilterOption("2015", "2015"), - SelectFilterOption("2014", "2014"), - SelectFilterOption("2013", "2013"), - SelectFilterOption("2012", "2012"), - SelectFilterOption("2011", "2011"), - SelectFilterOption("2010", "2010"), - SelectFilterOption("2009", "2009"), - SelectFilterOption("2008", "2008"), - SelectFilterOption("2007", "2007"), - SelectFilterOption("2006", "2006"), - SelectFilterOption("2005", "2005"), - SelectFilterOption("2004", "2004"), - SelectFilterOption("2003", "2003"), - SelectFilterOption("2002", "2002"), - SelectFilterOption("2001", "2001"), - SelectFilterOption("2000", "2000"), - SelectFilterOption("1999", "1999"), - SelectFilterOption("1998", "1998"), - SelectFilterOption("1997", "1997"), - SelectFilterOption("1996", "1996"), - SelectFilterOption("1995", "1995"), - SelectFilterOption("1994", "1994"), - SelectFilterOption("1993", "1993"), - SelectFilterOption("1992", "1992"), - SelectFilterOption("1991", "1991"), - SelectFilterOption("1990", "1990") - ]), - SelectFilter("SortFilter", "Sort", 0, [ - SelectFilterOption("Default", "default"), - SelectFilterOption("Ascending", "title_a_z"), - SelectFilterOption("Descending", "title_z_a"), - SelectFilterOption("Updated", "update"), - SelectFilterOption("Published", "date"), - SelectFilterOption("Most Viewed", "viewed"), - SelectFilterOption("Favourite", "favorite"), - ]), - GroupFilter("GenresFilter", "Genres", [ - CheckBoxFilter("Action", "Action"), - CheckBoxFilter("Adult Cast", "Adult Cast"), - CheckBoxFilter("Adventure", "Adventure"), - CheckBoxFilter("Animation", "Animation"), - CheckBoxFilter("Comedy", "Comedy"), - CheckBoxFilter("Detective", "Detective"), - CheckBoxFilter("Drama", "Drama"), - CheckBoxFilter("Ecchi", "Ecchi"), - CheckBoxFilter("Family", "Family"), - CheckBoxFilter("Fantasy", "Fantasy"), - CheckBoxFilter("Isekai", "Isekai"), - CheckBoxFilter("Kids", "Kids"), - CheckBoxFilter("Martial Arts", "Martial Arts"), - CheckBoxFilter("Mecha", "Mecha"), - CheckBoxFilter("Military", "Military"), - CheckBoxFilter("Mystery", "Mystery"), - CheckBoxFilter("Otaku Culture", "Otaku Culture"), - CheckBoxFilter("Reality", "Reality"), - CheckBoxFilter("Romance", "Romance"), - CheckBoxFilter("School", "School"), - CheckBoxFilter("Sci-Fi", "Sci-Fi"), - CheckBoxFilter("Seinen", "Seinen"), - CheckBoxFilter("Shounen", "Shounen"), - CheckBoxFilter("Slice of Life", "Slice of Life"), - CheckBoxFilter("Sports", "Sports"), - CheckBoxFilter("Super Power", "Super Power"), - CheckBoxFilter("SuperHero", "SuperHero"), - CheckBoxFilter("Supernatural", "Supernatural"), - CheckBoxFilter("TV Movie", "TV Movie"), - ]), - ]; - } - - @override - List getSourcePreferences() { - return [ - ListPreference( - key: "preferred_quality", - title: "Preferred Quality", - summary: "", - valueIndex: 0, - entries: ["1080p", "720p", "480p", "360p", "240p"], - entryValues: ["1080", "720", "480", "360", "240"]), - ]; - } - - List sortVideos(List videos, int sourceId) { - String quality = getPreferenceValue(sourceId, "preferred_quality"); - videos.sort((MVideo a, MVideo b) { - int qualityMatchA = 0; - - if (a.quality.contains(quality)) { - qualityMatchA = 1; - } - int qualityMatchB = 0; - if (b.quality.contains(quality)) { - qualityMatchB = 1; - } - if (qualityMatchA != qualityMatchB) { - return qualityMatchB - qualityMatchA; - } - - final regex = RegExp(r'(\d+)p'); - final matchA = regex.firstMatch(a.quality); - final matchB = regex.firstMatch(b.quality); - final int qualityNumA = int.tryParse(matchA?.group(1) ?? '0') ?? 0; - final int qualityNumB = int.tryParse(matchB?.group(1) ?? '0') ?? 0; - return qualityNumB - qualityNumA; - }); - return videos; - } - - String ll(String url) { - if (url.contains("?")) { - return "&"; - } - return "?"; - } -} - -AnimeWorldIndia main(MSource source) { - return AnimeWorldIndia(source: source); -} diff --git a/dart/anime/src/all/animeworldindia/icon.png b/dart/anime/src/all/animeworldindia/icon.png deleted file mode 100644 index 0426e29d..00000000 Binary files a/dart/anime/src/all/animeworldindia/icon.png and /dev/null differ diff --git a/dart/anime/src/all/animeworldindia/sources.dart b/dart/anime/src/all/animeworldindia/sources.dart deleted file mode 100644 index b7c0cddb..00000000 --- a/dart/anime/src/all/animeworldindia/sources.dart +++ /dev/null @@ -1,33 +0,0 @@ -import '../../../../../model/source.dart'; - -const _animeworldindiaVersion = "0.0.25"; -const _animeworldindiaSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/all/animeworldindia/animeworldindia.dart"; - -String _iconUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/all/animeworldindia/icon.png"; - -List _languages = [ - "all", - "en", - "bn", - "hi", - "ja", - "ml", - "mr", - "ta", - "te", -]; - -List get animeworldindiaSourcesList => _animeworldindiaSourcesList; -List _animeworldindiaSourcesList = _languages - .map((e) => Source( - name: 'AnimeWorld India', - baseUrl: "https://anime-world.in", - lang: e, - typeSource: "multiple", - iconUrl: _iconUrl, - version: _animeworldindiaVersion, - isManga: false, - sourceCodeUrl: _animeworldindiaSourceCodeUrl)) - .toList(); diff --git a/dart/anime/src/all/nyaa/icon.png b/dart/anime/src/all/nyaa/icon.png deleted file mode 100644 index b57dba5f..00000000 Binary files a/dart/anime/src/all/nyaa/icon.png and /dev/null differ diff --git a/dart/anime/src/all/nyaa/nyaa.dart b/dart/anime/src/all/nyaa/nyaa.dart deleted file mode 100644 index 00c25627..00000000 --- a/dart/anime/src/all/nyaa/nyaa.dart +++ /dev/null @@ -1,128 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; - -class Nyaa extends MProvider { - Nyaa({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - Future getPopular(int page) async { - final res = (await client.get(Uri.parse( - "${source.baseUrl}/?f=0&c=${getPreferenceValue(source.id, "preferred_categorie_page")}&q=&s=downloads&o=desc&p=$page"))) - .body; - return parseAnimeList(res); - } - - @override - Future getLatestUpdates(int page) async { - final res = (await client.get(Uri.parse( - "${source.baseUrl}/?f=0&c=${getPreferenceValue(source.id, "preferred_categorie_page")}&q=$page"))) - .body; - return parseAnimeList(res); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final filters = filterList.filters; - String url = ""; - url = - "${source.baseUrl}/?f=0&c=${getPreferenceValue(source.id, "preferred_categorie_page")}&q=${query.replaceAll(" ", "+")}&p=$page"; - for (var filter in filters) { - if (filter.type == "SortFilter") { - url += "${ll(url)}s=${filter.values[filter.state.index].value}"; - final asc = filter.state.ascending ? "&o=asc" : "&o=desc"; - url += "${ll(url)}$asc"; - } - } - final res = (await client.get(Uri.parse(url))).body; - return parseAnimeList(res); - } - - @override - Future getDetail(String url) async { - MManga anime = MManga(); - final res = (await client.get(Uri.parse(url))).body; - final document = parseHtml(res); - String description = - (document.xpathFirst('//div[@class="panel-body"]/text()') ?? "") - .replaceAll("\n", ""); - description += - "\n\n${(document.xpathFirst('//div[@class="panel panel-default"]/text()') ?? "").trim().replaceAll("\n", "")}"; - anime.description = description; - MChapter ep = MChapter(); - ep.name = "Torrent"; - ep.url = - "${source.baseUrl}/download/${substringAfterLast(url, '/')}.torrent"; - anime.chapters = [ep]; - return anime; - } - - @override - List getFilterList() { - return [ - SortFilter("SortFilter", "Sort by", SortState(0, true), [ - SelectFilterOption("None", ""), - SelectFilterOption("Size", "size"), - SelectFilterOption("Date", "id"), - SelectFilterOption("Seeders", "seeders"), - SelectFilterOption("Leechers", "leechers"), - SelectFilterOption("Download", "downloads") - ]) - ]; - } - - @override - List getSourcePreferences() { - return [ - ListPreference( - key: "preferred_categorie_page", - title: "Preferred categorie page", - summary: "", - valueIndex: 0, - entries: ["Anime", "Live Action"], - entryValues: ["1_0", "4_0"]), - ]; - } - - MPages parseAnimeList(String res) { - List animeList = []; - final document = parseHtml(res); - - final values = document - .select("body > div > div.table-responsive > table > tbody > tr"); - for (var value in values) { - MManga anime = MManga(); - anime.imageUrl = - "${source.baseUrl}${getUrlWithoutDomain(value.selectFirst("td:nth-child(1) > a > img").getSrc)}"; - MElement firstElement = value - .select("td > a") - .where((MElement e) => - e.outerHtml.contains("/view/") && - !e.outerHtml.contains("#comments")) - .toList() - .first; - anime.link = - "${source.baseUrl}${getUrlWithoutDomain(firstElement.getHref)}"; - anime.name = firstElement.attr("title"); - animeList.add(anime); - } - - final hasNextPage = - xpath(res, '//ul[@class="pagination"]/li[contains(text(),"»")]/a/@href') - .isNotEmpty; - return MPages(animeList, hasNextPage); - } - - String ll(String url) { - if (url.contains("?")) { - return "&"; - } - return "?"; - } -} - -Nyaa main(MSource source) { - return Nyaa(source: source); -} diff --git a/dart/anime/src/all/nyaa/source.dart b/dart/anime/src/all/nyaa/source.dart deleted file mode 100644 index ea04acd6..00000000 --- a/dart/anime/src/all/nyaa/source.dart +++ /dev/null @@ -1,19 +0,0 @@ -import '../../../../../model/source.dart'; - -const _nyaaVersion = "0.0.2"; -const _nyaaSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/all/nyaa/nyaa.dart"; - -String _iconUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/all/nyaa/icon.png"; - -Source get nyaaSource => _nyaaSource; -Source _nyaaSource = Source( - name: 'Nyaa', - baseUrl: "https://nyaa.si", - lang: "all", - typeSource: "torrent", - iconUrl: _iconUrl, - version: _nyaaVersion, - isManga: false, - sourceCodeUrl: _nyaaSourceCodeUrl); diff --git a/dart/anime/src/ar/okanime/icon.png b/dart/anime/src/ar/okanime/icon.png deleted file mode 100644 index 6057076d..00000000 Binary files a/dart/anime/src/ar/okanime/icon.png and /dev/null differ diff --git a/dart/anime/src/ar/okanime/okanime.dart b/dart/anime/src/ar/okanime/okanime.dart deleted file mode 100644 index 470b02bd..00000000 --- a/dart/anime/src/ar/okanime/okanime.dart +++ /dev/null @@ -1,223 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class OkAnime extends MProvider { - OkAnime({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - Future getPopular(int page) async { - final res = (await client.get(Uri.parse(source.baseUrl))).body; - List animeList = []; - String path = - '//div[@class="section" and contains(text(),"افضل انميات")]/div[@class="section-content"]/div/div/div[contains(@class,"anime-card")]'; - final urls = xpath(res, '$path/div[@class="anime-title")]/h4/a/@href'); - final names = xpath(res, '$path/div[@class="anime-title")]/h4/a/text()'); - final images = xpath(res, '$path/div[@class="anime-image")]/img/@src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - return MPages(animeList, false); - } - - @override - Future getLatestUpdates(int page) async { - final res = (await client - .get(Uri.parse("${source.baseUrl}/espisode-list?page=$page"))) - .body; - List animeList = []; - String path = '//*[contains(@class,"anime-card")]'; - final urls = xpath(res, '$path/div[@class="anime-title")]/h4/a/@href'); - final names = xpath(res, '$path/div[@class="anime-title")]/h4/a/text()'); - final images = xpath(res, '$path/div[@class="episode-image")]/img/@src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - final nextPage = - xpath(res, '//li[@class="page-item"]/a[@rel="next"]/@href'); - return MPages(animeList, nextPage.isNotEmpty); - } - - @override - Future search(String query, int page, FilterList filterList) async { - String url = "${source.baseUrl}/search/?s=$query"; - if (page > 1) { - url += "&page=$page"; - } - - final res = (await client.get(Uri.parse(url))).body; - - List animeList = []; - String path = '//*[contains(@class,"anime-card")]'; - final urls = xpath(res, '$path/div[@class="anime-title")]/h4/a/@href'); - final names = xpath(res, '$path/div[@class="anime-title")]/h4/a/text()'); - final images = xpath(res, '$path/div[@class="anime-image")]/img/@src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - final nextPage = - xpath(res, '//li[@class="page-item"]/a[@rel="next"]/@href'); - return MPages(animeList, nextPage.isNotEmpty); - } - - @override - Future getDetail(String url) async { - final statusList = [ - {"يعرض الان": 0, "مكتمل": 1} - ]; - final res = (await client.get(Uri.parse(url))).body; - MManga anime = MManga(); - final status = xpath(res, - '//*[@class="full-list-info" and contains(text(),"حالة الأنمي")]/small/a/text()'); - if (status.isNotEmpty) { - anime.status = parseStatus(status.first, statusList); - } - anime.description = xpath(res, '//*[@class="review-content"]/text()').first; - - anime.genre = xpath(res, '//*[@class="review-author-info"]/a/text()'); - final epUrls = xpath(res, - '//*[contains(@class,"anime-card")]/div[@class="anime-title")]/h5/a/@href') - .reversed - .toList(); - final names = xpath(res, - '//*[contains(@class,"anime-card")]/div[@class="anime-title")]/h5/a/text()') - .reversed - .toList(); - - List? episodesList = []; - for (var i = 0; i < epUrls.length; i++) { - MChapter episode = MChapter(); - episode.name = names[i]; - episode.url = epUrls[i]; - episodesList.add(episode); - } - - anime.chapters = episodesList; - return anime; - } - - @override - Future> getVideoList(String url) async { - final res = (await client.get(Uri.parse(url))).body; - final urls = xpath(res, '//*[@id="streamlinks"]/a/@data-src'); - final qualities = xpath(res, '//*[@id="streamlinks"]/a/span/text()'); - final hosterSelection = preferenceHosterSelection(source.id); - List videos = []; - for (var i = 0; i < urls.length; i++) { - final url = urls[i]; - final quality = getQuality(qualities[i]); - List a = []; - - if (url.contains("https://doo") && hosterSelection.contains("Dood")) { - a = await doodExtractor(url, "DoodStream - $quality"); - } else if (url.contains("mp4upload") && - hosterSelection.contains("Mp4upload")) { - a = await mp4UploadExtractor(url, null, "", ""); - } else if (url.contains("ok.ru") && hosterSelection.contains("Okru")) { - a = await okruExtractor(url); - } else if (url.contains("voe.sx") && hosterSelection.contains("Voe")) { - a = await voeExtractor(url, "VoeSX $quality"); - } else if (containsVidBom(url) && hosterSelection.contains("VidBom")) { - a = await vidBomExtractor(url); - } - videos.addAll(a); - } - return sortVideos(videos, source.id); - } - - @override - List getSourcePreferences() { - return [ - ListPreference( - key: "preferred_quality", - title: "Preferred Quality", - summary: "", - valueIndex: 1, - entries: ["1080p", "720p", "480p", "360p"], - entryValues: ["1080", "720", "480", "360"]), - MultiSelectListPreference( - key: "hoster_selection", - title: "Enable/Disable Hosts", - summary: "", - entries: ["Dood", "Voe", "Mp4upload", "VidBom", "Okru"], - entryValues: ["Dood", "Voe", "Mp4upload", "VidBom", "Okru"], - values: ["Dood", "Voe", "Mp4upload", "VidBom", "Okru"]), - ]; - } - - List sortVideos(List videos, int sourceId) { - String quality = getPreferenceValue(sourceId, "preferred_quality"); - - videos.sort((MVideo a, MVideo b) { - int qualityMatchA = 0; - if (a.quality.contains(quality)) { - qualityMatchA = 1; - } - int qualityMatchB = 0; - if (b.quality.contains(quality)) { - qualityMatchB = 1; - } - if (qualityMatchA != qualityMatchB) { - return qualityMatchB - qualityMatchA; - } - - final regex = RegExp(r'(\d+)p'); - final matchA = regex.firstMatch(a.quality); - final matchB = regex.firstMatch(b.quality); - final int qualityNumA = int.tryParse(matchA?.group(1) ?? '0') ?? 0; - final int qualityNumB = int.tryParse(matchB?.group(1) ?? '0') ?? 0; - return qualityNumB - qualityNumA; - }); - - return videos; - } - - List preferenceHosterSelection(int sourceId) { - return getPreferenceValue(sourceId, "hoster_selection"); - } - - String getQuality(String quality) { - quality = quality.replaceAll(" ", ""); - if (quality == "HD") { - return "720p"; - } else if (quality == "FHD") { - return "1080p"; - } else if (quality == "SD") { - return "480p"; - } - return "240p"; - } - - bool containsVidBom(String url) { - url = url; - final list = ["vidbam", "vadbam", "vidbom", "vidbm"]; - for (var n in list) { - if (url.contains(n)) { - return true; - } - } - return false; - } -} - -OkAnime main(MSource source) { - return OkAnime(source: source); -} diff --git a/dart/anime/src/ar/okanime/source.dart b/dart/anime/src/ar/okanime/source.dart deleted file mode 100644 index 64ab435d..00000000 --- a/dart/anime/src/ar/okanime/source.dart +++ /dev/null @@ -1,16 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get okanimeSource => _okanimeSource; -const _okanimeVersion = "0.0.55"; -const _okanimeSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/ar/okanime/okanime.dart"; -Source _okanimeSource = Source( - name: "Okanime", - baseUrl: "https://www.okanime.xyz", - lang: "ar", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/ar/okanime/icon.png", - sourceCodeUrl: _okanimeSourceCodeUrl, - version: _okanimeVersion, - isManga: false); diff --git a/dart/anime/src/de/aniflix/aniflix.dart b/dart/anime/src/de/aniflix/aniflix.dart deleted file mode 100644 index 3195d02b..00000000 --- a/dart/anime/src/de/aniflix/aniflix.dart +++ /dev/null @@ -1,240 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class AniFlix extends MProvider { - AniFlix({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - Future getPopular(int page) async { - final headers = getHeader(source.baseUrl); - final res = (await client.get( - Uri.parse("${source.baseUrl}/api/show/new/${page - 1}"), - headers: headers)) - .body; - - return parseAnimeList(res, true); - } - - @override - Future getLatestUpdates(int page) async { - final headers = getHeader(source.baseUrl); - final res = (await client.get( - Uri.parse("${source.baseUrl}/api/show/airing/${page - 1}"), - headers: headers)) - .body; - final datas = json.decode(res); - List animeList = []; - List ids = []; - for (var data in datas) { - final anim = data["season"]["show"]; - if (!ids.contains(anim["id"])) { - ids.add(anim["id"]); - MManga anime = MManga(); - anime.name = anim["name"]; - anime.imageUrl = - "${source.baseUrl}/storage/" + (anim["cover_portrait"] ?? ""); - anime.link = - getUrlWithoutDomain("${source.baseUrl}/api/show/${anim['url']}"); - anime.description = anim["description"]; - if (anim["airing"] == 0) { - anime.status = MStatus.completed; - } else if (anim["airing"] == 1) { - anime.status = MStatus.ongoing; - } - animeList.add(anime); - } - } - return MPages(animeList, true); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final res = await client.post( - Uri.parse("${source.baseUrl}/api/show/search"), - headers: {'Referer': source.baseUrl}, - body: {"search": query}); - return parseAnimeList(res.body, false); - } - - @override - Future getDetail(String url) async { - final res = (await client.get(Uri.parse("${source.baseUrl}$url"))).body; - MManga anime = MManga(); - final jsonRes = json.decode(res); - anime.name = jsonRes["name"]; - if (jsonRes["cover_portrait"] != null) { - anime.imageUrl = "${source.baseUrl}/storage/" + jsonRes["cover_portrait"]; - } - anime.description = jsonRes["description"]; - anime.genre = (jsonRes["genres"] as List>) - .map((e) => e["name"]) - .toList(); - var seasons = jsonRes["seasons"]; - final animeUrl = jsonRes["url"]; - List? episodesList = []; - for (var season in seasons) { - List> episodes = season["episodes"]; - int page = 1; - final res = (await client.get(Uri.parse( - "${source.baseUrl}/api/show/$animeUrl/${season["id"]}/$page"))) - .body; - - bool hasMoreResult = - (json.decode(res)["episodes"] as List>) - .isNotEmpty; - - while (hasMoreResult) { - final res = (await client.get(Uri.parse( - "${source.baseUrl}/api/show/$animeUrl/${season["id"]}/$page"))) - .body; - final epList = - json.decode(res)["episodes"] as List>; - page++; - episodes.addAll(epList); - hasMoreResult = epList.isNotEmpty; - } - for (var episode in episodes) { - String name = episode["name"] ?? ""; - if (name.toLowerCase().contains("folge") || - name.toLowerCase().contains("episode")) { - name = ""; - } else { - name = ": $name"; - } - MChapter ep = MChapter(); - ep.name = "Staffel ${season["number"]} Folge ${episode["number"]}$name"; - ep.url = - "/api/episode/show/$animeUrl/season/${season["number"]}/episode/${episode["number"]}"; - episodesList.add(ep); - } - } - - anime.chapters = episodesList.reversed.toList(); - return anime; - } - - @override - Future> getVideoList(String url) async { - final res = (await client.get(Uri.parse("${source.baseUrl}$url"), - headers: getHeader(source.baseUrl))) - .body; - final jsonRes = json.decode(res)["streams"]; - List videos = []; - final hosterSelection = preferenceHosterSelection(source.id); - for (var stream in jsonRes) { - List a = []; - String quality = '${stream["hoster"]["name"]} - ${stream["lang"]}'; - String link = stream["link"]; - if ((link.contains("https://dood") || link.contains("https://d0")) && - hosterSelection.contains("doodstream")) { - a = await doodExtractor(link, quality); - } else if (link.contains("https://streamtape") && - hosterSelection.contains("streamtape")) { - a = await streamTapeExtractor(link, quality); - } else if (link.contains("https://voe.sx") && - hosterSelection.contains("voe")) { - a = await voeExtractor(link, quality); - } else if (link.contains("https://streamlare") && - hosterSelection.contains("streamlare")) { - a = await streamlareExtractor(link, quality, '', ''); - } - videos.addAll(a); - } - - return sortVideos(videos, source.id); - } - - MPages parseAnimeList(String res, bool hasNextPage) { - final datas = json.decode(res); - List animeList = []; - - for (var data in datas) { - MManga anime = MManga(); - anime.name = data["name"]; - anime.imageUrl = - "${source.baseUrl}/storage/" + (data["cover_portrait"] ?? ""); - anime.link = - getUrlWithoutDomain("${source.baseUrl}/api/show/${data['url']}"); - anime.description = data["description"]; - if (data["airing"] == 0) { - anime.status = MStatus.completed; - } else if (data["airing"] == 1) { - anime.status = MStatus.ongoing; - } - animeList.add(anime); - } - return MPages(animeList, hasNextPage); - } - - List sortVideos(List videos, int sourceId) { - String hoster = getPreferenceValue(sourceId, "preferred_hoster"); - String sub = getPreferenceValue(sourceId, "preferred_sub"); - videos.sort((MVideo a, MVideo b) { - int hosterMatchA = 0; - if (a.url.toLowerCase().contains(hoster.toLowerCase()) && - a.quality.toLowerCase().contains(sub.toLowerCase())) { - hosterMatchA = 1; - } - int hosterMatchB = 0; - if (b.url.toLowerCase().contains(hoster.toLowerCase()) && - b.quality.toLowerCase().contains(sub.toLowerCase())) { - hosterMatchB = 1; - } - return hosterMatchB - hosterMatchA; - }); - return videos; - } - - List preferenceHosterSelection(int sourceId) { - return getPreferenceValue(sourceId, "hoster_selectionn"); - } - - @override - List getSourcePreferences() { - return [ - ListPreference( - key: "preferred_hoster", - title: "Standard-Hoster", - summary: "", - valueIndex: 0, - entries: [ - "Streamtape", - "Doodstream", - "Voe", - "Streamlare" - ], - entryValues: [ - "https://streamtape.com", - "https://dood", - "https://voe.sx", - "https://streamlare.com" - ]), - ListPreference( - key: "preferred_sub", - title: "Standardmäßig Sub oder Dub?", - summary: "", - valueIndex: 0, - entries: ["Sub", "Dub"], - entryValues: ["Sub", "Dub"]), - MultiSelectListPreference( - key: "hoster_selectionn", - title: "Hoster auswählen", - summary: "", - entries: ["Streamtape", "Doodstream", "Voe", "Streamlare"], - entryValues: ["streamtape", "doodstream", "voe", "streamlare"], - values: ["streamtape", "doodstream", "voe", "streamlare"]), - ]; - } -} - -Map getHeader(String url) { - return {'Referer': url}; -} - -AniFlix main(MSource source) { - return AniFlix(source: source); -} diff --git a/dart/anime/src/de/aniflix/icon.png b/dart/anime/src/de/aniflix/icon.png deleted file mode 100644 index cd181272..00000000 Binary files a/dart/anime/src/de/aniflix/icon.png and /dev/null differ diff --git a/dart/anime/src/de/aniflix/source.dart b/dart/anime/src/de/aniflix/source.dart deleted file mode 100644 index 2702e820..00000000 --- a/dart/anime/src/de/aniflix/source.dart +++ /dev/null @@ -1,16 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get aniflix => _aniflix; -const _aniflixVersion = "0.0.3"; -const _aniflixCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/de/aniflix/aniflix.dart"; -Source _aniflix = Source( - name: "Aniflix", - baseUrl: "https://aniflix.cc", - lang: "de", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/de/aniflix/icon.png", - sourceCodeUrl: _aniflixCodeUrl, - version: _aniflixVersion, - isManga: false); diff --git a/dart/anime/src/de/animetoast/animetoast.dart b/dart/anime/src/de/animetoast/animetoast.dart deleted file mode 100644 index 0be52f54..00000000 --- a/dart/anime/src/de/animetoast/animetoast.dart +++ /dev/null @@ -1,234 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; - -class AnimeToast extends MProvider { - AnimeToast({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - bool get supportsLatest => false; - - @override - String get baseUrl => source.baseUrl; - - @override - Future getPopular(int page) async { - final res = (await client.get(Uri.parse(baseUrl))).body; - final document = parseHtml(res); - final elements = document.select("div.row div.col-md-4 div.video-item"); - List animeList = []; - for (var element in elements) { - MManga anime = MManga(); - anime.name = element.selectFirst("div.item-thumbnail a").attr("title"); - anime.link = getUrlWithoutDomain( - element.selectFirst("div.item-thumbnail a").attr("href")); - anime.imageUrl = - element.selectFirst("div.item-thumbnail a img").attr("src"); - animeList.add(anime); - } - return MPages(animeList, false); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final res = - (await client.get(Uri.parse("$baseUrl/page/$page/?s=$query"))).body; - final document = parseHtml(res); - final elements = document.select("div.item-thumbnail a[href]"); - List animeList = []; - for (var element in elements) { - MManga anime = MManga(); - anime.name = element.attr("title"); - anime.link = getUrlWithoutDomain(element.attr("href")); - anime.imageUrl = element.selectFirst("a img").attr("src"); - animeList.add(anime); - } - return MPages( - animeList, document.selectFirst("li.next a")?.attr("href") != null); - } - - @override - Future getDetail(String url) async { - MManga anime = MManga(); - final res = (await client.get(Uri.parse("$baseUrl$url"))).body; - final document = parseHtml(res); - anime.imageUrl = document.selectFirst(".item-content p img").attr("src"); - anime.genre = - (document.xpathFirst('//p[contains(text(),"Genre:")]/text()') ?? "") - .replaceAll("Genre:", "") - .split(","); - anime.description = document.selectFirst("div.item-content div + p").text; - final categoryTag = document.xpath('//*[@rel="category tag"]/text()'); - if (categoryTag.isNotEmpty) { - if (categoryTag.contains("Airing")) { - anime.status = MStatus.ongoing; - } else { - anime.status = MStatus.completed; - } - } - List? episodesList = []; - if (categoryTag.contains("Serie")) { - List elements = []; - if (document.selectFirst("#multi_link_tab0")?.attr("id") != null) { - elements = document.select("#multi_link_tab0"); - } else { - elements = document.select("#multi_link_tab1"); - } - for (var element in elements) { - final episodeElement = element.selectFirst("div.tab-pane a"); - final epT = episodeElement.text; - if (epT.contains(":") || epT.contains("-")) { - final url = episodeElement.attr("href"); - final document = parseHtml((await client.get(Uri.parse(url))).body); - final nUrl = document.selectFirst("#player-embed a").attr("href"); - final nDoc = parseHtml((await client.get(Uri.parse(nUrl))).body); - final nEpEl = nDoc.select("div.tab-pane a"); - for (var epElement in nEpEl) { - MChapter ep = MChapter(); - ep.name = epElement.text; - ep.url = getUrlWithoutDomain(epElement.attr("href")); - episodesList.add(ep); - } - } else { - final episodeElements = element.select("div.tab-pane a"); - for (var epElement in episodeElements) { - MChapter ep = MChapter(); - ep.name = epElement.text; - ep.url = getUrlWithoutDomain(epElement.attr("href")); - episodesList.add(ep); - } - } - } - } else { - MChapter ep = MChapter(); - ep.name = document.selectFirst("h1.light-title")?.text ?? "Film"; - ep.url = getUrlWithoutDomain( - document.selectFirst("link[rel=canonical]").attr("href")); - episodesList.add(ep); - } - anime.chapters = episodesList.reversed.toList(); - return anime; - } - - List preferenceHosterSelection() { - return getPreferenceValue(source.id, "hoster_selection"); - } - - @override - Future> getVideoList(String url) async { - final res = (await client.get(Uri.parse("$baseUrl$url"))).body; - final document = parseHtml(res); - final fEp = document.selectFirst("div.tab-pane"); - List videos = []; - List ep = []; - int epcu = 100; - - if (fEp.text.contains(":") || fEp.text.contains("-")) { - final tx = document.select("div.tab-pane"); - - for (var e in tx) { - final sUrl = e.selectFirst("a").attr("href"); - final doc = parseHtml((await client.get(Uri.parse(sUrl))).body); - final nUrl = doc.selectFirst("#player-embed a").attr("href"); - final nDoc = parseHtml((await client.get(Uri.parse(nUrl))).body); - epcu = int.tryParse(substringAfter( - document.selectFirst("div.tab-pane a.current-link")?.text ?? "", - "Ep.")) ?? - 100; - ep = nDoc.select("div.tab-pane a"); - } - } else { - epcu = int.tryParse(substringAfter( - document.selectFirst("div.tab-pane a.current-link")?.text ?? "", - "Ep.")) ?? - 100; - ep = document.select("div.tab-pane a"); - } - final hosterSelection = preferenceHosterSelection(); - for (var e in ep) { - if (int.tryParse(substringAfter(e.text, "Ep.")) == epcu) { - final epUrl = e.attr("href"); - final newdoc = parseHtml((await client.get(Uri.parse(epUrl))).body); - final elements = newdoc.select("#player-embed"); - for (var element in elements) { - final link = element.selectFirst("a").getHref ?? ""; - if (link.contains("https://voe.sx") && - hosterSelection.contains("voe")) { - videos.addAll(await voeExtractor(link, "Voe")); - } - } - for (var element in elements) { - List a = []; - final link = element.selectFirst("iframe").getSrc ?? ""; - if ((link.contains("https://dood") || - link.contains("https://ds2play") || - link.contains("https://d0")) && - hosterSelection.contains("dood")) { - a = await doodExtractor(link, "DoodStream"); - } else if (link.contains("filemoon") && - hosterSelection.contains("filemoon")) { - a = await filemoonExtractor(link, "", ""); - } else if (link.contains("mp4upload") && - hosterSelection.contains("mp4upload")) { - a = await mp4UploadExtractor(url, null, "", ""); - } - videos.addAll(a); - } - } - } - return sortVideos(videos); - } - - List sortVideos(List videos) { - String server = getPreferenceValue(source.id, "preferred_hoster"); - - videos.sort((MVideo a, MVideo b) { - int qualityMatchA = 0; - if (a.quality.toLowerCase().contains(server)) { - qualityMatchA = 1; - } - int qualityMatchB = 0; - if (b.quality.toLowerCase().contains(server)) { - qualityMatchB = 1; - } - if (qualityMatchA != qualityMatchB) { - return qualityMatchB - qualityMatchA; - } - - final regex = RegExp(r'(\d+)p'); - final matchA = regex.firstMatch(a.quality); - final matchB = regex.firstMatch(b.quality); - final int qualityNumA = int.tryParse(matchA?.group(1) ?? '0') ?? 0; - final int qualityNumB = int.tryParse(matchB?.group(1) ?? '0') ?? 0; - return qualityNumB - qualityNumA; - }); - - return videos; - } - - @override - List getSourcePreferences() { - return [ - ListPreference( - key: "preferred_hoster", - title: "Standard-Hoster", - summary: "", - valueIndex: 0, - entries: ["Voe", "DoodStream", "Filemoon", "Mp4upload"], - entryValues: ["voe", "doodStream", "filemoon", "mp4upload"]), - MultiSelectListPreference( - key: "hoster_selection", - title: "Hoster auswählen", - summary: "", - entries: ["Voe", "DoodStream", "Filemoon", "Mp4upload"], - entryValues: ["voe", "dood", "filemoon", "mp4upload"], - values: ["voe", "dood", "filemoon", "mp4upload"]), - ]; - } -} - -AnimeToast main(MSource source) { - return AnimeToast(source: source); -} diff --git a/dart/anime/src/de/animetoast/icon.png b/dart/anime/src/de/animetoast/icon.png deleted file mode 100644 index 172ddf3b..00000000 Binary files a/dart/anime/src/de/animetoast/icon.png and /dev/null differ diff --git a/dart/anime/src/de/animetoast/source.dart b/dart/anime/src/de/animetoast/source.dart deleted file mode 100644 index a8ef68fd..00000000 --- a/dart/anime/src/de/animetoast/source.dart +++ /dev/null @@ -1,16 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get animetoast => _animetoast; -const _animetoastVersion = "0.0.15"; -const _animetoastCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/de/animetoast/animetoast.dart"; -Source _animetoast = Source( - name: "AnimeToast", - baseUrl: "https://animetoast.cc", - lang: "de", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/de/animetoast/icon.png", - sourceCodeUrl: _animetoastCodeUrl, - version: _animetoastVersion, - isManga: false); diff --git a/dart/anime/src/en/animepahe/animepahe.dart b/dart/anime/src/en/animepahe/animepahe.dart deleted file mode 100644 index be0e5edb..00000000 --- a/dart/anime/src/en/animepahe/animepahe.dart +++ /dev/null @@ -1,317 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; -import 'dart:math'; - -class AnimePahe extends MProvider { - AnimePahe(this.source); - - final MSource source; - - final Client client = Client(source); - - @override - String get baseUrl => getPreferenceValue(source.id, "preferred_domain"); - - @override - Future getPopular(int page) async { - return await getLatestUpdates(page); - } - - @override - Future getLatestUpdates(int page) async { - final res = - (await client.get(Uri.parse("$baseUrl/api?m=airing&page=$page"))).body; - final jsonResult = json.decode(res); - final hasNextPage = jsonResult["current_page"] < jsonResult["last_page"]; - List animeList = []; - for (var item in jsonResult["data"]) { - MManga anime = MManga(); - anime.name = item["anime_title"]; - anime.imageUrl = item["snapshot"]; - anime.link = "/anime/?anime_id=${item["id"]}&name=${item["anime_title"]}"; - anime.artist = item["fansub"]; - animeList.add(anime); - } - return MPages(animeList, hasNextPage); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final res = - (await client.get(Uri.parse("$baseUrl/api?m=search&l=8&q=$query"))) - .body; - final jsonResult = json.decode(res); - List animeList = []; - for (var item in jsonResult["data"]) { - MManga anime = MManga(); - anime.name = item["title"]; - anime.imageUrl = item["poster"]; - anime.link = "/anime/?anime_id=${item["id"]}&name=${item["title"]}"; - animeList.add(anime); - } - return MPages(animeList, false); - } - - @override - Future getDetail(String url) async { - final statusList = [ - {"Currently Airing": 0, "Finished Airing": 1} - ]; - MManga anime = MManga(); - final id = substringBefore(substringAfterLast(url, "?anime_id="), "&name="); - final name = substringAfterLast(url, "&name="); - final session = await getSession(name, id); - final res = - (await client.get(Uri.parse("$baseUrl/anime/$session?anime_id=$id"))) - .body; - final document = parseHtml(res); - final status = - (document.xpathFirst('//div/p[contains(text(),"Status:")]/text()') ?? - "") - .replaceAll("Status:\n", "") - .trim(); - anime.status = parseStatus(status, statusList); - - anime.name = document.selectFirst("div.title-wrapper > h1 > span").text; - anime.author = - (document.xpathFirst('//div/p[contains(text(),"Studio:")]/text()') ?? - "") - .replaceAll("Studio:\n", "") - .trim(); - anime.imageUrl = document.selectFirst("div.anime-poster a").attr("href"); - anime.genre = - xpath(res, '//*[contains(@class,"anime-genre")]/ul/li/text()'); - final synonyms = - (document.xpathFirst('//div/p[contains(text(),"Synonyms:")]/text()') ?? - "") - .replaceAll("Synonyms:\n", "") - .trim(); - anime.description = document.selectFirst("div.anime-summary").text; - if (synonyms.isNotEmpty) { - anime.description += "\n\n$synonyms"; - } - final epUrl = "$baseUrl/api?m=release&id=$session&sort=episode_desc&page=1"; - final resEp = (await client.get(Uri.parse(epUrl))).body; - final episodes = await recursivePages(epUrl, resEp, session); - - anime.chapters = episodes; - return anime; - } - - Future> recursivePages( - String url, String res, String session) async { - final jsonResult = json.decode(res); - final page = jsonResult["current_page"]; - final hasNextPage = page < jsonResult["last_page"]; - List animeList = []; - for (var item in jsonResult["data"]) { - MChapter episode = MChapter(); - episode.name = "Episode ${item["episode"]}"; - episode.url = "/play/$session/${item["session"]}"; - episode.dateUpload = - parseDates([item["created_at"]], "yyyy-MM-dd HH:mm:ss", "en")[0]; - animeList.add(episode); - } - if (hasNextPage) { - final newUrl = "${substringBeforeLast(url, "&page=")}&page=${page + 1}"; - final newRes = (await client.get(Uri.parse(newUrl))).body; - animeList.addAll(await recursivePages(newUrl, newRes, session)); - } - return animeList; - } - - Future getSession(String title, String animeId) async { - final res = - (await client.get(Uri.parse("$baseUrl/api?m=search&q=$title"))).body; - return substringBefore( - substringAfter( - substringAfter(res, "\"id\":$animeId"), "\"session\":\""), - "\""); - } - - @override - Future> getVideoList(String url) async { - final res = (await client.get(Uri.parse("$baseUrl$url"))); - final document = parseHtml(res.body); - final downloadLinks = document.select("div#pickDownload > a"); - final buttons = document.select("div#resolutionMenu > button"); - List videos = []; - for (var i = 0; i < buttons.length; i++) { - final btn = buttons[i]; - final kwikLink = btn.attr("data-src"); - final quality = btn.text; - final paheWinLink = downloadLinks[i].attr("href"); - if (getPreferenceValue(source.id, "preffered_link_type")) { - final noRedirectClient = - Client(source, json.encode({"followRedirects": false})); - final kwikHeaders = - (await noRedirectClient.get(Uri.parse("${paheWinLink}/i"))).headers; - final kwikUrl = - "https://${substringAfterLast(getMapValue(json.encode(kwikHeaders), "location"), "https://")}"; - final reskwik = (await client - .get(Uri.parse(kwikUrl), headers: {"Referer": "https://kwik.cx/"})); - final matches = RegExp(r'\("(\S+)",\d+,"(\S+)",(\d+),(\d+)') - .firstMatch(reskwik.body); - final token = decrypt(matches!.group(1)!, matches.group(2)!, - matches.group(3)!, int.parse(matches.group(4)!)); - final url = RegExp(r'action="([^"]+)"').firstMatch(token)!.group(1)!; - final tok = RegExp(r'value="([^"]+)"').firstMatch(token)!.group(1)!; - var code = 419; - var tries = 0; - String location = ""; - - while (code != 302 && tries < 20) { - String cookie = - getMapValue(json.encode(res.request.headers), "cookie"); - cookie += - "; ${getMapValue(json.encode(reskwik.headers), "set-cookie").replaceAll("path=/;", "")}"; - final resNo = - await Client(source, json.encode({"followRedirects": false})) - .post(Uri.parse(url), headers: { - "referer": reskwik.request.url.toString(), - "cookie": cookie, - "user-agent": - getMapValue(json.encode(res.request.headers), "user-agent") - }, body: { - "_token": tok - }); - code = resNo.statusCode; - tries++; - location = getMapValue(json.encode(resNo.headers), "location"); - } - if (tries > 19) { - throw ("Failed to extract the stream uri from kwik."); - } - MVideo video = MVideo(); - video - ..url = location - ..originalUrl = location - ..quality = quality; - videos.add(video); - } else { - final ress = (await client.get(Uri.parse(kwikLink), - headers: {"Referer": "https://animepahe.com"})); - final script = substringAfterLast( - xpath(ress.body, - '//script[contains(text(),"eval(function")]/text()') - .first, - "eval(function("); - final videoUrl = substringBefore( - substringAfter(unpackJsAndCombine("eval(function($script"), - "const source=\\'"), - "\\';"); - MVideo video = MVideo(); - video - ..url = videoUrl - ..originalUrl = videoUrl - ..quality = quality - ..headers = {"referer": "https://kwik.cx"}; - videos.add(video); - } - } - return sortVideos(videos); - } - - String getString(String ctn, int sep) { - int b = 10; - String cm = - "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+/"; - final n = cm.substring(0, b); - double mx = 0; - for (var index = 0; index < ctn.length; index++) { - mx += (int.tryParse(ctn[ctn.length - index - 1], radix: 10) ?? 0.0) - .toInt() * - (pow(sep, index)); - } - var m = ''; - while (mx > 0) { - m = n[(mx % b).toInt()] + m; - mx = (mx - (mx % b)) / b; - } - return m.isNotEmpty ? m : '0'; - } - - String decrypt(String fS, String key, String v1, int v2) { - var html = ""; - var i = 0; - final ld = int.parse(v1); - while (i < fS.length) { - var s = ""; - while (fS[i] != key[v2]) { - s += fS[i]; - i++; - } - for (var index = 0; index < key.length; index++) { - s = s.replaceAll(key[index], index.toString()); - } - html += String.fromCharCode(int.parse(getString(s, v2)) - ld); - i++; - } - - return html; - } - - List sortVideos(List videos) { - String quality = getPreferenceValue(source.id, "preferred_quality"); - - videos.sort((MVideo a, MVideo b) { - int qualityMatchA = 0; - if (a.quality.contains(quality)) { - qualityMatchA = 1; - } - int qualityMatchB = 0; - if (b.quality.contains(quality)) { - qualityMatchB = 1; - } - if (qualityMatchA != qualityMatchB) { - return qualityMatchB - qualityMatchA; - } - - final regex = RegExp(r'(\d+)p'); - final matchA = regex.firstMatch(a.quality); - final matchB = regex.firstMatch(b.quality); - final int qualityNumA = int.tryParse(matchA?.group(1) ?? '0') ?? 0; - final int qualityNumB = int.tryParse(matchB?.group(1) ?? '0') ?? 0; - return qualityNumB - qualityNumA; - }); - - return videos; - } - - @override - List getSourcePreferences() { - return [ - ListPreference( - key: "preferred_domain", - title: "Preferred domain", - summary: "", - valueIndex: 1, - entries: [ - "animepahe.com", - "animepahe.ru", - "animepahe.org" - ], - entryValues: [ - "https://animepahe.com", - "https://animepahe.ru", - "https://animepahe.org" - ]), - SwitchPreferenceCompat( - key: "preffered_link_type", - title: "Use HLS links", - summary: "Enable this if you are having Cloudflare issues.", - value: false), - ListPreference( - key: "preferred_quality", - title: "Preferred Quality", - summary: "", - valueIndex: 0, - entries: ["1080p", "720p", "360p"], - entryValues: ["1080", "720", "360"]), - ]; - } -} - -AnimePahe main(MSource source) { - return AnimePahe(source); -} diff --git a/dart/anime/src/en/animepahe/icon.png b/dart/anime/src/en/animepahe/icon.png deleted file mode 100644 index 4c3b0098..00000000 Binary files a/dart/anime/src/en/animepahe/icon.png and /dev/null differ diff --git a/dart/anime/src/en/animepahe/source.dart b/dart/anime/src/en/animepahe/source.dart deleted file mode 100644 index 6c6669ad..00000000 --- a/dart/anime/src/en/animepahe/source.dart +++ /dev/null @@ -1,16 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get animepaheSource => _animepaheSource; -const _animepaheVersion = "0.0.35"; -const _animepaheSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/animepahe/animepahe.dart"; -Source _animepaheSource = Source( - name: "AnimePahe", - baseUrl: "https://www.animepahe.ru", - lang: "en", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/animepahe/icon.png", - sourceCodeUrl: _animepaheSourceCodeUrl, - version: _animepaheVersion, - isManga: false); diff --git a/dart/anime/src/en/aniwave/aniwave.dart b/dart/anime/src/en/aniwave/aniwave.dart deleted file mode 100644 index ebe4886b..00000000 --- a/dart/anime/src/en/aniwave/aniwave.dart +++ /dev/null @@ -1,688 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class Aniwave extends MProvider { - Aniwave({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - String get baseUrl => getPreferenceValue(source.id, "preferred_domain1"); - - @override - Future getPopular(int page) async { - final res = (await client - .get(Uri.parse("$baseUrl/filter?sort=trending&page=$page"))) - .body; - return parseAnimeList(res); - } - - @override - Future getLatestUpdates(int page) async { - final res = (await client - .get(Uri.parse("$baseUrl/filter?sort=recently_updated&page=$page"))) - .body; - return parseAnimeList(res); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final filters = filterList.filters; - String url = "$baseUrl/filter?keyword=$query"; - - for (var filter in filters) { - if (filter.type == "OrderFilter") { - final order = filter.values[filter.state].value; - url += "${ll(url)}sort=$order"; - } else if (filter.type == "GenreFilter") { - final genre = (filter.state as List).where((e) => e.state).toList(); - if (genre.isNotEmpty) { - for (var st in genre) { - url += "${ll(url)}genre[]=${st.value}"; - } - } - } else if (filter.type == "CountryFilter") { - final country = (filter.state as List).where((e) => e.state).toList(); - if (country.isNotEmpty) { - for (var st in country) { - url += "${ll(url)}country[]=${st.value}"; - } - } - } else if (filter.type == "SeasonFilter") { - final season = (filter.state as List).where((e) => e.state).toList(); - if (season.isNotEmpty) { - for (var st in season) { - url += "${ll(url)}season[]=${st.value}"; - } - } - } else if (filter.type == "YearFilter") { - final year = (filter.state as List).where((e) => e.state).toList(); - if (year.isNotEmpty) { - for (var st in year) { - url += "${ll(url)}year[]=${st.value}"; - } - } - } else if (filter.type == "TypeFilter") { - final type = (filter.state as List).where((e) => e.state).toList(); - if (type.isNotEmpty) { - for (var st in type) { - url += "${ll(url)}type[]=${st.value}"; - } - } - } else if (filter.type == "StatusFilter") { - final status = (filter.state as List).where((e) => e.state).toList(); - if (status.isNotEmpty) { - for (var st in status) { - url += "${ll(url)}status[]=${st.value}"; - } - } - } else if (filter.type == "LanguageFilter") { - final language = (filter.state as List).where((e) => e.state).toList(); - if (language.isNotEmpty) { - for (var st in language) { - url += "${ll(url)}language[]=${st.value}"; - } - } - } else if (filter.type == "RatingFilter") { - final rating = (filter.state as List).where((e) => e.state).toList(); - if (rating.isNotEmpty) { - for (var st in rating) { - url += "${ll(url)}rating[]=${st.value}"; - } - } - } - } - - final res = (await client.get(Uri.parse("$url&page=$page"))).body; - return parseAnimeList(res); - } - - @override - Future getDetail(String url) async { - final statusList = [ - {"Releasing": 0, "Completed": 1} - ]; - final res = (await client.get(Uri.parse("$baseUrl$url"))).body; - MManga anime = MManga(); - final status = xpath(res, '//div[contains(text(),"Status")]/span/text()'); - if (status.isNotEmpty) { - anime.status = parseStatus(status.first, statusList); - } - final description = xpath(res, - '//*[contains(@class,"synopsis")]/div[@class="shorting"]/div[@class="content"]/text()'); - if (description.isNotEmpty) { - anime.description = description.first; - } - final author = xpath(res, '//div[contains(text(),"Studio")]/span/text()'); - if (author.isNotEmpty) { - anime.author = author.first; - } - - anime.genre = xpath(res, '//div[contains(text(),"Genre")]/span/a/text()'); - final id = parseHtml(res).selectFirst("div[data-id]").attr("data-id"); - final encrypt = vrfEncrypt(id); - final vrf = "vrf=${Uri.encodeComponent(encrypt)}"; - - final resEp = - (await client.get(Uri.parse("$baseUrl/ajax/episode/list/$id?$vrf"))) - .body; - - final html = json.decode(resEp)["result"]; - List? episodesList = []; - - final epsHtmls = parseHtml(html).select("div.episodes ul > li"); - - for (var epH in epsHtmls) { - final epHtml = epH.outerHtml; - final title = xpath(epHtml, '//li/@title').isNotEmpty - ? xpath(epHtml, '//li/@title').first - : ""; - final ids = xpath(epHtml, '//a/@data-ids').first; - final sub = xpath(epHtml, '//a/@data-sub').first; - final dub = xpath(epHtml, '//a/@data-dub').first; - final softsub = title.toLowerCase().contains("softsub") ? "1" : ""; - final fillerEp = title.toLowerCase().contains("filler") ? "1" : ""; - final epNum = xpath(epHtml, '//a/@data-num').first; - String scanlator = ""; - if (sub == "1") { - scanlator += "Sub"; - } - if (softsub == "1") { - scanlator += ", Softsub"; - } - if (dub == "1") { - scanlator += ", Dub"; - } - if (fillerEp == "1") { - scanlator += ", • Filler Episode"; - } - MChapter episode = MChapter(); - episode.name = "Episode $epNum"; - episode.scanlator = scanlator; - episode.url = "$ids&epurl=$url/ep-$epNum"; - episodesList.add(episode); - } - - anime.chapters = episodesList.reversed.toList(); - return anime; - } - - @override - Future> getVideoList(String url) async { - final ids = substringBefore(url, "&"); - final encrypt = vrfEncrypt(ids); - final vrf = "vrf=${Uri.encodeComponent(encrypt)}"; - final res = - (await client.get(Uri.parse("$baseUrl/ajax/server/list/$ids?$vrf"))) - .body; - final html = json.decode(res)["result"]; - - final vidsHtmls = parseHtml(html).select("div.servers > div"); - - List videos = []; - for (var vidH in vidsHtmls) { - final vidHtml = vidH.outerHtml; - final type = xpath(vidHtml, '//div/@data-type').first; - final serversIds = xpath(vidHtml, '//li/@data-link-id'); - for (int i = 0; i < serversIds.length; i++) { - final serverId = serversIds[i]; - - final encrypt = vrfEncrypt(serverId); - final vrf = "vrf=${Uri.encodeComponent(encrypt)}"; - final res = - (await client.get(Uri.parse("$baseUrl/ajax/server/$serverId?$vrf"))) - .body; - final status = json.decode(res)["status"]; - if (status == 200) { - List a = []; - final url = vrfDecrypt(json.decode(res)["result"]["url"]); - final hosterSelection = preferenceHosterSelection(source.id); - final typeSelection = preferenceTypeSelection(source.id); - if (typeSelection.contains(type.toLowerCase())) { - if (url.contains("vidplay") || url.contains("mcloud")) { - final hosterName = - url.contains("vidplay") ? "VidPlay" : "MyCloud"; - if (hosterSelection.contains(hosterName.toLowerCase())) { - a = await vidsrcExtractor(url, hosterName, type); - } - } else if (url.contains("mp4upload") && - hosterSelection.contains("mp4upload")) { - a = await mp4UploadExtractor(url, null, "", type); - } else if (url.contains("streamtape") && - hosterSelection.contains("streamtape")) { - a = await streamTapeExtractor(url, "StreamTape - $type"); - } else if (url.contains("filemoon") && - hosterSelection.contains("filemoon")) { - a = await filemoonExtractor(url, "", type); - } - videos.addAll(a); - } - } - } - } - - return sortVideos(videos, source.id); - } - - MPages parseAnimeList(String res) { - List animeList = []; - final urls = xpath(res, '//div[@class="item "]/div/div/div/a/@href'); - final names = xpath(res, '//div[@class="item "]/div/div/div/a/text()'); - final images = xpath(res, '//div[@class="item "]/div/div/a/img/@src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - - return MPages(animeList, true); - } - - List rc4Encrypt(String key, List message) { - List _key = utf8.encode(key); - int _i = 0, _j = 0; - List _box = List.generate(256, (i) => i); - - int x = 0; - for (int i = 0; i < 256; i++) { - x = (x + _box[i] + _key[i % _key.length]) % 256; - var tmp = _box[i]; - _box[i] = _box[x]; - _box[x] = tmp; - } - - List out = []; - for (var char in message) { - _i = (_i + 1) % 256; - _j = (_j + _box[_i]) % 256; - - var tmp = _box[_i]; - _box[_i] = _box[_j]; - _box[_j] = tmp; - - final c = char ^ (_box[(_box[_i] + _box[_j]) % 256]); - out.add(c); - } - - return out; - } - - String vrfEncrypt(String input) { - final rc4 = rc4Encrypt("ysJhV6U27FVIjjuk", input.codeUnits); - final vrf = base64Url.encode(rc4); - final vrf1 = base64.encode(vrf.codeUnits); - List vrf2 = vrfShift(vrf1.codeUnits); - final vrf3 = base64.encode(vrf2); - return utf8.decode(rot13(vrf3.codeUnits)); - } - - String vrfDecrypt(String input) { - final decode = base64Url.decode(input); - final rc4 = rc4Encrypt("hlPeNwkncH0fq9so", decode); - return Uri.decodeComponent(utf8.decode(rc4)); - } - - List vrfShift(List vrf) { - var shifts = [-3, 3, -4, 2, -2, 5, 4, 5]; - for (var i = 0; i < vrf.length; i++) { - var shift = shifts[i % 8]; - vrf[i] = (vrf[i] + shift) & 0xFF; - } - return vrf; - } - - List rot13(List vrf) { - for (var i = 0; i < vrf.length; i++) { - var byte = vrf[i]; - if (byte >= 'A'.codeUnitAt(0) && byte <= 'Z'.codeUnitAt(0)) { - vrf[i] = (byte - 'A'.codeUnitAt(0) + 13) % 26 + 'A'.codeUnitAt(0); - } else if (byte >= 'a'.codeUnitAt(0) && byte <= 'z'.codeUnitAt(0)) { - vrf[i] = (byte - 'a'.codeUnitAt(0) + 13) % 26 + 'a'.codeUnitAt(0); - } - } - return vrf; - } - - Future> vidsrcExtractor( - String url, String name, String type) async { - List keys = json.decode((await client.get(Uri.parse( - "https://raw.githubusercontent.com/KillerDogeEmpire/vidplay-keys/keys/keys.json"))) - .body); - List videoList = []; - final host = Uri.parse(url).host; - final apiUrl = await getApiUrl(url, keys); - - final res = await client.get(Uri.parse(apiUrl), headers: { - "Host": host, - "Referer": Uri.decodeComponent(url), - "X-Requested-With": "XMLHttpRequest" - }); - final result = json.decode(res.body)['result']; - - if (result != 404) { - String masterUrl = - ((result['sources'] as List>).first)['file']; - final tracks = (result['tracks'] as List) - .where((e) => e['kind'] == 'captions' ? true : false) - .toList(); - List subtitles = []; - - for (var sub in tracks) { - try { - MTrack subtitle = MTrack(); - subtitle - ..label = sub["label"] - ..file = sub["file"]; - subtitles.add(subtitle); - } catch (_) {} - } - - final masterPlaylistRes = (await client.get(Uri.parse(masterUrl))).body; - - for (var it in substringAfter(masterPlaylistRes, "#EXT-X-STREAM-INF:") - .split("#EXT-X-STREAM-INF:")) { - final quality = - "${substringBefore(substringBefore(substringAfter(substringAfter(it, "RESOLUTION="), "x"), ","), "\n")}p"; - - String videoUrl = substringBefore(substringAfter(it, "\n"), "\n"); - - if (!videoUrl.startsWith("http")) { - videoUrl = - "${masterUrl.split("/").sublist(0, masterUrl.split("/").length - 1).join("/")}/$videoUrl"; - } - - MVideo video = MVideo(); - video - ..url = videoUrl - ..originalUrl = videoUrl - ..quality = "$name - $type - $quality" - ..headers = {"Referer": "https://$host/"} - ..subtitles = subtitles; - videoList.add(video); - } - } - - return videoList; - } - - Future getApiUrl(String url, List keyList) async { - final host = Uri.parse(url).host; - final paramsToString = Uri.parse(url) - .queryParameters - .entries - .map((e) => "${e.key}=${e.value}") - .join("&"); - var vidId = substringBefore(substringAfterLast(url, "/"), "?"); - var encodedID = encodeID(vidId, keyList); - final apiSlug = await callFromFuToken(host, encodedID); - String apiUrlString = ""; - apiUrlString += "https://$host/$apiSlug"; - if (paramsToString.isNotEmpty) { - apiUrlString += "?$paramsToString"; - } - - return apiUrlString; - } - - String encodeID(String vidId, List keyList) { - var rc4Key1 = keyList[0]; - var rc4Key2 = keyList[1]; - final rc4 = rc4Encrypt(rc4Key1, vidId.codeUnits); - final rc41 = rc4Encrypt(rc4Key2, rc4); - return base64.encode(rc41).replaceAll("/", "_").trim(); - } - - Future callFromFuToken(String host, String data) async { - final fuTokenScript = - (await client.get(Uri.parse("https://$host/futoken"))).body; - - String js = ""; - js += "(function"; - js += substringBefore( - substringAfter(substringAfter(fuTokenScript, "window"), "function") - .replaceAll("jQuery.ajax(", ""), - "+location.search"); - js += "}(\"$data\"))"; - final jsRes = await evalJs(js); - if (jsRes == "error") return ""; - return jsRes; - } - - @override - List getFilterList() { - return [ - SelectFilter("OrderFilter", "Sort order", 0, [ - SelectFilterOption("Most relevance", "most_relevance"), - SelectFilterOption("Recently updated", "recently_updated"), - SelectFilterOption("Recently added", "recently_added"), - SelectFilterOption("Release date", "release_date"), - SelectFilterOption("Trending", "trending"), - SelectFilterOption("Name A-Z", "title_az"), - SelectFilterOption("Scores", "scores"), - SelectFilterOption("MAL scores", "mal_scores"), - SelectFilterOption("Most watched", "most_watched"), - SelectFilterOption("Most favourited", "most_favourited"), - SelectFilterOption("Number of episodes", "number_of_episodes"), - ]), - SeparatorFilter(), - GroupFilter("GenreFilter", "Genre", [ - CheckBoxFilter("Action", "1"), - CheckBoxFilter("Adventure", "2"), - CheckBoxFilter("Avant Garde", "2262888"), - CheckBoxFilter("Boys Love", "2262603"), - CheckBoxFilter("Comedy", "4"), - CheckBoxFilter("Demons", "4424081"), - CheckBoxFilter("Drama", "7"), - CheckBoxFilter("Ecchi", "8"), - CheckBoxFilter("Fantasy", "9"), - CheckBoxFilter("Girls Love", "2263743"), - CheckBoxFilter("Gourmet", "2263289"), - CheckBoxFilter("Harem", "11"), - CheckBoxFilter("Horror", "14"), - CheckBoxFilter("Isekai", "3457284"), - CheckBoxFilter("Iyashikei", "4398552"), - CheckBoxFilter("Josei", "15"), - CheckBoxFilter("Kids", "16"), - CheckBoxFilter("Magic", "4424082"), - CheckBoxFilter("Mahou Shoujo", "3457321"), - CheckBoxFilter("Martial Arts", "18"), - CheckBoxFilter("Mecha", "19"), - CheckBoxFilter("Military", "20"), - CheckBoxFilter("Music", "21"), - CheckBoxFilter("Mystery", "22"), - CheckBoxFilter("Parody", "23"), - CheckBoxFilter("Psychological", "25"), - CheckBoxFilter("Reverse Harem", "4398403"), - CheckBoxFilter("Romance", "26"), - CheckBoxFilter("School", "28"), - CheckBoxFilter("Sci-Fi", "29"), - CheckBoxFilter("Seinen", "30"), - CheckBoxFilter("Shoujo", "31"), - CheckBoxFilter("Shounen", "33"), - CheckBoxFilter("Slice of Life", "35"), - CheckBoxFilter("Space", "36"), - CheckBoxFilter("Sports", "37"), - CheckBoxFilter("Super Power", "38"), - CheckBoxFilter("Supernatural", "39"), - CheckBoxFilter("Suspense", "2262590"), - CheckBoxFilter("Thriller", "40"), - CheckBoxFilter("Vampire", "41") - ]), - GroupFilter("CountryFilter", "Country", [ - CheckBoxFilter("China", "120823"), - CheckBoxFilter("Japan", "120822") - ]), - GroupFilter("SeasonFilter", "Season", [ - CheckBoxFilter("Fall", "fall"), - CheckBoxFilter("Summer", "summer"), - CheckBoxFilter("Spring", "spring"), - CheckBoxFilter("Winter", "winter"), - CheckBoxFilter("Unknown", "unknown") - ]), - GroupFilter("YearFilter", "Year", [ - CheckBoxFilter("2023", "2023"), - CheckBoxFilter("2022", "2022"), - CheckBoxFilter("2021", "2021"), - CheckBoxFilter("2020", "2020"), - CheckBoxFilter("2019", "2019"), - CheckBoxFilter("2018", "2018"), - CheckBoxFilter("2017", "2017"), - CheckBoxFilter("2016", "2016"), - CheckBoxFilter("2015", "2015"), - CheckBoxFilter("2014", "2014"), - CheckBoxFilter("2013", "2013"), - CheckBoxFilter("2012", "2012"), - CheckBoxFilter("2011", "2011"), - CheckBoxFilter("2010", "2010"), - CheckBoxFilter("2009", "2009"), - CheckBoxFilter("2008", "2008"), - CheckBoxFilter("2007", "2007"), - CheckBoxFilter("2006", "2006"), - CheckBoxFilter("2005", "2005"), - CheckBoxFilter("2004", "2004"), - CheckBoxFilter("2003", "2003"), - CheckBoxFilter("2000s", "2000s"), - CheckBoxFilter("1990s", "1990s"), - CheckBoxFilter("1980s", "1980s"), - CheckBoxFilter("1970s", "1970s"), - CheckBoxFilter("1960s", "1960s"), - CheckBoxFilter("1950s", "1950s"), - CheckBoxFilter("1940s", "1940s"), - CheckBoxFilter("1930s", "1930s"), - CheckBoxFilter("1920s", "1920s"), - CheckBoxFilter("1910s", "1910s") - ]), - GroupFilter("TypeFilter", "Type", [ - CheckBoxFilter("Movie", "movie"), - CheckBoxFilter("TV", "tv"), - CheckBoxFilter("OVA", "ova"), - CheckBoxFilter("ONA", "ona"), - CheckBoxFilter("Special", "special"), - CheckBoxFilter("Music", "music") - ]), - GroupFilter("StatusFilter", "Status", [ - CheckBoxFilter("Not Yet Aired", "info"), - CheckBoxFilter("Releasing", "releasing"), - CheckBoxFilter("Completed", "completed") - ]), - GroupFilter("LanguageFilter", "Language", [ - CheckBoxFilter("Sub and Dub", "subdub"), - CheckBoxFilter("Sub", "sub"), - CheckBoxFilter("Dub", "dub") - ]), - GroupFilter("RatingFilter", "Rating", [ - CheckBoxFilter("G - All Ages", "g"), - CheckBoxFilter("PG - Children", "pg"), - CheckBoxFilter("PG 13 - Teens 13 and Older", "pg_13"), - CheckBoxFilter("R - 17+, Violence & Profanity", "r"), - CheckBoxFilter("R+ - Profanity & Mild Nudity", "r+"), - CheckBoxFilter("Rx - Hentai", "rx") - ]), - ]; - } - - @override - List getSourcePreferences() { - return [ - ListPreference( - key: "preferred_domain1", - title: "Preferred domain", - summary: "", - valueIndex: 0, - entries: [ - "aniwave.to", - "aniwave.ws", - "aniwave.li", - "aniwave.vc" - ], - entryValues: [ - "https://aniwave.to", - "https://aniwave.ws", - "https://aniwave.li", - "https://aniwave.vc" - ]), - ListPreference( - key: "preferred_quality", - title: "Preferred Quality", - summary: "", - valueIndex: 0, - entries: ["1080p", "720p", "480p", "360p"], - entryValues: ["1080", "720", "480", "360"]), - ListPreference( - key: "preferred_language", - title: "Preferred Type", - summary: "", - valueIndex: 0, - entries: ["Sub", "Softsub", "Dub"], - entryValues: ["Sub", "Softsub", "Dub"]), - ListPreference( - key: "preferred_server", - title: "Preferred server", - summary: "", - valueIndex: 0, - entries: [ - "VidPlay", - "MyCloud", - "Filemoon", - "StreamTape", - "Mp4Upload" - ], - entryValues: [ - "vidplay", - "mycloud", - "filemoon", - "streamtape", - "mp4upload" - ]), - MultiSelectListPreference( - key: "hoster_selection", - title: "Enable/Disable Hosts", - summary: "", - entries: [ - "VidPlay", - "MyCloud", - "Filemoon", - "StreamTape", - "Mp4Upload" - ], - entryValues: [ - "vidplay", - "mycloud", - "filemoon", - "streamtape", - "mp4upload" - ], - values: [ - "vidplay", - "mycloud", - "filemoon", - "streamtape", - "mp4upload" - ]), - MultiSelectListPreference( - key: "type_selection", - title: "Enable/Disable Type", - summary: "", - entries: ["Sub", "Softsub", "Dub"], - entryValues: ["sub", "softsub", "dub"], - values: ["sub", "softsub", "dub"]), - ]; - } - - List preferenceHosterSelection(int sourceId) { - return getPreferenceValue(sourceId, "hoster_selection"); - } - - List preferenceTypeSelection(int sourceId) { - return getPreferenceValue(sourceId, "type_selection"); - } - - List sortVideos(List videos, int sourceId) { - String quality = getPreferenceValue(sourceId, "preferred_quality"); - String server = getPreferenceValue(sourceId, "preferred_server"); - String lang = getPreferenceValue(sourceId, "preferred_language"); - videos.sort((MVideo a, MVideo b) { - int qualityMatchA = 0; - - if (a.quality.contains(quality) && - a.quality.toLowerCase().contains(lang.toLowerCase()) && - a.quality.toLowerCase().contains(server.toLowerCase())) { - qualityMatchA = 1; - } - int qualityMatchB = 0; - if (b.quality.contains(quality) && - b.quality.toLowerCase().contains(lang.toLowerCase()) && - b.quality.toLowerCase().contains(server.toLowerCase())) { - qualityMatchB = 1; - } - if (qualityMatchA != qualityMatchB) { - return qualityMatchB - qualityMatchA; - } - - final regex = RegExp(r'(\d+)p'); - final matchA = regex.firstMatch(a.quality); - final matchB = regex.firstMatch(b.quality); - final int qualityNumA = int.tryParse(matchA?.group(1) ?? '0') ?? 0; - final int qualityNumB = int.tryParse(matchB?.group(1) ?? '0') ?? 0; - return qualityNumB - qualityNumA; - }); - - return videos; - } - - String ll(String url) { - if (url.contains("?")) { - return "&"; - } - return "?"; - } -} - -Aniwave main(MSource source) { - return Aniwave(source: source); -} diff --git a/dart/anime/src/en/aniwave/icon.png b/dart/anime/src/en/aniwave/icon.png deleted file mode 100644 index 516f974e..00000000 Binary files a/dart/anime/src/en/aniwave/icon.png and /dev/null differ diff --git a/dart/anime/src/en/aniwave/source.dart b/dart/anime/src/en/aniwave/source.dart deleted file mode 100644 index b8ed096a..00000000 --- a/dart/anime/src/en/aniwave/source.dart +++ /dev/null @@ -1,16 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get aniwave => _aniwave; -const _aniwaveVersion = "0.0.65"; -const _aniwaveCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/aniwave/aniwave.dart"; -Source _aniwave = Source( - name: "Aniwave", - baseUrl: "https://aniwave.to", - lang: "en", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/aniwave/icon.png", - sourceCodeUrl: _aniwaveCodeUrl, - version: _aniwaveVersion, - isManga: false); diff --git a/dart/anime/src/en/dramacool/dramacool.dart b/dart/anime/src/en/dramacool/dramacool.dart deleted file mode 100644 index 2bf01042..00000000 --- a/dart/anime/src/en/dramacool/dramacool.dart +++ /dev/null @@ -1,210 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class DramaCool extends MProvider { - DramaCool({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - String get baseUrl => getPreferenceValue(source.id, "overrideBaseUrl"); - - @override - Future getPopular(int page) async { - final res = - (await client.get(Uri.parse("$baseUrl/most-popular-drama?page=$page"))) - .body; - final document = parseHtml(res); - return animeFromElement(document.select("ul.list-episode-item li a"), - document.selectFirst("li.next a")?.attr("href") != null); - } - - @override - Future getLatestUpdates(int page) async { - final res = - (await client.get(Uri.parse("$baseUrl/recently-added?page=$page"))) - .body; - final document = parseHtml(res); - return animeFromElement(document.select("ul.switch-block a"), - document.selectFirst("li.next a")?.attr("href") != null); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final res = (await client - .get(Uri.parse("$baseUrl/search?keyword=$query&page=$page"))) - .body; - final document = parseHtml(res); - return animeFromElement(document.select("ul.list-episode-item li a"), - document.selectFirst("li.next a")?.attr("href") != null); - } - - @override - Future getDetail(String url) async { - final statusList = [ - {"Ongoing": 0, "Completed": 1} - ]; - url = getUrlWithoutDomain(url); - if (url.contains("-episode-") && url.endsWith(".html")) { - final res = (await client.get(Uri.parse("$baseUrl$url"))).body; - url = parseHtml(res).selectFirst("div.category a").attr("href"); - } - url = getUrlWithoutDomain(url); - - final res = (await client.get(Uri.parse("$baseUrl$url"))).body; - final document = parseHtml(res); - MManga anime = MManga(); - anime.description = document - .selectFirst("div.info") - .select("p") - .map((MElement e) { - if (!e.outerHtml.contains(" episodesList = []; - final episodeListElements = document.select("ul.all-episode li a"); - - for (var element in episodeListElements) { - var epNum = - substringAfterLast(element.selectFirst("h3").text, "Episode "); - var type = element.selectFirst("span.type")?.text ?? "RAW"; - var date = element.selectFirst("span.time")?.text ?? ""; - MChapter ep = MChapter(); - ep.name = "$type: Episode $epNum".trim(); - ep.url = element.getHref; - if (date.isNotEmpty) - ep.dateUpload = parseDates([element.selectFirst("span.time")?.text], - "yyyy-MM-dd HH:mm:ss", "en") - .first; - episodesList.add(ep); - } - - anime.chapters = episodesList; - return anime; - } - - @override - Future> getVideoList(String url) async { - url = getUrlWithoutDomain(url); - - final res = (await client.get(Uri.parse("$baseUrl$url"))).body; - final document = parseHtml(res); - String iframeUrl = document.selectFirst("iframe")?.getSrc ?? ""; - if (iframeUrl.isEmpty) return []; - if (iframeUrl.startsWith("//")) { - iframeUrl = "https:$iframeUrl"; - } - var iframeDoc = parseHtml((await client.get(Uri.parse(iframeUrl))).body); - final serverElements = iframeDoc.select("ul.list-server-items li"); - List videos = []; - for (var serverElement in serverElements) { - var url = serverElement.attr("data-video"); - List a = []; - if (url.contains("dood")) { - a = await doodExtractor(url, "DoodStream"); - } else if (url.contains("dwish")) { - a = await streamWishExtractor(url, "StreamWish"); - } else if (url.contains("streamtape")) { - a = await streamTapeExtractor(url, "StreamTape"); - } - videos.addAll(a); - } - return sortVideos(videos, source.id); - } - - @override - List getSourcePreferences() { - return [ - EditTextPreference( - key: "overrideBaseUrl", - title: "Override BaseUrl", - summary: "", - value: "https://dramacool.pa", - dialogTitle: "Override BaseUrl", - dialogMessage: "", - text: "https://dramacool.pa"), - ListPreference( - key: "preferred_quality", - title: "Preferred quality", - summary: "", - valueIndex: 0, - entries: [ - "1080p", - "720p", - "480p", - "360p", - "Doodstream", - "StreamTape" - ], - entryValues: [ - "1080", - "720", - "480", - "360", - "Doodstream", - "StreamTape" - ]) - ]; - } - - MPages animeFromElement(List elements, bool hasNextPage) { - List animeList = []; - for (var element in elements) { - MManga anime = MManga(); - anime.name = element.selectFirst("h3")?.text ?? "Serie"; - anime.imageUrl = (element.selectFirst("img")?.attr("data-original") ?? "") - .replaceAll(" ", "%20") ?? - ""; - anime.link = element.getHref; - animeList.add(anime); - } - return MPages(animeList, hasNextPage); - } - - List sortVideos(List videos, int sourceId) { - String quality = getPreferenceValue(sourceId, "preferred_quality"); - - videos.sort((MVideo a, MVideo b) { - int qualityMatchA = 0; - if (a.quality.contains(quality)) { - qualityMatchA = 1; - } - int qualityMatchB = 0; - if (b.quality.contains(quality)) { - qualityMatchB = 1; - } - if (qualityMatchA != qualityMatchB) { - return qualityMatchB - qualityMatchA; - } - - final regex = RegExp(r'(\d+)p'); - final matchA = regex.firstMatch(a.quality); - final matchB = regex.firstMatch(b.quality); - final int qualityNumA = int.tryParse(matchA?.group(1) ?? '0') ?? 0; - final int qualityNumB = int.tryParse(matchB?.group(1) ?? '0') ?? 0; - return qualityNumB - qualityNumA; - }); - - return videos; - } -} - -DramaCool main(MSource source) { - return DramaCool(source: source); -} diff --git a/dart/anime/src/en/dramacool/icon.png b/dart/anime/src/en/dramacool/icon.png deleted file mode 100644 index ceb49c5d..00000000 Binary files a/dart/anime/src/en/dramacool/icon.png and /dev/null differ diff --git a/dart/anime/src/en/dramacool/source.dart b/dart/anime/src/en/dramacool/source.dart deleted file mode 100644 index f70146c6..00000000 --- a/dart/anime/src/en/dramacool/source.dart +++ /dev/null @@ -1,16 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get dramacoolSource => _dramacoolSource; -const _dramacoolVersion = "0.0.25"; -const _dramacoolSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/dramacool/dramacool.dart"; -Source _dramacoolSource = Source( - name: "DramaCool", - baseUrl: "https://dramacool.pa", - lang: "en", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/dramacool/icon.png", - sourceCodeUrl: _dramacoolSourceCodeUrl, - version: _dramacoolVersion, - isManga: false); diff --git a/dart/anime/src/en/gogoanime/gogoanime.dart b/dart/anime/src/en/gogoanime/gogoanime.dart deleted file mode 100644 index f8e80266..00000000 --- a/dart/anime/src/en/gogoanime/gogoanime.dart +++ /dev/null @@ -1,1137 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class GogoAnime extends MProvider { - GogoAnime({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - String get baseUrl => - getPreferenceValue(source.id, "override_baseurl_v${source.id}"); - - @override - Future getPopular(int page) async { - final res = - (await client.get(Uri.parse("$baseUrl/popular.html?page=$page"))).body; - - List animeList = []; - final urls = xpath(res, '//*[@class="img"]/a/@href'); - final names = xpath(res, '//*[@class="img"]/a/@title'); - final images = xpath(res, '//*[@class="img"]/a/img/@src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - - return MPages(animeList, true); - } - - @override - Future getLatestUpdates(int page) async { - final res = (await client.get(Uri.parse( - "https://ajax.gogo-load.com/ajax/page-recent-release-ongoing.html?page=$page&type=1"))) - .body; - - List animeList = []; - final urls = - xpath(res, '//*[@class="added_series_body popular"]/ul/li/a[1]/@href'); - final names = xpath( - res, '//*[//*[@class="added_series_body popular"]/ul/li/a[1]/@title'); - List images = []; - List imagess = xpath(res, - '//*[//*[@class="added_series_body popular"]/ul/li/a/div[@class="thumbnail-popular"]/@style'); - for (var url in imagess) { - images.add(url.replaceAll("background: url('", "").replaceAll("');", "")); - } - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - - return MPages(animeList, true); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final filters = filterList.filters; - String filterStr = ""; - String url = ""; - - String genre = ""; - String recent = ""; - String season = ""; - - for (var filter in filters) { - if (filter.type == "SortFilter") { - final sort = filter.values[filter.state].value; - filterStr += "&sort=$sort"; - } else if (filter.type == "GenreFilter") { - final genre = (filter.state as List).where((e) => e.state).toList(); - if (genre.isNotEmpty) { - for (var st in genre) { - filterStr += "&genre[]=${st.value}"; - } - } - } else if (filter.type == "CountryFilter") { - final country = (filter.state as List).where((e) => e.state).toList(); - if (country.isNotEmpty) { - for (var st in country) { - filterStr += "&country[]=${st.value}"; - } - } - } else if (filter.type == "SeasonFilter") { - final season = (filter.state as List).where((e) => e.state).toList(); - if (season.isNotEmpty) { - for (var st in season) { - filterStr += "&season[]=${st.value}"; - } - } - } else if (filter.type == "YearFilter") { - final year = (filter.state as List).where((e) => e.state).toList(); - if (year.isNotEmpty) { - for (var st in year) { - filterStr += "&year[]=${st.value}"; - } - } - } else if (filter.type == "TypeFilter") { - final type = (filter.state as List).where((e) => e.state).toList(); - if (type.isNotEmpty) { - for (var st in type) { - filterStr += "&type[]=${st.value}"; - } - } - } else if (filter.type == "StatusFilter") { - final status = (filter.state as List).where((e) => e.state).toList(); - if (status.isNotEmpty) { - for (var st in status) { - filterStr += "&status[]=${st.value}"; - } - } - } else if (filter.type == "LanguageFilter") { - final language = (filter.state as List).where((e) => e.state).toList(); - if (language.isNotEmpty) { - for (var st in language) { - filterStr += "&language[]=${st.value}"; - } - } - } - if (filter.type == "GenreIFilter") { - genre = filter.values[filter.state].value; - } else if (filter.type == "RecentFilter") { - recent = filter.values[filter.state].value; - } else if (filter.type == "SeasonIFilter") { - season = filter.values[filter.state].value; - } - } - if (genre.isNotEmpty) { - url = "$baseUrl/genre/$genre?page=$page"; - } else if (recent.isNotEmpty) { - url = - "https://ajax.gogo-load.com/ajax/page-recent-release.html?page=$page&type=$recent"; - } else if (season.isNotEmpty) { - url = "$baseUrl/$season?page=$page"; - } else { - url = "$baseUrl/filter.html?keyword=$query$filterStr&page=$page"; - } - - final res = (await client.get(Uri.parse(url))).body; - - List animeList = []; - final urls = xpath(res, '//*[@class="img"]/a/@href'); - final names = xpath(res, '//*[@class="img"]/a/@title'); - final images = xpath(res, '//*[@class="img"]/a/img/@src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - - return MPages(animeList, true); - } - - @override - Future getDetail(String url) async { - final statusList = [ - {"Ongoing": 0, "Completed": 1} - ]; - - final res = (await client.get(Uri.parse("$baseUrl$url"))).body; - MManga anime = MManga(); - final status = xpath( - res, '//*[@class="anime_info_body_bg"]/p[@class="type"][5]/text()') - .first - .replaceAll("Status: ", ""); - anime.description = xpath( - res, '//*[@class="anime_info_body_bg"]/p[@class="type"][2]/text()') - .first - .replaceAll("Plot Summary: ", ""); - anime.status = parseStatus(status, statusList); - anime.genre = xpath( - res, '//*[@class="anime_info_body_bg"]/p[@class="type"][3]/text()') - .first - .replaceAll("Genre: ", "") - .split(","); - - final id = xpath(res, '//*[@id="movie_id"]/@value').first; - final urlEp = - "https://ajax.gogocdn.net/ajax/load-list-episode?ep_start=0&ep_end=4000&id=$id"; - - final resEp = (await client.get(Uri.parse(urlEp))).body; - - final epUrls = xpath(resEp, '//*[@id="episode_related"]/li/a/@href'); - final names = xpath( - resEp, '//*[@id="episode_related"]/li/a/div[@class="name"]/text()'); - List episodes = []; - - for (var a in names) { - episodes.add("Episode ${substringAfterLast(a, ' ')}"); - } - List? episodesList = []; - for (var i = 0; i < episodes.length; i++) { - MChapter episode = MChapter(); - episode.name = episodes[i]; - episode.url = epUrls[i]; - episodesList.add(episode); - } - - anime.chapters = episodesList; - return anime; - } - - @override - Future> getVideoList(String url) async { - final res = (await client.get(Uri.parse("$baseUrl$url"))).body; - final serverUrls = - xpath(res, '//*[@class="anime_muti_link"]/ul/li/a/@data-video'); - final serverNames = - xpath(res, '//*[@class="anime_muti_link"]/ul/li/@class'); - List videos = []; - final hosterSelection = preferenceHosterSelection(source.id); - for (var i = 0; i < serverNames.length; i++) { - final name = serverNames[i]; - final url = serverUrls[i]; - List a = []; - if (hosterSelection.contains(name)) { - if (name.contains("anime")) { - a = await gogoCdnExtractor(url); - } else if (name.contains("vidcdn")) { - a = await gogoCdnExtractor(url); - } else if (name.contains("doodstream")) { - a = await doodExtractor(url); - } else if (name.contains("mp4upload")) { - a = await mp4UploadExtractor(url, null, "", ""); - } else if (name.contains("filelions")) { - a = await streamWishExtractor(url, "FileLions"); - } else if (name.contains("streamwish")) { - a = await streamWishExtractor(url, "StreamWish"); - } - videos.addAll(a); - } - } - - return sortVideos(videos, source.id); - } - - @override - List getFilterList() { - return [ - HeaderFilter("Advanced search"), - GroupFilter("GenreFilter", "Genre", [ - { - "type": "CheckBox", - "filter": {"name": "Action", "value": "action"} - }, - { - "type": "CheckBox", - "filter": {"name": "Adult Cast", "value": "adult-cast"} - }, - { - "type": "CheckBox", - "filter": {"name": "Adventure", "value": "adventure"} - }, - { - "type": "CheckBox", - "filter": {"name": "Anthropomorphic", "value": "anthropomorphic"} - }, - { - "type": "CheckBox", - "filter": {"name": "Avant Garde", "value": "avant-garde"} - }, - { - "type": "CheckBox", - "filter": {"name": "Boys Love", "value": "shounen-ai"} - }, - { - "type": "CheckBox", - "filter": {"name": "Cars", "value": "cars"} - }, - { - "type": "CheckBox", - "filter": {"name": "CGDCT", "value": "cgdct"} - }, - { - "type": "CheckBox", - "filter": {"name": "Childcare", "value": "childcare"} - }, - { - "type": "CheckBox", - "filter": {"name": "Comedy", "value": "comedy"} - }, - { - "type": "CheckBox", - "filter": {"name": "Comic", "value": "comic"} - }, - { - "type": "CheckBox", - "filter": {"name": "Crime", "value": "crime"} - }, - { - "type": "CheckBox", - "filter": {"name": "Crossdressing", "value": "crossdressing"} - }, - { - "type": "CheckBox", - "filter": {"name": "Delinquents", "value": "delinquents"} - }, - { - "type": "CheckBox", - "filter": {"name": "Dementia", "value": "dementia"} - }, - { - "type": "CheckBox", - "filter": {"name": "Demons", "value": "demons"} - }, - { - "type": "CheckBox", - "filter": {"name": "Detective", "value": "detective"} - }, - { - "type": "CheckBox", - "filter": {"name": "Drama", "value": "drama"} - }, - { - "type": "CheckBox", - "filter": {"name": "Dub", "value": "dub"} - }, - { - "type": "CheckBox", - "filter": {"name": "Ecchi", "value": "ecchi"} - }, - { - "type": "CheckBox", - "filter": {"name": "Erotica", "value": "erotica"} - }, - { - "type": "CheckBox", - "filter": {"name": "Family", "value": "family"} - }, - { - "type": "CheckBox", - "filter": {"name": "Fantasy", "value": "fantasy"} - }, - { - "type": "CheckBox", - "filter": {"name": "Gag Humor", "value": "gag-humor"} - }, - { - "type": "CheckBox", - "filter": {"name": "Game", "value": "game"} - }, - { - "type": "CheckBox", - "filter": {"name": "Gender Bender", "value": "gender-bender"} - }, - { - "type": "CheckBox", - "filter": {"name": "Gore", "value": "gore"} - }, - { - "type": "CheckBox", - "filter": {"name": "Gourmet", "value": "gourmet"} - }, - { - "type": "CheckBox", - "filter": {"name": "Harem", "value": "harem"} - }, - { - "type": "CheckBox", - "filter": {"name": "Hentai", "value": "hentai"} - }, - { - "type": "CheckBox", - "filter": {"name": "High Stakes Game", "value": "high-stakes-game"} - }, - { - "type": "CheckBox", - "filter": {"name": "Historical", "value": "historical"} - }, - { - "type": "CheckBox", - "filter": {"name": "Horror", "value": "horror"} - }, - { - "type": "CheckBox", - "filter": {"name": "Isekai", "value": "isekai"} - }, - { - "type": "CheckBox", - "filter": {"name": "Iyashikei", "value": "iyashikei"} - }, - { - "type": "CheckBox", - "filter": {"name": "Josei", "value": "josei"} - }, - { - "type": "CheckBox", - "filter": {"name": "Kids", "value": "kids"} - }, - { - "type": "CheckBox", - "filter": {"name": "Magic", "value": "magic"} - }, - { - "type": "CheckBox", - "filter": {"name": "Magical Sex Shift", "value": "magical-sex-shift"} - }, - { - "type": "CheckBox", - "filter": {"name": "Mahou Shoujo", "value": "mahou-shoujo"} - }, - { - "type": "CheckBox", - "filter": {"name": "Martial Arts", "value": "martial-arts"} - }, - { - "type": "CheckBox", - "filter": {"name": "Mecha", "value": "mecha"} - }, - { - "type": "CheckBox", - "filter": {"name": "Medical", "value": "medical"} - }, - { - "type": "CheckBox", - "filter": {"name": "Military", "value": "military"} - }, - { - "type": "CheckBox", - "filter": {"name": "Music", "value": "music"} - }, - { - "type": "CheckBox", - "filter": {"name": "Mystery", "value": "mystery"} - }, - { - "type": "CheckBox", - "filter": {"name": "Mythology", "value": "mythology"} - }, - { - "type": "CheckBox", - "filter": {"name": "Organized Crime", "value": "organized-crime"} - }, - { - "type": "CheckBox", - "filter": {"name": "Parody", "value": "parody"} - }, - { - "type": "CheckBox", - "filter": {"name": "Performing Arts", "value": "performing-arts"} - }, - { - "type": "CheckBox", - "filter": {"name": "Pets", "value": "pets"} - }, - { - "type": "CheckBox", - "filter": {"name": "Police", "value": "police"} - }, - { - "type": "CheckBox", - "filter": {"name": "Psychological", "value": "psychological"} - }, - { - "type": "CheckBox", - "filter": {"name": "Racing", "value": "racing"} - }, - { - "type": "CheckBox", - "filter": {"name": "Reincarnation", "value": "reincarnation"} - }, - { - "type": "CheckBox", - "filter": {"name": "Romance", "value": "romance"} - }, - { - "type": "CheckBox", - "filter": {"name": "Romantic Subtext", "value": "romantic-subtext"} - }, - { - "type": "CheckBox", - "filter": {"name": "Samurai", "value": "samurai"} - }, - { - "type": "CheckBox", - "filter": {"name": "School", "value": "school"} - }, - { - "type": "CheckBox", - "filter": {"name": "Sci-Fi", "value": "sci-fi"} - }, - { - "type": "CheckBox", - "filter": {"name": "Seinen", "value": "seinen"} - }, - { - "type": "CheckBox", - "filter": {"name": "Shoujo", "value": "shoujo"} - }, - { - "type": "CheckBox", - "filter": {"name": "Shoujo Ai", "value": "shoujo-ai"} - }, - { - "type": "CheckBox", - "filter": {"name": "Shounen", "value": "shounen"} - }, - { - "type": "CheckBox", - "filter": {"name": "Showbiz", "value": "showbiz"} - }, - { - "type": "CheckBox", - "filter": {"name": "Slice of Life", "value": "slice-of-life"} - }, - { - "type": "CheckBox", - "filter": {"name": "Space", "value": "space"} - }, - { - "type": "CheckBox", - "filter": {"name": "Sports", "value": "sports"} - }, - { - "type": "CheckBox", - "filter": {"name": "Strategy Game", "value": "strategy-game"} - }, - { - "type": "CheckBox", - "filter": {"name": "Super Power", "value": "super-power"} - }, - { - "type": "CheckBox", - "filter": {"name": "Supernatural", "value": "supernatural"} - }, - { - "type": "CheckBox", - "filter": {"name": "Survival", "value": "survival"} - }, - { - "type": "CheckBox", - "filter": {"name": "Suspense", "value": "suspense"} - }, - { - "type": "CheckBox", - "filter": {"name": "Team Sports", "value": "team-sports"} - }, - { - "type": "CheckBox", - "filter": {"name": "Thriller", "value": "thriller"} - }, - { - "type": "CheckBox", - "filter": {"name": "Time Travel", "value": "time-travel"} - }, - { - "type": "CheckBox", - "filter": {"name": "Vampire", "value": "vampire"} - }, - { - "type": "CheckBox", - "filter": {"name": "Visual Arts", "value": "visual-arts"} - }, - { - "type": "CheckBox", - "filter": {"name": "Work Life", "value": "work-life"} - }, - { - "type": "CheckBox", - "filter": {"name": "Workplace", "value": "workplace"} - }, - { - "type": "CheckBox", - "filter": {"name": "Yaoi", "value": "yaoi"} - }, - { - "type": "CheckBox", - "filter": {"name": "Yuri", "value": "yuri"} - } - ]), - GroupFilter("CountryFilter", "Country", - [CheckBoxFilter("China", "5"), CheckBoxFilter("Japan", "2")]), - GroupFilter("SeasonFilter", "Season", [ - CheckBoxFilter("Fall", "fall"), - CheckBoxFilter("Summer", "summer"), - CheckBoxFilter("Spring", "spring"), - CheckBoxFilter("Winter", "winter"), - ]), - GroupFilter("YearFilter", "Year", [ - CheckBoxFilter("2023", "2023"), - CheckBoxFilter("2022", "2022"), - CheckBoxFilter("2021", "2021"), - CheckBoxFilter("2020", "2020"), - CheckBoxFilter("2019", "2019"), - CheckBoxFilter("2018", "2018"), - CheckBoxFilter("2017", "2017"), - CheckBoxFilter("2016", "2016"), - CheckBoxFilter("2015", "2015"), - CheckBoxFilter("2014", "2014"), - CheckBoxFilter("2013", "2013"), - CheckBoxFilter("2012", "2012"), - CheckBoxFilter("2011", "2011"), - CheckBoxFilter("2010", "2010"), - CheckBoxFilter("2009", "2009"), - CheckBoxFilter("2008", "2008"), - CheckBoxFilter("2007", "2007"), - CheckBoxFilter("2006", "2006"), - CheckBoxFilter("2005", "2005"), - CheckBoxFilter("2004", "2004"), - CheckBoxFilter("2003", "2003"), - CheckBoxFilter("2002", "2002"), - CheckBoxFilter("2001", "2001"), - CheckBoxFilter("2000", "2000"), - CheckBoxFilter("1999", "1999"), - ]), - GroupFilter("LanguageFilter", "Language", [ - CheckBoxFilter("Sub & Dub", "subdub"), - CheckBoxFilter("Sub", "sub"), - CheckBoxFilter("Dub", "dub"), - ]), - GroupFilter("TypeFilter", "Type", [ - CheckBoxFilter("Movie", "3"), - CheckBoxFilter("TV", "1"), - CheckBoxFilter("OVA", "26"), - CheckBoxFilter("ONA", "30"), - CheckBoxFilter("Special", "2"), - CheckBoxFilter("Music", "32"), - ]), - GroupFilter("StatusFilter", "Status", [ - CheckBoxFilter("Not Yet Aired", "Upcoming"), - CheckBoxFilter("Ongoing", "Ongoing"), - CheckBoxFilter("Completed", "Completed") - ]), - SelectFilter("SortFilter", "Sort by", 0, [ - SelectFilterOption("Name A-Z", "title_az"), - SelectFilterOption("Recently updated", "recently_updated"), - SelectFilterOption("Recently added", "recently_added"), - SelectFilterOption("Release date", "release_date") - ]), - SeparatorFilter(), - HeaderFilter("Select sub-page"), - HeaderFilter("Note: Ignores search & other filters"), - SelectFilter("GenreIFilter", "Genre", 0, [ - { - "type": "SelectOption", - "filter": {"name": "", "value": ""} - }, - { - "type": "SelectOption", - "filter": {"name": "Action", "value": "action"} - }, - { - "type": "SelectOption", - "filter": {"name": "Adult Cast", "value": "adult-cast"} - }, - { - "type": "SelectOption", - "filter": {"name": "Adventure", "value": "adventure"} - }, - { - "type": "SelectOption", - "filter": {"name": "Anthropomorphic", "value": "anthropomorphic"} - }, - { - "type": "SelectOption", - "filter": {"name": "Avant Garde", "value": "avant-garde"} - }, - { - "type": "SelectOption", - "filter": {"name": "Boys Love", "value": "shounen-ai"} - }, - { - "type": "SelectOption", - "filter": {"name": "Cars", "value": "cars"} - }, - { - "type": "SelectOption", - "filter": {"name": "CGDCT", "value": "cgdct"} - }, - { - "type": "SelectOption", - "filter": {"name": "Childcare", "value": "childcare"} - }, - { - "type": "SelectOption", - "filter": {"name": "Comedy", "value": "comedy"} - }, - { - "type": "SelectOption", - "filter": {"name": "Comic", "value": "comic"} - }, - { - "type": "SelectOption", - "filter": {"name": "Crime", "value": "crime"} - }, - { - "type": "SelectOption", - "filter": {"name": "Crossdressing", "value": "crossdressing"} - }, - { - "type": "SelectOption", - "filter": {"name": "Delinquents", "value": "delinquents"} - }, - { - "type": "SelectOption", - "filter": {"name": "Dementia", "value": "dementia"} - }, - { - "type": "SelectOption", - "filter": {"name": "Demons", "value": "demons"} - }, - { - "type": "SelectOption", - "filter": {"name": "Detective", "value": "detective"} - }, - { - "type": "SelectOption", - "filter": {"name": "Drama", "value": "drama"} - }, - { - "type": "SelectOption", - "filter": {"name": "Dub", "value": "dub"} - }, - { - "type": "SelectOption", - "filter": {"name": "Ecchi", "value": "ecchi"} - }, - { - "type": "SelectOption", - "filter": {"name": "Erotica", "value": "erotica"} - }, - { - "type": "SelectOption", - "filter": {"name": "Family", "value": "family"} - }, - { - "type": "SelectOption", - "filter": {"name": "Fantasy", "value": "fantasy"} - }, - { - "type": "SelectOption", - "filter": {"name": "Gag Humor", "value": "gag-humor"} - }, - { - "type": "SelectOption", - "filter": {"name": "Game", "value": "game"} - }, - { - "type": "SelectOption", - "filter": {"name": "Gender Bender", "value": "gender-bender"} - }, - { - "type": "SelectOption", - "filter": {"name": "Gore", "value": "gore"} - }, - { - "type": "SelectOption", - "filter": {"name": "Gourmet", "value": "gourmet"} - }, - { - "type": "SelectOption", - "filter": {"name": "Harem", "value": "harem"} - }, - { - "type": "SelectOption", - "filter": {"name": "Hentai", "value": "hentai"} - }, - { - "type": "SelectOption", - "filter": {"name": "High Stakes Game", "value": "high-stakes-game"} - }, - { - "type": "SelectOption", - "filter": {"name": "Historical", "value": "historical"} - }, - { - "type": "SelectOption", - "filter": {"name": "Horror", "value": "horror"} - }, - { - "type": "SelectOption", - "filter": {"name": "Isekai", "value": "isekai"} - }, - { - "type": "SelectOption", - "filter": {"name": "Iyashikei", "value": "iyashikei"} - }, - { - "type": "SelectOption", - "filter": {"name": "Josei", "value": "josei"} - }, - { - "type": "SelectOption", - "filter": {"name": "Kids", "value": "kids"} - }, - { - "type": "SelectOption", - "filter": {"name": "Magic", "value": "magic"} - }, - { - "type": "SelectOption", - "filter": {"name": "Magical Sex Shift", "value": "magical-sex-shift"} - }, - { - "type": "SelectOption", - "filter": {"name": "Mahou Shoujo", "value": "mahou-shoujo"} - }, - { - "type": "SelectOption", - "filter": {"name": "Martial Arts", "value": "martial-arts"} - }, - { - "type": "SelectOption", - "filter": {"name": "Mecha", "value": "mecha"} - }, - { - "type": "SelectOption", - "filter": {"name": "Medical", "value": "medical"} - }, - { - "type": "SelectOption", - "filter": {"name": "Military", "value": "military"} - }, - { - "type": "SelectOption", - "filter": {"name": "Music", "value": "music"} - }, - { - "type": "SelectOption", - "filter": {"name": "Mystery", "value": "mystery"} - }, - { - "type": "SelectOption", - "filter": {"name": "Mythology", "value": "mythology"} - }, - { - "type": "SelectOption", - "filter": {"name": "Organized Crime", "value": "organized-crime"} - }, - { - "type": "SelectOption", - "filter": {"name": "Parody", "value": "parody"} - }, - { - "type": "SelectOption", - "filter": {"name": "Performing Arts", "value": "performing-arts"} - }, - { - "type": "SelectOption", - "filter": {"name": "Pets", "value": "pets"} - }, - { - "type": "SelectOption", - "filter": {"name": "Police", "value": "police"} - }, - { - "type": "SelectOption", - "filter": {"name": "Psychological", "value": "psychological"} - }, - { - "type": "SelectOption", - "filter": {"name": "Racing", "value": "racing"} - }, - { - "type": "SelectOption", - "filter": {"name": "Reincarnation", "value": "reincarnation"} - }, - { - "type": "SelectOption", - "filter": {"name": "Romance", "value": "romance"} - }, - { - "type": "SelectOption", - "filter": {"name": "Romantic Subtext", "value": "romantic-subtext"} - }, - { - "type": "SelectOption", - "filter": {"name": "Samurai", "value": "samurai"} - }, - { - "type": "SelectOption", - "filter": {"name": "School", "value": "school"} - }, - { - "type": "SelectOption", - "filter": {"name": "Sci-Fi", "value": "sci-fi"} - }, - { - "type": "SelectOption", - "filter": {"name": "Seinen", "value": "seinen"} - }, - { - "type": "SelectOption", - "filter": {"name": "Shoujo", "value": "shoujo"} - }, - { - "type": "SelectOption", - "filter": {"name": "Shoujo Ai", "value": "shoujo-ai"} - }, - { - "type": "SelectOption", - "filter": {"name": "Shounen", "value": "shounen"} - }, - { - "type": "SelectOption", - "filter": {"name": "Showbiz", "value": "showbiz"} - }, - { - "type": "SelectOption", - "filter": {"name": "Slice of Life", "value": "slice-of-life"} - }, - { - "type": "SelectOption", - "filter": {"name": "Space", "value": "space"} - }, - { - "type": "SelectOption", - "filter": {"name": "Sports", "value": "sports"} - }, - { - "type": "SelectOption", - "filter": {"name": "Strategy Game", "value": "strategy-game"} - }, - { - "type": "SelectOption", - "filter": {"name": "Super Power", "value": "super-power"} - }, - { - "type": "SelectOption", - "filter": {"name": "Supernatural", "value": "supernatural"} - }, - { - "type": "SelectOption", - "filter": {"name": "Survival", "value": "survival"} - }, - { - "type": "SelectOption", - "filter": {"name": "Suspense", "value": "suspense"} - }, - { - "type": "SelectOption", - "filter": {"name": "Team Sports", "value": "team-sports"} - }, - { - "type": "SelectOption", - "filter": {"name": "Thriller", "value": "thriller"} - }, - { - "type": "SelectOption", - "filter": {"name": "Time Travel", "value": "time-travel"} - }, - { - "type": "SelectOption", - "filter": {"name": "Vampire", "value": "vampire"} - }, - { - "type": "SelectOption", - "filter": {"name": "Visual Arts", "value": "visual-arts"} - }, - { - "type": "SelectOption", - "filter": {"name": "Work Life", "value": "work-life"} - }, - { - "type": "SelectOption", - "filter": {"name": "Workplace", "value": "workplace"} - }, - { - "type": "SelectOption", - "filter": {"name": "Yaoi", "value": "yaoi"} - }, - { - "type": "SelectOption", - "filter": {"name": "Yuri", "value": "yuri"} - } - ]), - SelectFilter("RecentFilter", "Recent", 0, [ - SelectFilterOption("", ""), - SelectFilterOption("Recent Release", "1"), - SelectFilterOption("Recent Dub", "2"), - SelectFilterOption("Recent Chinese", "3") - ]), - SelectFilter("SeasonIFilter", "Season", 0, [ - SelectFilterOption("", ""), - SelectFilterOption("Latest season", "new-season.html"), - SelectFilterOption("Summer 2023", "sub-category/summer-2023-anime"), - SelectFilterOption("Spring 2023", "sub-category/spring-2023-anime"), - SelectFilterOption("Winter 2023", "sub-category/winter-2023-anime"), - SelectFilterOption("Fall 2022", "sub-category/fall-2022-anime"), - SelectFilterOption("Summer 2022", "sub-category/summer-2022-anime"), - SelectFilterOption("Spring 2022", "sub-category/spring-2022-anime"), - SelectFilterOption("Winter 2022", "sub-category/winter-2022-anime"), - SelectFilterOption("Fall 2021", "sub-category/fall-2021-anime"), - SelectFilterOption("Summer 2021", "sub-category/summer-2021-anime"), - SelectFilterOption("Spring 2021", "sub-category/spring-2021-anime"), - SelectFilterOption("Winter 2021", "sub-category/winter-2021-anime"), - SelectFilterOption("Fall 2020", "sub-category/fall-2020-anime"), - SelectFilterOption("Summer 2020", "sub-category/summer-2020-anime"), - SelectFilterOption("Spring 2020", "sub-category/spring-2020-anime"), - SelectFilterOption("Winter 2020", "sub-category/winter-2020-anime"), - SelectFilterOption("Fall 2019", "sub-category/fall-2019-anime"), - SelectFilterOption("Summer 2019", "sub-category/summer-2019-anime"), - SelectFilterOption("Spring 2019", "sub-category/spring-2019-anime"), - SelectFilterOption("Winter 2019", "sub-category/winter-2019-anime"), - SelectFilterOption("Fall 2018", "sub-category/fall-2018-anime"), - SelectFilterOption("Summer 2018", "sub-category/summer-2018-anime"), - SelectFilterOption("Spring 2018", "sub-category/spring-2018-anime"), - SelectFilterOption("Winter 2018", "sub-category/winter-2018-anime"), - SelectFilterOption("Fall 2017", "sub-category/fall-2017-anime"), - SelectFilterOption("Summer 2017", "sub-category/summer-2017-anime"), - SelectFilterOption("Spring 2017", "sub-category/spring-2017-anime"), - SelectFilterOption("Winter 2017", "sub-category/winter-2017-anime"), - SelectFilterOption("Fall 2016", "sub-category/fall-2016-anime"), - SelectFilterOption("Summer 2016", "sub-category/summer-2016-anime"), - SelectFilterOption("Spring 2016", "sub-category/spring-2016-anime"), - SelectFilterOption("Winter 2016", "sub-category/winter-2016-anime"), - SelectFilterOption("Fall 2015", "sub-category/fall-2015-anime"), - SelectFilterOption("Summer 2015", "sub-category/summer-2015-anime"), - SelectFilterOption("Spring 2015", "sub-category/spring-2015-anime"), - SelectFilterOption("Winter 2015", "sub-category/winter-2015-anime"), - SelectFilterOption("Fall 2014", "sub-category/fall-2014-anime"), - SelectFilterOption("Summer 2014", "sub-category/summer-2014-anime"), - SelectFilterOption("Spring 2014", "sub-category/spring-2014-anime"), - SelectFilterOption("Winter 2014", "sub-category/winter-2014-anime") - ]), - ]; - } - - @override - List getSourcePreferences() { - return [ - EditTextPreference( - key: "override_baseurl_v${source.id}", - title: "Override BaseUrl", - summary: - "For temporary uses. Updating the extension will erase this setting.", - value: "https://anitaku.to", - dialogTitle: "Override BaseUrl", - dialogMessage: "Default: https://anitaku.to", - text: "https://anitaku.to"), - ListPreference( - key: "preferred_quality", - title: "Preferred quality", - summary: "", - valueIndex: 0, - entries: ["1080p", "720p", "480p", "360p"], - entryValues: ["1080", "720", "480", "360"]), - ListPreference( - key: "preferred_server", - title: "Preferred server", - summary: "", - valueIndex: 0, - entries: [ - "Gogostream", - "Vidstreaming", - "Doodstream", - "StreamWish", - "Mp4upload", - "FileLions" - ], - entryValues: [ - "Gogostream", - "Vidstreaming", - "Doodstream", - "StreamWish", - "Mp4upload", - "FileLions" - ]), - MultiSelectListPreference( - key: "hoster_selection", - title: "Enable/Disable Hosts", - summary: "", - entries: [ - "Gogostream", - "Vidstreaming", - "Doodstream", - "StreamWish", - "Mp4upload", - "FileLions" - ], - entryValues: [ - "vidcdn", - "anime", - "doodstream", - "streamwish", - "mp4upload", - "filelions" - ], - values: [ - "vidcdn", - "anime", - "doodstream", - "streamwish", - "mp4upload", - "filelions" - ]), - ]; - } - - List preferenceHosterSelection(int sourceId) { - return getPreferenceValue(sourceId, "hoster_selection"); - } - - List sortVideos(List videos, int sourceId) { - String quality = getPreferenceValue(sourceId, "preferred_quality"); - String server = getPreferenceValue(sourceId, "preferred_server"); - - videos.sort((MVideo a, MVideo b) { - int qualityMatchA = 0; - if (a.quality.contains(quality) && a.quality.contains(server)) { - qualityMatchA = 1; - } - int qualityMatchB = 0; - if (b.quality.contains(quality) && b.quality.contains(server)) { - qualityMatchB = 1; - } - if (qualityMatchA != qualityMatchB) { - return qualityMatchB - qualityMatchA; - } - - final regex = RegExp(r'(\d+)p'); - final matchA = regex.firstMatch(a.quality); - final matchB = regex.firstMatch(b.quality); - final int qualityNumA = int.tryParse(matchA?.group(1) ?? '0') ?? 0; - final int qualityNumB = int.tryParse(matchB?.group(1) ?? '0') ?? 0; - return qualityNumB - qualityNumA; - }); - - return videos; - } -} - -GogoAnime main(MSource source) { - return GogoAnime(source: source); -} diff --git a/dart/anime/src/en/gogoanime/icon.png b/dart/anime/src/en/gogoanime/icon.png deleted file mode 100644 index 29abaec0..00000000 Binary files a/dart/anime/src/en/gogoanime/icon.png and /dev/null differ diff --git a/dart/anime/src/en/gogoanime/source.dart b/dart/anime/src/en/gogoanime/source.dart deleted file mode 100644 index 0a60daeb..00000000 --- a/dart/anime/src/en/gogoanime/source.dart +++ /dev/null @@ -1,16 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get gogoanimeSource => _gogoanimeSource; -const _gogoanimeVersion = "0.0.9"; -const _gogoanimeSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/gogoanime/gogoanime.dart"; -Source _gogoanimeSource = Source( - name: "Gogoanime", - baseUrl: "https://anitaku.to", - lang: "en", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/gogoanime/icon.png", - sourceCodeUrl: _gogoanimeSourceCodeUrl, - version: _gogoanimeVersion, - isManga: false); diff --git a/dart/anime/src/en/kisskh/icon.png b/dart/anime/src/en/kisskh/icon.png deleted file mode 100644 index 5c440d80..00000000 Binary files a/dart/anime/src/en/kisskh/icon.png and /dev/null differ diff --git a/dart/anime/src/en/kisskh/kisskh.dart b/dart/anime/src/en/kisskh/kisskh.dart deleted file mode 100644 index 41ec1b35..00000000 --- a/dart/anime/src/en/kisskh/kisskh.dart +++ /dev/null @@ -1,157 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class KissKh extends MProvider { - KissKh({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - Future getPopular(int page) async { - final res = (await client.get(Uri.parse( - "${source.baseUrl}/api/DramaList/List?page=$page&type=0&sub=0&country=0&status=0&order=1&pageSize=40"))) - .body; - final jsonRes = json.decode(res); - final datas = jsonRes["data"]; - List animeList = []; - - for (var data in datas) { - MManga anime = MManga(); - anime.name = data["title"]; - anime.imageUrl = data["thumbnail"] ?? ""; - anime.link = - "${source.baseUrl}/api/DramaList/Drama/${data["id"]}?isq=false"; - animeList.add(anime); - } - - int lastPage = jsonRes["totalCount"]; - int pages = jsonRes["page"]; - return MPages(animeList, pages < lastPage); - } - - @override - Future getLatestUpdates(int page) async { - final res = (await client.get(Uri.parse( - "${source.baseUrl}/api/DramaList/List?page=$page&type=0&sub=0&country=0&status=0&order=12&pageSize=40"))) - .body; - final jsonRes = json.decode(res); - final datas = jsonRes["data"]; - - List animeList = []; - - for (var data in datas) { - MManga anime = MManga(); - anime.name = data["title"]; - anime.imageUrl = data["thumbnail"] ?? ""; - anime.link = - "${source.baseUrl}/api/DramaList/Drama/${data["id"]}?isq=false"; - animeList.add(anime); - } - - int lastPage = jsonRes["totalCount"]; - int pages = jsonRes["page"]; - return MPages(animeList, pages < lastPage); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final res = (await client.get(Uri.parse( - "${source.baseUrl}/api/DramaList/Search?q=$query&type=0"))) - .body; - final jsonRes = json.decode(res); - List animeList = []; - for (var data in jsonRes) { - MManga anime = MManga(); - anime.name = data["title"]; - anime.imageUrl = data["thumbnail"] ?? ""; - anime.link = - "${source.baseUrl}/api/DramaList/Drama/${data["id"]}?isq=false"; - animeList.add(anime); - } - return MPages(animeList, false); - } - - @override - Future getDetail(String url) async { - final statusList = [ - {"Ongoing": 0, "Completed": 1} - ]; - final res = (await client.get(Uri.parse(url))).body; - MManga anime = MManga(); - final jsonRes = json.decode(res); - final status = jsonRes["status"] ?? ""; - anime.description = jsonRes["description"]; - anime.status = parseStatus(status, statusList); - anime.imageUrl = jsonRes["thumbnail"]; - var episodes = jsonRes["episodes"]; - String type = jsonRes["type"]; - final episodesCount = jsonRes["episodesCount"] as int; - final containsAnime = type.contains("Anime"); - final containsTVSeries = type.contains("TVSeries"); - final containsHollywood = type.contains("Hollywood"); - final containsMovie = type.contains("Movie"); - List? episodesList = []; - - for (var a in episodes) { - MChapter episode = MChapter(); - String number = (a["number"] as double).toString().replaceAll(".0", ""); - final id = a["id"]; - if (containsAnime || containsTVSeries) { - episode.name = "Episode $number"; - } else if (containsHollywood && episodesCount == 1 || containsMovie) { - episode.name = "Movie"; - } else if (containsHollywood && episodesCount > 1) { - episode.name = "Episode $number"; - } - episode.url = - "${source.baseUrl}/api/DramaList/Episode/$id.png?err=false&ts=&time="; - episodesList.add(episode); - } - - anime.chapters = episodesList; - return anime; - } - - @override - Future> getVideoList(String url) async { - final res = (await client.get(Uri.parse(url))).body; - final id = substringAfter(substringBefore(url, ".png"), "Episode/"); - final jsonRes = json.decode(res); - - final subRes = - (await client.get(Uri.parse("${source.baseUrl}/api/Sub/$id"))).body; - var jsonSubRes = json.decode(subRes); - - List subtitles = []; - - for (var sub in jsonSubRes) { - try { - final subUrl = sub["src"]; - final label = sub["label"]; - MTrack subtitle = MTrack(); - subtitle - ..label = label - ..file = subUrl; - subtitles.add(subtitle); - } catch (_) {} - } - final videoUrl = jsonRes["Video"]; - MVideo video = MVideo(); - video - ..url = videoUrl - ..originalUrl = videoUrl - ..quality = "kisskh" - ..subtitles = subtitles - ..headers = { - "referer": "https://kisskh.me/", - "origin": "https://kisskh.me" - }; - return [video]; - } -} - -KissKh main(MSource source) { - return KissKh(source: source); -} diff --git a/dart/anime/src/en/kisskh/source.dart b/dart/anime/src/en/kisskh/source.dart deleted file mode 100644 index 824f368c..00000000 --- a/dart/anime/src/en/kisskh/source.dart +++ /dev/null @@ -1,16 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get kisskhSource => _kisskhSource; -const _kisskhVersion = "0.0.55"; -const _kisskhSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/kisskh/kisskh.dart"; -Source _kisskhSource = Source( - name: "KissKH", - baseUrl: "https://kisskh.co", - lang: "en", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/kisskh/icon.png", - sourceCodeUrl: _kisskhSourceCodeUrl, - version: _kisskhVersion, - isManga: false); diff --git a/dart/anime/src/en/nineanimetv/icon.png b/dart/anime/src/en/nineanimetv/icon.png deleted file mode 100644 index e57234ee..00000000 Binary files a/dart/anime/src/en/nineanimetv/icon.png and /dev/null differ diff --git a/dart/anime/src/en/nineanimetv/nineanimetv.dart b/dart/anime/src/en/nineanimetv/nineanimetv.dart deleted file mode 100644 index 9ddd481f..00000000 --- a/dart/anime/src/en/nineanimetv/nineanimetv.dart +++ /dev/null @@ -1,546 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class NineAnimeTv extends MProvider { - NineAnimeTv({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - Future getPopular(int page) async { - final res = (await client - .get(Uri.parse("${source.baseUrl}/filter?sort=all&page=$page"))) - .body; - return parseAnimeList(res); - } - - @override - Future getLatestUpdates(int page) async { - final res = (await client.get(Uri.parse( - "${source.baseUrl}/filter?sort=recently_updated&page=$page"))) - .body; - return parseAnimeList(res); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final filters = filterList.filters; - String url = "${source.baseUrl}/filter?keyword=$query"; - - for (var filter in filters) { - if (filter.type == "GenreFilter") { - final genre = (filter.state as List).where((e) => e.state).toList(); - url += "${ll(url)}genre="; - if (genre.isNotEmpty) { - for (var st in genre) { - url += "${st.value}"; - if (genre.length > 1) { - url += "%2C"; - } - } - if (genre.length > 1) { - url = substringBeforeLast(url, '%2C'); - } - } - } else if (filter.type == "SeasonFilter") { - final season = (filter.state as List).where((e) => e.state).toList(); - url += "${ll(url)}season="; - if (season.isNotEmpty) { - for (var st in season) { - url += "${st.value}"; - if (season.length > 1) { - url += "%2C"; - } - } - if (season.length > 1) { - url = substringBeforeLast(url, '%2C'); - } - } - } else if (filter.type == "YearFilter") { - final year = (filter.state as List).where((e) => e.state).toList(); - url += "${ll(url)}year="; - if (year.isNotEmpty) { - for (var st in year) { - url += "${st.value}"; - if (year.length > 1) { - url += "%2C"; - } - } - if (year.length > 1) { - url = substringBeforeLast(url, '%2C'); - } - } - } else if (filter.type == "TypeFilter") { - final type = (filter.state as List).where((e) => e.state).toList(); - url += "${ll(url)}type="; - if (type.isNotEmpty) { - for (var st in type) { - url += "${st.value}"; - if (type.length > 1) { - url += "%2C"; - } - } - if (type.length > 1) { - url = substringBeforeLast(url, '%2C'); - } - } - } else if (filter.type == "StatusFilter") { - final status = filter.values[filter.state].value; - url += "${ll(url)}status=$status"; - } else if (filter.type == "LanguageFilter") { - final language = (filter.state as List).where((e) => e.state).toList(); - url += "${ll(url)}language="; - if (language.isNotEmpty) { - for (var st in language) { - url += "${st.value}"; - if (language.length > 1) { - url += "%2C"; - } - } - if (language.length > 1) { - url = substringBeforeLast(url, '%2C'); - } - } - } else if (filter.type == "SortFilter") { - final sort = filter.values[filter.state].value; - url += "${ll(url)}sort=$sort"; - } - } - - final res = (await client.get(Uri.parse("$url&page=$page"))).body; - return parseAnimeList(res); - } - - @override - Future getDetail(String url) async { - final statusList = [ - {"Currently Airing": 0, "Finished Airing": 1} - ]; - - final res = (await client.get(Uri.parse("${source.baseUrl}$url"))).body; - MManga anime = MManga(); - final document = parseHtml(res); - final infoElement = document.selectFirst("div.film-infor"); - final status = infoElement.xpathFirst( - '//div[contains(text(),"Status:")]/following-sibling::div/span/text()') ?? - ""; - anime.status = parseStatus(status, statusList); - anime.description = - infoElement.selectFirst("div.film-description > p")?.text ?? ""; - anime.author = infoElement.xpathFirst( - '//div[contains(text(),"Studios:")]/following-sibling::div/a/text()') ?? - ""; - - anime.genre = infoElement.xpath( - '//div[contains(text(),"Genre:")]/following-sibling::div/a/text()'); - final id = parseHtml(res).selectFirst("div[data-id]").attr("data-id"); - - final resEp = - (await client.get(Uri.parse("${source.baseUrl}/ajax/episode/list/$id"))) - .body; - final html = json.decode(resEp)["html"]; - - List? episodesList = []; - - final epsElements = parseHtml(html).select("a"); - for (var epElement in epsElements) { - final id = epElement.attr('data-id'); - - final title = epElement.attr('title') ?? ""; - - final epNum = epElement.attr('data-number'); - - MChapter episode = MChapter(); - episode.name = "Episode $epNum $title"; - episode.url = id; - episodesList.add(episode); - } - anime.chapters = episodesList.reversed.toList(); - return anime; - } - - @override - Future> getVideoList(String url) async { - final res = (await client.get( - Uri.parse("${source.baseUrl}/ajax/episode/servers?episodeId=$url"))) - .body; - - final html = json.decode(res)["html"]; - - final serverElements = parseHtml(html).select("div.server-item"); - - List videos = []; - final hosterSelection = preferenceHosterSelection(source.id); - final typeSelection = preferenceTypeSelection(source.id); - for (var serverElement in serverElements) { - final name = serverElement.text; - final id = serverElement.attr("data-id"); - final subDub = serverElement.attr("data-type"); - final res = (await client - .get(Uri.parse("${source.baseUrl}/ajax/episode/sources?id=$id"))) - .body; - final epUrl = json.decode(res)["link"]; - List a = []; - - if (hosterSelection.contains(name) && typeSelection.contains(subDub)) { - if (name.contains("Vidstreaming")) { - a = await rapidCloudExtractor(epUrl, "Vidstreaming - $subDub"); - } else if (name.contains("Vidcloud")) { - a = await rapidCloudExtractor(epUrl, "Vidcloud - $subDub"); - } - videos.addAll(a); - } - } - - return sortVideos(videos, source.id); - } - - MPages parseAnimeList(String res) { - final elements = parseHtml(res).select("div.film_list-wrap > div"); - List animeList = []; - for (var element in elements) { - MManga anime = MManga(); - anime.name = element.selectFirst("div.film-detail > h3 > a").text; - anime.imageUrl = element.selectFirst(" div.film-poster > img").getSrc; - anime.link = element.selectFirst("div.film-detail > h3 > a").getHref; - animeList.add(anime); - } - - return MPages(animeList, true); - } - - Future> rapidCloudExtractor(String url, String name) async { - final serverUrl = ['https://megacloud.tv', 'https://rapid-cloud.co']; - - final serverType = url.startsWith('https://megacloud.tv') ? 0 : 1; - final sourceUrl = [ - '/embed-2/ajax/e-1/getSources?id=', - '/ajax/embed-6-v2/getSources?id=' - ]; - final sourceSpliter = ['/e-1/', '/embed-6-v2/']; - final id = url.split(sourceSpliter[serverType]).last.split('?').first; - final resServer = (await client.get( - Uri.parse('${serverUrl[serverType]}${sourceUrl[serverType]}$id'), - headers: {"X-Requested-With": "XMLHttpRequest"})) - .body; - final encrypted = getMapValue(resServer, "encrypted"); - String videoResJson = ""; - List videos = []; - if (encrypted == "true") { - final ciphered = getMapValue(resServer, "sources"); - List> indexPairs = await generateIndexPairs(serverType); - var password = ''; - String ciphertext = ciphered; - int index = 0; - for (List item in json.decode(json.encode(indexPairs))) { - int start = item.first + index; - int end = start + item.last; - String passSubstr = ciphered.substring(start, end); - password += passSubstr; - ciphertext = ciphertext.replaceFirst(passSubstr, ""); - index += item.last; - } - videoResJson = decryptAESCryptoJS(ciphertext, password); - } else { - videoResJson = resServer; - } - - String masterUrl = - ((json.decode(videoResJson) as List>) - .first)['file']; - String type = ((json.decode(videoResJson) as List>) - .first)['type']; - - final tracks = (json.decode(resServer)['tracks'] as List) - .where((e) => e['kind'] == 'captions' ? true : false) - .toList(); - List subtitles = []; - - for (var sub in tracks) { - try { - MTrack subtitle = MTrack(); - subtitle - ..label = sub["label"] - ..file = sub["file"]; - subtitles.add(subtitle); - } catch (_) {} - } - - if (type == "hls") { - final masterPlaylistRes = (await client.get(Uri.parse(masterUrl))).body; - - for (var it in substringAfter(masterPlaylistRes, "#EXT-X-STREAM-INF:") - .split("#EXT-X-STREAM-INF:")) { - final quality = - "${substringBefore(substringBefore(substringAfter(substringAfter(it, "RESOLUTION="), "x"), ","), "\n")}p"; - - String videoUrl = substringBefore(substringAfter(it, "\n"), "\n"); - - if (!videoUrl.startsWith("http")) { - videoUrl = - "${masterUrl.split("/").sublist(0, masterUrl.split("/").length - 1).join("/")}/$videoUrl"; - } - - MVideo video = MVideo(); - video - ..url = videoUrl - ..originalUrl = videoUrl - ..quality = "$name - $quality" - ..subtitles = subtitles; - videos.add(video); - } - } else { - MVideo video = MVideo(); - video - ..url = masterUrl - ..originalUrl = masterUrl - ..quality = "$name - Default" - ..subtitles = subtitles; - videos.add(video); - } - return videos; - } - - Future>> generateIndexPairs(int serverType) async { - final jsPlayerUrl = [ - "https://megacloud.tv/js/player/a/prod/e1-player.min.js", - "https://rapid-cloud.co/js/player/prod/e6-player-v2.min.js" - ]; - final scriptText = - (await client.get(Uri.parse(jsPlayerUrl[serverType]))).body; - - final switchCode = scriptText.substring( - scriptText.lastIndexOf('switch'), scriptText.indexOf('=partKey')); - - List indexes = []; - for (var variableMatch - in RegExp(r'=(\w+)').allMatches(switchCode).toList()) { - final regex = RegExp( - ',${(variableMatch as RegExpMatch).group(1)}=((?:0x)?([0-9a-fA-F]+))'); - Match? match = regex.firstMatch(scriptText); - - if (match != null) { - String value = match.group(1); - if (value.contains("0x")) { - indexes.add(int.parse(substringAfter(value, "0x"), radix: 16)); - } else { - indexes.add(int.parse(value)); - } - } - } - - return chunked(indexes, 2); - } - - List> chunked(List list, int size) { - List> chunks = []; - for (int i = 0; i < list.length; i += size) { - int end = list.length; - if (i + size < list.length) { - end = i + size; - } - chunks.add(list.sublist(i, end)); - } - return chunks; - } - - @override - List getFilterList() { - return [ - GroupFilter("GenreFilter", "Genre", [ - CheckBoxFilter("Action", "1"), - CheckBoxFilter("Adventure", "2"), - CheckBoxFilter("Cars", "3"), - CheckBoxFilter("Comedy", "4"), - CheckBoxFilter("Dementia", "5"), - CheckBoxFilter("Demons", "6"), - CheckBoxFilter("Drama", "8"), - CheckBoxFilter("Ecchi", "9"), - CheckBoxFilter("Fantasy", "10"), - CheckBoxFilter("Game", "11"), - CheckBoxFilter("Harem", "35"), - CheckBoxFilter("Historical", "13"), - CheckBoxFilter("Horror", "14"), - CheckBoxFilter("Isekai", "44"), - CheckBoxFilter("Josei", "43"), - CheckBoxFilter("Kids", "15"), - CheckBoxFilter("Magic", "16"), - CheckBoxFilter("Martial Arts", "17"), - CheckBoxFilter("Mecha", "18"), - CheckBoxFilter("Military", "38"), - CheckBoxFilter("Music", "19"), - CheckBoxFilter("Mystery", "7"), - CheckBoxFilter("Parody", "20"), - CheckBoxFilter("Police", "39"), - CheckBoxFilter("Psychological", "40"), - CheckBoxFilter("Romance", "22"), - CheckBoxFilter("Samurai", "21"), - CheckBoxFilter("School", "23"), - CheckBoxFilter("Sci-Fi", "24"), - CheckBoxFilter("Seinen", "42"), - CheckBoxFilter("Shoujo", "25"), - CheckBoxFilter("Shoujo Ai", "26"), - CheckBoxFilter("Shounen", "27"), - CheckBoxFilter("Shounen Ai", "28"), - CheckBoxFilter("Slice of Life", "36"), - CheckBoxFilter("Space", "29"), - CheckBoxFilter("Sports", "30"), - CheckBoxFilter("Super Power", "31"), - CheckBoxFilter("Supernatural", "37"), - CheckBoxFilter("Thriller", "41"), - CheckBoxFilter("Vampire", "32") - ]), - GroupFilter("SeasonFilter", "Season", [ - CheckBoxFilter("Fall", "3"), - CheckBoxFilter("Summer", "2"), - CheckBoxFilter("Spring", "1"), - CheckBoxFilter("Winter", "4") - ]), - GroupFilter("YearFilter", "Year", [ - CheckBoxFilter("2023", "2023"), - CheckBoxFilter("2022", "2022"), - CheckBoxFilter("2021", "2021"), - CheckBoxFilter("2020", "2020"), - CheckBoxFilter("2019", "2019"), - CheckBoxFilter("2018", "2018"), - CheckBoxFilter("2017", "2017"), - CheckBoxFilter("2016", "2016"), - CheckBoxFilter("2015", "2015"), - CheckBoxFilter("2014", "2014"), - CheckBoxFilter("2013", "2013"), - CheckBoxFilter("2012", "2012"), - CheckBoxFilter("2011", "2011"), - CheckBoxFilter("2010", "2010"), - CheckBoxFilter("2009", "2009"), - CheckBoxFilter("2008", "2008"), - CheckBoxFilter("2007", "2007"), - CheckBoxFilter("2006", "2006"), - CheckBoxFilter("2005", "2005"), - CheckBoxFilter("2004", "2004"), - CheckBoxFilter("2003", "2003"), - CheckBoxFilter("2002", "2002"), - CheckBoxFilter("2001", "2001") - ]), - SelectFilter("SortFilter", "Sort by", 0, [ - SelectFilterOption("All", "all"), - SelectFilterOption("Default", "default"), - SelectFilterOption("Recently Added", "recently_added"), - SelectFilterOption("Recently Updated", "recently_updated"), - SelectFilterOption("Score", "score"), - SelectFilterOption("Name A-Z", "name_az"), - SelectFilterOption("Released Date", "released_date"), - SelectFilterOption("Most Watched", "most_watched") - ]), - GroupFilter("TypeFilter", "Type", [ - CheckBoxFilter("Movie", "1"), - CheckBoxFilter("TV Series", "2"), - CheckBoxFilter("OVA", "3"), - CheckBoxFilter("ONA", "4"), - CheckBoxFilter("Special", "5"), - CheckBoxFilter("Music", "6") - ]), - SelectFilter("StatusFilter", "Status", 0, [ - SelectFilterOption("All", "all"), - SelectFilterOption("Finished Airing", "1"), - SelectFilterOption("Currently Airing", "2"), - SelectFilterOption("Not yet aired", "3") - ]), - GroupFilter("LanguageFilter", "Language", - [CheckBoxFilter("Sub", "sub"), CheckBoxFilter("Dub", "dub")]), - ]; - } - - @override - List getSourcePreferences() { - return [ - ListPreference( - key: "preferred_quality", - title: "Preferred Quality", - summary: "", - valueIndex: 1, - entries: ["1080p", "720p", "480p", "360p"], - entryValues: ["1080", "720", "480", "360"]), - ListPreference( - key: "preferred_server", - title: "Preferred server", - summary: "", - valueIndex: 0, - entries: ["Vidstreaming", "VidCloud"], - entryValues: ["Vidstreaming", "VidCloud"]), - ListPreference( - key: "preferred_type", - title: "Preferred Type", - summary: "", - valueIndex: 0, - entries: ["Sub", "Dub"], - entryValues: ["sub", "dub"]), - MultiSelectListPreference( - key: "hoster_selection", - title: "Enable/Disable Hosts", - summary: "", - entries: ["Vidstreaming", "VidCloud"], - entryValues: ["Vidstreaming", "Vidcloud"], - values: ["Vidstreaming", "Vidcloud"]), - MultiSelectListPreference( - key: "type_selection", - title: "Enable/Disable Types", - summary: "", - entries: ["Sub", "Dub"], - entryValues: ["sub", "dub"], - values: ["sub", "dub"]), - ]; - } - - List sortVideos(List videos, int sourceId) { - String quality = getPreferenceValue(sourceId, "preferred_quality"); - String server = getPreferenceValue(sourceId, "preferred_server"); - String type = getPreferenceValue(sourceId, "preferred_type"); - videos.sort((MVideo a, MVideo b) { - int qualityMatchA = 0; - - if (a.quality.contains(quality) && - a.quality.toLowerCase().contains(type.toLowerCase()) && - a.quality.toLowerCase().contains(server.toLowerCase())) { - qualityMatchA = 1; - } - int qualityMatchB = 0; - if (b.quality.contains(quality) && - b.quality.toLowerCase().contains(type.toLowerCase()) && - b.quality.toLowerCase().contains(server.toLowerCase())) { - qualityMatchB = 1; - } - if (qualityMatchA != qualityMatchB) { - return qualityMatchB - qualityMatchA; - } - - final regex = RegExp(r'(\d+)p'); - final matchA = regex.firstMatch(a.quality); - final matchB = regex.firstMatch(b.quality); - final int qualityNumA = int.tryParse(matchA?.group(1) ?? '0') ?? 0; - final int qualityNumB = int.tryParse(matchB?.group(1) ?? '0') ?? 0; - return qualityNumB - qualityNumA; - }); - return videos; - } - - List preferenceHosterSelection(int sourceId) { - return getPreferenceValue(sourceId, "hoster_selection"); - } - - List preferenceTypeSelection(int sourceId) { - return getPreferenceValue(sourceId, "type_selection"); - } - - String ll(String url) { - if (url.contains("?")) { - return "&"; - } - return "?"; - } -} - -NineAnimeTv main(MSource source) { - return NineAnimeTv(source: source); -} diff --git a/dart/anime/src/en/nineanimetv/source.dart b/dart/anime/src/en/nineanimetv/source.dart deleted file mode 100644 index adc00d53..00000000 --- a/dart/anime/src/en/nineanimetv/source.dart +++ /dev/null @@ -1,16 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get nineanimetv => _nineanimetv; -const _nineanimetvVersion = "0.0.3"; -const _nineanimetvCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/nineanimetv/nineanimetv.dart"; -Source _nineanimetv = Source( - name: "9AnimeTv", - baseUrl: "https://9animetv.to", - lang: "en", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/nineanimetv/icon.png", - sourceCodeUrl: _nineanimetvCodeUrl, - version: _nineanimetvVersion, - isManga: false); diff --git a/dart/anime/src/en/uhdmovies/icon.png b/dart/anime/src/en/uhdmovies/icon.png deleted file mode 100644 index 073e44f1..00000000 Binary files a/dart/anime/src/en/uhdmovies/icon.png and /dev/null differ diff --git a/dart/anime/src/en/uhdmovies/source.dart b/dart/anime/src/en/uhdmovies/source.dart deleted file mode 100644 index bd0abef6..00000000 --- a/dart/anime/src/en/uhdmovies/source.dart +++ /dev/null @@ -1,16 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get uhdmoviesSource => _uhdmoviesSource; -const _uhdmoviesVersion = "0.0.35"; -const _uhdmoviesSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/uhdmovies/uhdmovies.dart"; -Source _uhdmoviesSource = Source( - name: "UHD Movies", - baseUrl: "https://uhdmovies.zip", - lang: "en", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/uhdmovies/icon.png", - sourceCodeUrl: _uhdmoviesSourceCodeUrl, - version: _uhdmoviesVersion, - isManga: false); diff --git a/dart/anime/src/en/uhdmovies/uhdmovies.dart b/dart/anime/src/en/uhdmovies/uhdmovies.dart deleted file mode 100644 index cda96779..00000000 --- a/dart/anime/src/en/uhdmovies/uhdmovies.dart +++ /dev/null @@ -1,234 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class UHDMovies extends MProvider { - UHDMovies({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - bool get supportsLatest => false; - - @override - String get baseUrl => getPreferenceValue(source.id, "pref_domain"); - - @override - Future getPopular(int page) async { - final res = (await client.get(Uri.parse("$baseUrl/page/$page"))).body; - return animeFromElement(res); - } - - @override - Future getLatestUpdates(int page) async { - return MPages([], false); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final res = (await client.get( - Uri.parse("$baseUrl/page/$page/?s=${query.replaceAll(" ", "+")}"))) - .body; - return animeFromElement(res); - } - - @override - Future getDetail(String url) async { - url = getUrlWithoutDomain(url); - final res = (await client.get(Uri.parse("$baseUrl${url}"))).body; - MManga anime = MManga(); - final description = xpath(res, '//pre/span/text()'); - if (description.isNotEmpty) { - anime.description = description.first; - } - anime.status = MStatus.ongoing; - final episodesTitles = xpath(res, - '//*[contains(@style, "center") or contains(@class, "maxbutton")]/a[contains(@class, "maxbutton") or contains(@href, "?sid=")]/text()'); - final episodesUrls = xpath(res, - '//*[contains(@style, "center") or contains(@class, "maxbutton")]/a[contains(@class, "maxbutton") or contains(@href, "?sid=")]/@href'); - bool isSeries = false; - if (episodesTitles.first.contains("Episode") || - episodesTitles.first.contains("Zip") || - episodesTitles.first.contains("Pack")) { - isSeries = true; - } - List? episodesList = []; - if (!isSeries) { - List moviesTitles = []; - moviesTitles = xpath(res, - '//*[contains(@style, "center") or contains(@class, "maxbutton")]/parent::p//preceding-sibling::p[contains(@style, "center")]/text()'); - List titles = []; - if (moviesTitles.isEmpty) { - moviesTitles = xpath(res, '//p[contains(@style, "center")]/text()'); - } - for (var title in moviesTitles) { - if (title.isNotEmpty && - !title.contains('Download') && - !title.contains('Note:') && - !title.contains('Copyright')) { - titles.add(title.split('[').first.trim()); - } - } - for (var i = 0; i < titles.length; i++) { - final title = titles[i]; - final quality = RegExp(r'\d{3,4}p').firstMatch(title)?.group(0) ?? ""; - final url = episodesUrls[i]; - MChapter ep = MChapter(); - ep.name = title; - ep.url = url; - ep.scanlator = quality; - episodesList.add(ep); - } - } else { - List seasonTitles = []; - final episodeTitles = xpath(res, - '//*[contains(@style, "center") or contains(@class, "maxbutton")]/parent::p//preceding-sibling::p[contains(@style, "center") and not(text()^="Episode")]/text()'); - List titles = []; - for (var title in episodeTitles) { - if (title.isNotEmpty) { - titles.add(title.split('[').first.trim()); - } - } - int number = 0; - for (var i = 0; i < episodesTitles.length; i++) { - final episode = episodesTitles[i]; - final episodeUrl = episodesUrls[i]; - if (!episode.contains("Zip") || !episode.contains("Pack")) { - if (episode == "Episode 1" && seasonTitles.contains("Episode 1")) { - number++; - } else if (episode == "Episode 1") { - seasonTitles.add(episode); - } - final season = - RegExp(r'S(\d{2})').firstMatch(titles[number])?.group(1) ?? ""; - final quality = - RegExp(r'\d{3,4}p').firstMatch(titles[number])?.group(0) ?? ""; - MChapter ep = MChapter(); - ep.name = "Season $season $episode $quality"; - ep.url = episodeUrl; - ep.scanlator = quality; - episodesList.add(ep); - } - } - } - anime.chapters = episodesList.reversed.toList(); - return anime; - } - - @override - Future> getVideoList(String url) async { - final res = await getMediaUrl(url); - return await extractVideos(res); - } - - @override - List getSourcePreferences() { - return [ - EditTextPreference( - key: "pref_domain", - title: "Currently used domain", - summary: "", - value: "https://uhdmovies.zip", - dialogTitle: "Currently used domain", - dialogMessage: "", - text: "https://uhdmovies.zip"), - ]; - } - - Future> extractVideos(String url) async { - List videos = []; - for (int type = 1; type < 3; type++) { - url = url.replaceAll("/file/", "/wfile/") + "?type=$type"; - final res = (await client.get(Uri.parse(url))).body; - final links = xpath(res, '//div[@class="mb-4"]/a/@href'); - for (int i = 0; i < links.length; i++) { - final link = links[i]; - String decodedLink = link; - if (!link.contains("workers.dev")) { - decodedLink = utf8 - .decode(base64Url.decode(substringAfter(link, "download?url="))); - } - MVideo video = MVideo(); - video - ..url = decodedLink - ..originalUrl = decodedLink - ..quality = "CF $type Worker ${i + 1}"; - videos.add(video); - } - } - return videos; - } - - Future getMediaUrl(String url) async { - String res = ""; - String host = ""; - if (url.contains("?sid=")) { - final finalUrl = await redirectorBypasser(url); - host = Uri.parse(finalUrl).host; - res = (await client.get(Uri.parse(finalUrl))).body; - } else if (url.contains("r?key=")) { - res = (await client.get(Uri.parse(url))).body; - host = Uri.parse(url).host; - } else { - return ""; - } - final path = substringBefore(substringAfter(res, "replace(\""), "\""); - if (path == "/404") return ""; - return "https://$host$path"; - } - - Future redirectorBypasser(String url) async { - final res = (await client.get(Uri.parse(url))).body; - String lastDoc = await recursiveDoc(url, res); - final js = xpath(lastDoc, '//script[contains(text(), "/?go=")]/text()'); - if (js.isEmpty) return ""; - String script = js.first; - String nextUrl = - substringBefore(substringAfter(script, "\"href\",\""), '"'); - if (!nextUrl.contains("http")) return ""; - String cookieName = substringAfter(nextUrl, "go="); - String cookieValue = - substringBefore(substringAfter(script, "'$cookieName', '"), "'"); - final response = (await client.get(Uri.parse(nextUrl), - headers: {"referer": url, "Cookie": "$cookieName=$cookieValue"})) - .body; - - final lastRes = - parseHtml(response).selectFirst("meta[http-equiv]").attr("content"); - return substringAfter(lastRes, "url="); - } - - MPages animeFromElement(String res) { - List animeList = []; - final urls = xpath(res, '//*[@class="entry-image"]/a/@href'); - final names = xpath(res, '//*[@class="entry-image"]/a/@title'); - final images = xpath(res, '//*[@class="entry-image"]/a/img/@src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i].replaceAll("Download", ""); - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - final nextPage = xpath(res, '//a[@class="next page-numbers"]/@href'); - return MPages(animeList, nextPage.isNotEmpty); - } - - Future recursiveDoc(String url, String html) async { - final urlR = xpath(html, '//form[@id="landing"]/@action'); - if (urlR.isEmpty) return html; - final name = xpath(html, '//input/@name').first; - final value = xpath(html, '//input/@value').first; - final body = {"$name": value}; - final response = (await client.post(Uri.parse(urlR.first), - headers: {"referer": url}, body: body)) - .body; - return recursiveDoc(url, response); - } -} - -UHDMovies main(MSource source) { - return UHDMovies(source: source); -} diff --git a/dart/anime/src/fr/animesama/animesama.dart b/dart/anime/src/fr/animesama/animesama.dart deleted file mode 100644 index 6cec6717..00000000 --- a/dart/anime/src/fr/animesama/animesama.dart +++ /dev/null @@ -1,409 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class AnimeSama extends MProvider { - AnimeSama({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - Future getPopular(int page) async { - final doc = (await client.get(Uri.parse("${source.baseUrl}/#$page"))).body; - final regex = RegExp(r"""^\s*carteClassique\(\s*.*?\s*,\s*"(.*?)".*\)""", - multiLine: true); - var matches = regex.allMatches(doc).toList(); - List> chunks = chunked(matches, 5); - List seasons = []; - if (page > 0 && page <= chunks.length) { - for (RegExpMatch match in chunks[page - 1]) { - seasons.addAll(await fetchAnimeSeasons( - "${source.baseUrl}/catalogue/${match.group(1)}")); - } - } - return MPages(seasons, page < chunks.length); - } - - @override - Future getLatestUpdates(int page) async { - final res = (await client.get(Uri.parse(source.baseUrl))).body; - var document = parseHtml(res); - final latest = document - .select("h2") - .where((MElement e) => - e.outerHtml.toLowerCase().contains("derniers ajouts")) - .toList(); - final seasonElements = (latest.first.nextElementSibling as MElement) - .select(".scrollBarStyled > div") - .toList(); - List seasons = []; - for (var seasonElement in seasonElements) { - seasons.addAll(await fetchAnimeSeasons( - (seasonElement as MElement).getElementsByTagName("a").first.getHref)); - } - return MPages(seasons, false); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final filters = filterList.filters; - final res = (await client - .get(Uri.parse("${source.baseUrl}/catalogue/listing_all.php"))) - .body; - var databaseElements = parseHtml(res).select(".cardListAnime"); - List elements = []; - elements = databaseElements - .where((MElement element) => element.select("h1, p").any((MElement e) => - e.text.toLowerCase().contains(query.toLowerCase().trim()))) - .toList(); - for (var filter in filters) { - if (filter.type == "TypeFilter") { - final types = (filter.state as List).where((e) => e.state).toList(); - elements = elements - .where((MElement element) => - types.isEmpty || - types.any((p) => element.className.contains(p.value))) - .toList(); - } else if (filter.type == "LanguageFilter") { - final language = (filter.state as List).where((e) => e.state).toList(); - elements = elements - .where((MElement element) => - language.isEmpty || - language.any((p) => element.className.contains(p.value))) - .toList(); - } else if (filter.type == "GenreFilter") { - final included = (filter.state as List) - .where((e) => e.state == 1 ? true : false) - .toList(); - final excluded = (filter.state as List) - .where((e) => e.state == 2 ? true : false) - .toList(); - if (included.isNotEmpty) { - elements = elements - .where((MElement element) => - included.every((p) => element.className.contains(p.value))) - .toList(); - } - if (excluded.isNotEmpty) { - elements = elements - .where((MElement element) => - excluded.every((p) => element.className.contains(p.value))) - .toList(); - } - } - } - List> chunks = chunked(elements, 5); - if (chunks.isEmpty) return MPages([], false); - List seasons = []; - for (var seasonElement in chunks[page - 1]) { - seasons.addAll(await fetchAnimeSeasons( - seasonElement.getElementsByTagName("a").first.getHref)); - } - - return MPages(seasons, page < chunks.length); - } - - @override - Future getDetail(String url) async { - var animeUrl = - "${source.baseUrl}${substringBeforeLast(getUrlWithoutDomain(url), "/")}"; - var movie = - int.tryParse(url.split("#").length >= 2 ? url.split("#")[1] : ""); - List> playersList = []; - for (var lang in ["vostfr", "vf"]) { - final players = await fetchPlayers("$animeUrl/$lang"); - if (players.isNotEmpty) { - playersList.add({"players": players, "lang": lang}); - } - } - int maxLength = 0; - for (var sublist in playersList) { - for (var innerList in sublist["players"]) { - if (innerList.length > maxLength) { - maxLength = innerList.length; - } - } - } - List? episodesList = []; - for (var episodeNumber = 0; episodeNumber < maxLength; episodeNumber++) { - List langs = []; - List> players = []; - for (var playerListt in playersList) { - for (var player in playerListt["players"]) { - if (player.length > episodeNumber) { - langs.add(playerListt["lang"]); - players.add( - {"lang": playerListt["lang"], "player": player[episodeNumber]}); - } - } - } - - MChapter episode = MChapter(); - episode.name = movie == null ? 'Episode ${episodeNumber + 1}' : 'Film'; - episode.scanlator = langs.toSet().toList().join(', ').toUpperCase(); - episode.url = json.encode(players); - episodesList.add(episode); - } - - MManga anime = MManga(); - anime.chapters = - movie == null ? episodesList.reversed.toList() : [episodesList[movie]]; - return anime; - } - - @override - Future> getVideoList(String url) async { - final players = json.decode(url); - List videos = []; - for (var player in players) { - String lang = (player["lang"] as String).toUpperCase(); - String playerUrl = player["player"]; - List a = []; - if (playerUrl.contains("sendvid")) { - a = await sendVidExtractor(playerUrl, null, lang); - } else if (playerUrl.contains("anime-sama.fr")) { - MVideo video = MVideo(); - video - ..url = playerUrl - ..originalUrl = playerUrl - ..quality = "${lang} - AS Player"; - a = [video]; - } else if (playerUrl.contains("sibnet.ru")) { - a = await sibnetExtractor(playerUrl, lang); - } - videos.addAll(a); - } - - return sortVideos(videos, source.id); - } - - @override - List getFilterList() { - return [ - GroupFilter("TypeFilter", "Type", [ - CheckBoxFilter("Anime", "Anime"), - CheckBoxFilter("Film", "Film"), - CheckBoxFilter("Autres", "Autres"), - ]), - GroupFilter("LanguageFilter", "Langue", [ - CheckBoxFilter("VF", "VF"), - CheckBoxFilter("VOSTFR", "VOSTFR"), - ]), - GroupFilter("GenreFilter", "Genre", [ - TriStateFilter("Action", "Action"), - TriStateFilter("Aventure", "Aventure"), - TriStateFilter("Combats", "Combats"), - TriStateFilter("Comédie", "Comédie"), - TriStateFilter("Drame", "Drame"), - TriStateFilter("Ecchi", "Ecchi"), - TriStateFilter("École", "School-Life"), - TriStateFilter("Fantaisie", "Fantasy"), - TriStateFilter("Horreur", "Horreur"), - TriStateFilter("Isekai", "Isekai"), - TriStateFilter("Josei", "Josei"), - TriStateFilter("Mystère", "Mystère"), - TriStateFilter("Psychologique", "Psychologique"), - TriStateFilter("Quotidien", "Slice-of-Life"), - TriStateFilter("Romance", "Romance"), - TriStateFilter("Seinen", "Seinen"), - TriStateFilter("Shônen", "Shônen"), - TriStateFilter("Shôjo", "Shôjo"), - TriStateFilter("Sports", "Sports"), - TriStateFilter("Surnaturel", "Surnaturel"), - TriStateFilter("Tournois", "Tournois"), - TriStateFilter("Yaoi", "Yaoi"), - TriStateFilter("Yuri", "Yuri"), - ]), - ]; - } - - @override - List getSourcePreferences() { - return [ - ListPreference( - key: "preferred_quality", - title: "Qualité préférée", - summary: "", - valueIndex: 0, - entries: ["1080p", "720p", "480p", "360p"], - entryValues: ["1080", "720", "480", "360"]), - ListPreference( - key: "voices_preference", - title: "Préférence des voix", - summary: "", - valueIndex: 0, - entries: ["Préférer VOSTFR", "Préférer VF"], - entryValues: ["vostfr", "vf"]), - ]; - } - - Future> fetchAnimeSeasons(String url) async { - final res = (await client.get(Uri.parse(url))).body; - - var document = parseHtml(res); - String animeName = document.getElementById("titreOeuvre")?.text ?? ""; - - var seasonRegex = - RegExp("^\\s*panneauAnime\\(\"(.*)\", \"(.*)\"\\)", multiLine: true); - var scripts = document - .select("h2 + p + div > script, h2 + div > script") - .map((MElement element) => element.text) - .toList() - .join(""); - List animeList = []; - - List seasonRegexReg = seasonRegex.allMatches(scripts).toList(); - for (var animeIndex = 0; animeIndex < seasonRegexReg.length; animeIndex++) { - final seasonName = seasonRegexReg[animeIndex].group(1); - final seasonStem = seasonRegexReg[animeIndex].group(2); - if (seasonStem.toLowerCase().contains("film")) { - var moviesUrl = "$url/$seasonStem"; - var movies = await fetchPlayers(moviesUrl); - if (movies.isNotEmpty) { - var movieNameRegex = - RegExp("^\\s*newSPF\\(\"(.*)\"\\);", multiLine: true); - var moviesDoc = (await client.get(Uri.parse(moviesUrl))).body; - List matches = - movieNameRegex.allMatches(moviesDoc).toList(); - - for (var i = 0; i < movies.length; i++) { - var title = ""; - if (animeIndex == 0 && movies.length == 1) { - title = animeName; - } else if (matches.length > i) { - title = "$animeName ${(matches[i]).group(1)}"; - } else if (movies.length == 1) { - title = "$animeName Film"; - } else { - title = "$animeName Film ${i + 1}"; - } - MManga anime = MManga(); - anime.imageUrl = document.getElementById("coverOeuvre")?.getSrc; - anime.genre = (document.xpathFirst( - '//h2[contains(text(),"Genres")]/following-sibling::a/text()') ?? - "") - .split(","); - anime.description = document.xpathFirst( - '//h2[contains(text(),"Synopsis")]/following-sibling::p/text()') ?? - ""; - - anime.name = title; - anime.link = "$moviesUrl#$i"; - anime.status = MStatus.completed; - animeList.add(anime); - } - } - } else { - MManga anime = MManga(); - anime.imageUrl = document.getElementById("coverOeuvre")?.getSrc; - anime.genre = (document.xpathFirst( - '//h2[contains(text(),"Genres")]/following-sibling::a/text()') ?? - "") - .split(","); - anime.description = document.xpathFirst( - '//h2[contains(text(),"Synopsis")]/following-sibling::p/text()') ?? - ""; - anime.name = - '$animeName ${substringBefore(seasonName, ',').replaceAll('"', "")}'; - anime.link = "$url/$seasonStem"; - animeList.add(anime); - } - } - return animeList; - } - - Future>> fetchPlayers(String url) async { - var docUrl = "$url/episodes.js"; - List> players = []; - var response = (await client.get(Uri.parse(docUrl))).body; - - if (response == "error") { - return []; - } - - var sanitizedDoc = sanitizeEpisodesJs(response); - for (var i = 1; i <= 8; i++) { - final numPlayers = getPlayers("eps$i", sanitizedDoc); - - if (numPlayers != null) players.add(numPlayers); - } - - final asPlayers = getPlayers("epsAS", sanitizedDoc); - if (asPlayers != null) players.add(asPlayers); - - if (players.isEmpty) return []; - List> finalPlayers = []; - for (var i = 0; i <= players[0].length; i++) { - for (var playerList in players) { - if (playerList.length > i) { - finalPlayers.add(playerList); - } - } - } - return finalPlayers.toSet().toList(); - } - - List? getPlayers(String playerName, String doc) { - var playerRegex = RegExp('$playerName\\s*=\\s*(\\[.*?\\])', dotAll: true); - var match = playerRegex.firstMatch(doc); - if (match == null) return null; - final regex = RegExp(r"""https?://[^\s\',\[\]]+"""); - final matches = regex.allMatches(match.group(1)); - List urls = []; - for (var match in matches.toList()) { - urls.add((match as RegExpMatch).group(0).toString()); - } - return urls; - } - - String sanitizeEpisodesJs(String doc) { - return doc.replaceAll( - RegExp(r'(?<=\[|\,)\s*\"\s*(https?://[^\s\"]+)\s*\"\s*(?=\,|\])'), ''); - } - - List> chunked(List list, int size) { - List> chunks = []; - for (int i = 0; i < list.length; i += size) { - int end = list.length; - if (i + size < list.length) { - end = i + size; - } - chunks.add(list.sublist(i, end)); - } - return chunks; - } - - List sortVideos(List videos, int sourceId) { - String quality = getPreferenceValue(sourceId, "preferred_quality"); - String voice = getPreferenceValue(sourceId, "voices_preference"); - - videos.sort((MVideo a, MVideo b) { - int qualityMatchA = 0; - if (a.quality.contains(quality) && - a.quality.toLowerCase().contains(voice)) { - qualityMatchA = 1; - } - int qualityMatchB = 0; - if (b.quality.contains(quality) && - b.quality.toLowerCase().contains(voice)) { - qualityMatchB = 1; - } - if (qualityMatchA != qualityMatchB) { - return qualityMatchB - qualityMatchA; - } - - final regex = RegExp(r'(\d+)p'); - final matchA = regex.firstMatch(a.quality); - final matchB = regex.firstMatch(b.quality); - final int qualityNumA = int.tryParse(matchA?.group(1) ?? '0') ?? 0; - final int qualityNumB = int.tryParse(matchB?.group(1) ?? '0') ?? 0; - return qualityNumB - qualityNumA; - }); - return videos; - } -} - -AnimeSama main(MSource source) { - return AnimeSama(source: source); -} diff --git a/dart/anime/src/fr/animesama/icon.png b/dart/anime/src/fr/animesama/icon.png deleted file mode 100644 index cca54e14..00000000 Binary files a/dart/anime/src/fr/animesama/icon.png and /dev/null differ diff --git a/dart/anime/src/fr/animesama/source.dart b/dart/anime/src/fr/animesama/source.dart deleted file mode 100644 index 842ec8f9..00000000 --- a/dart/anime/src/fr/animesama/source.dart +++ /dev/null @@ -1,16 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get animesamaSource => _animesama; -const animesamaVersion = "0.0.25"; -const animesamaCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/fr/animesama/animesama.dart"; -Source _animesama = Source( - name: "Anime-Sama", - baseUrl: "https://anime-sama.fr", - lang: "fr", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/fr/animesama/icon.png", - sourceCodeUrl: animesamaCodeUrl, - version: animesamaVersion, - isManga: false); diff --git a/dart/anime/src/fr/animesultra/animesultra.dart b/dart/anime/src/fr/animesultra/animesultra.dart deleted file mode 100644 index 87447491..00000000 --- a/dart/anime/src/fr/animesultra/animesultra.dart +++ /dev/null @@ -1,158 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class AnimesUltra extends MProvider { - AnimesUltra({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - Future getPopular(int page) async { - final res = (await client.get(Uri.parse(source.baseUrl))).body; - - List animeList = []; - final urls = xpath(res, - '//*[contains(@class,"swiper-slide item-qtip")]/div[@class="item"]/a/@href'); - final names = xpath(res, - '//*[contains(@class,"swiper-slide item-qtip")]/div[@class="item"]/a/img/@title'); - final images = xpath(res, - '//*[contains(@class,"swiper-slide item-qtip")]/div[@class="item"]/a/img/@data-src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - - return MPages(animeList, false); - } - - @override - Future getLatestUpdates(int page) async { - final res = (await client.get(Uri.parse(source.baseUrl))).body; - - List animeList = []; - final urls = xpath(res, - '//*[@class="block_area block_area_home"]/div[@class="tab-content"]/div[contains(@class,"block_area-content block_area-list")]/div[@class="film_list-wrap"]/div[@class="flw-item"]/div[@class="film-poster"]/a/@href'); - final names = xpath(res, - '//*[@class="block_area block_area_home"]/div[@class="tab-content"]/div[contains(@class,"block_area-content block_area-list")]/div[@class="film_list-wrap"]/div[@class="flw-item"]/div[@class="film-poster"]/a/@title'); - final images = xpath(res, - '//*[@class="block_area block_area_home"]/div[@class="tab-content"]/div[contains(@class,"block_area-content block_area-list")]/div[@class="film_list-wrap"]/div[@class="flw-item"]/div[@class="film-poster"]/img/@data-src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - - return MPages(animeList, false); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final res = (await client.get(Uri.parse(source.baseUrl))).body; - - List animeList = []; - final urls = xpath(res, '//*[@class="film-poster"]/a/@href'); - final names = xpath(res, '//*[@class="film-poster"]/a/@title'); - final images = xpath(res, '//*[@class="film-poster"]/img/@data-src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - - return MPages(animeList, false); - } - - @override - Future getDetail(String url) async { - final statusList = [ - {"En cours": 0, "Terminé": 1} - ]; - - final res = (await client.get(Uri.parse(url))).body; - MManga anime = MManga(); - anime.description = - xpath(res, '//*[@class="film-description m-hide"]/text()').first; - - final status = xpath(res, - '//*[@class="item item-title" and contains(text(),"Status:")]/span[2]/text()') - .first; - anime.status = parseStatus(status, statusList); - anime.genre = xpath(res, - '//*[@class="item item-list" and contains(text(),"Genres:")]/a/text()'); - anime.author = xpath(res, - '//*[@class="item item-title" and contains(text(),"Studio:")]/span[2]/text()') - .first; - final urlEp = url.replaceAll('.html', '/episode-1.html'); - final resEpWebview = - await getHtmlViaWebview(urlEp, '//*[@class="ss-list"]/a/@href'); - final epUrls = - xpath(resEpWebview, '//*[@class="ss-list"]/a/@href').reversed.toList(); - final names = xpath(resEpWebview, - '//*[@class="ss-list"]/a/div[@class="ssli-detail"]/div/text()') - .reversed - .toList(); - - List? episodesList = []; - for (var i = 0; i < names.length; i++) { - MChapter episode = MChapter(); - episode.name = names[i]; - episode.url = epUrls[i]; - episodesList.add(episode); - } - - anime.chapters = episodesList; - return anime; - } - - @override - Future> getVideoList(String url) async { - final resWebview = await getHtmlViaWebview( - url, '//*[@class="ps__-list"]/div/@data-server-id'); - - final serverIds = - xpath(resWebview, '//*[@class="ps__-list"]/div/@data-server-id'); - final serverNames = - xpath(resWebview, '//*[@class="ps__-list"]/div/a/text()'); - List serverUrls = []; - for (var id in serverIds) { - final serversUrls = - xpath(resWebview, '//*[@id="content_player_${id}"]/text()').first; - serverUrls.add(serversUrls); - } - List videos = []; - for (var i = 0; i < serverNames.length; i++) { - final name = serverNames[i]; - final url = serverUrls[i]; - - List a = []; - if (name.contains("Sendvid")) { - a = await sendVidExtractor(url.replaceAll("https:////", "https://"), - json.encode({"Referer": "${source.baseUrl}/"}), ""); - } else if (name.contains("Sibnet")) { - a = await sibnetExtractor( - "https://video.sibnet.ru/shell.php?videoid=$url"); - } else if (name.contains("Mytv")) { - a = await myTvExtractor("https://www.myvi.tv/embed/$url"); - } - videos.addAll(a); - } - - return videos; - } -} - -AnimesUltra main(MSource source) { - return AnimesUltra(source: source); -} diff --git a/dart/anime/src/fr/animesultra/icon.png b/dart/anime/src/fr/animesultra/icon.png deleted file mode 100644 index c2c07c2b..00000000 Binary files a/dart/anime/src/fr/animesultra/icon.png and /dev/null differ diff --git a/dart/anime/src/fr/animesultra/source.dart b/dart/anime/src/fr/animesultra/source.dart deleted file mode 100644 index bac175c7..00000000 --- a/dart/anime/src/fr/animesultra/source.dart +++ /dev/null @@ -1,17 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get animesultraSource => _animesultraSource; -const _animesultraVersion = "0.0.65"; -const _animesultraSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/fr/animesultra/animesultra.dart"; -Source _animesultraSource = Source( - name: "AnimesUltra", - baseUrl: "https://ww.animesultra.net", - lang: "fr", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/fr/animesultra/icon.png", - sourceCodeUrl: _animesultraSourceCodeUrl, - version: _animesultraVersion, - isManga: false, - isFullData: false); diff --git a/dart/anime/src/fr/franime/franime.dart b/dart/anime/src/fr/franime/franime.dart deleted file mode 100644 index 5c34b620..00000000 --- a/dart/anime/src/fr/franime/franime.dart +++ /dev/null @@ -1,342 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class FrAnime extends MProvider { - FrAnime({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - Future getPopular(int page) async { - final res = await dataBase(); - - return animeResList(res); - } - - @override - Future getLatestUpdates(int page) async { - final res = await dataBase(); - - List list = json.decode(res); - return animeResList(json.encode(list.reversed.toList())); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final res = await dataBase(); - - return animeSeachFetch(res, query); - } - - @override - Future getDetail(String url) async { - MManga anime = MManga(); - String language = "vo".toString(); - if (url.contains("lang=")) { - language = substringBefore(substringAfter(url, "lang="), "&"); - } - String stem = substringBefore(substringAfterLast(url, "/"), "?"); - final res = await dataBase(); - - final animeByTitleOJson = databaseAnimeByTitleO(res, stem); - final seasons = json.decode(animeByTitleOJson)["saisons"]; - - var seasonsJson = seasons.first; - - if (url.contains("s=")) { - int seasonNumber = - int.parse(substringBefore(substringAfter(url, "s="), "&")); - seasonsJson = seasons[seasonNumber - 1]; - } - - List? episodesList = []; - - final episodes = seasonsJson["episodes"]; - - for (int i = 0; i < episodes.length; i++) { - final ep = episodes[i]; - - final lang = ep["lang"]; - - final vo = lang["vo"]; - final vf = lang["vf"]; - bool hasVostfr = vo["lecteurs"].isNotEmpty; - bool hasVf = vf["lecteurs"].isNotEmpty; - bool playerIsNotEmpty = false; - - if (language == "vo" && hasVostfr) { - playerIsNotEmpty = true; - } else if (language == "vf" && hasVf) { - playerIsNotEmpty = true; - } - if (playerIsNotEmpty) { - MChapter episode = MChapter(); - episode.url = "$url&ep=${i + 1}"; - String title = ep["title"]; - episode.name = title.replaceAll('"', ""); - episodesList.add(episode); - } - } - - anime.chapters = episodesList.reversed.toList(); - return anime; - } - - @override - Future> getVideoList(String url) async { - String language = "vo"; - String videoBaseUrl = "https://api.franime.fr/api/anime"; - if (url.contains("lang=")) { - language = substringBefore(substringAfter(url, "lang="), "&"); - } - String stem = substringBefore(substringAfterLast(url, "/"), "?"); - final res = await dataBase(); - - final animeByTitleOJson = databaseAnimeByTitleO(res, stem); - final animeId = json.decode(animeByTitleOJson)["id"]; - final seasons = json.decode(animeByTitleOJson)["saisons"]; - - var seasonsJson = seasons.first; - - videoBaseUrl += "/$animeId/"; - - if (url.contains("s=")) { - int seasonNumber = - int.parse(substringBefore(substringAfter(url, "s="), "&")); - videoBaseUrl += "${seasonNumber - 1}/"; - seasonsJson = seasons[seasonNumber - 1]; - } else { - videoBaseUrl += "0/"; - } - final episodesJson = seasonsJson["episodes"]; - var episode = episodesJson.first; - if (url.contains("ep=")) { - int episodeNumber = int.parse(substringAfter(url, "ep=")); - episode = episodesJson[episodeNumber - 1]; - videoBaseUrl += "${episodeNumber - 1}"; - } else { - videoBaseUrl += "0"; - } - final lang = episode["lang"]; - - final vo = lang["vo"]; - final vf = lang["vf"]; - bool hasVostfr = vo["lecteurs"].isNotEmpty; - bool hasVf = vf["lecteurs"].isNotEmpty; - List vostfrPlayers = vo["lecteurs"]; - List vfPlayers = vf["lecteurs"]; - List players = []; - if (language == "vo" && hasVostfr) { - players = vostfrPlayers; - } else if (language == "vf" && hasVf) { - players = vfPlayers; - } - - List videos = []; - for (var i = 0; i < players.length; i++) { - String apiUrl = "$videoBaseUrl/$language/$i"; - String playerName = players[i]; - - MVideo video = MVideo(); - - final playerUrl = (await client.get(Uri.parse(apiUrl), - headers: {"Referer": "https://franime.fr/"})) - .body; - - List a = []; - if (playerName.contains("vido")) { - videos.add(video - ..url = playerUrl - ..originalUrl = playerUrl - ..quality = "FRAnime (Vido)"); - } else if (playerName.contains("sendvid")) { - a = await sendVidExtractor( - playerUrl, json.encode({"Referer": "https://franime.fr/"}), ""); - } else if (playerName.contains("sibnet")) { - a = await sibnetExtractor(playerUrl); - } - videos.addAll(a); - } - - return videos; - } - - MPages animeResList(String res) { - final statusList = [ - {"EN COURS": 0, "TERMINÉ": 1} - ]; - List animeList = []; - - var jsonResList = json.decode(res); - - for (var animeJson in jsonResList) { - final seasons = animeJson["saisons"]; - List vostfrListName = []; - List vfListName = []; - for (var season in seasons) { - for (var episode in season["episodes"]) { - final lang = episode["lang"]; - final vo = lang["vo"]; - final vf = lang["vf"]; - vostfrListName.add(vo["lecteurs"].isNotEmpty); - vfListName.add(vf["lecteurs"].isNotEmpty); - } - } - - String titleO = animeJson["titleO"]; - final title = animeJson["title"]; - final genre = animeJson["themes"]; - final description = animeJson["description"]; - final status = parseStatus(animeJson["status"], statusList); - final imageUrl = animeJson["affiche"]; - bool hasVostfr = vostfrListName.contains(true); - bool hasVf = vfListName.contains(true); - if (hasVostfr || hasVf) { - for (int i = 0; i < seasons.length; i++) { - MManga anime = MManga(); - int ind = i + 1; - anime.genre = genre; - anime.description = description; - String seasonTitle = "".toString(); - String lang = ""; - if (title.isEmpty) { - seasonTitle = titleO; - } else { - seasonTitle = title; - } - if (seasons.length > 1) { - seasonTitle += " S$ind"; - } - if (hasVf) { - seasonTitle += " VF"; - lang = "vf".toString(); - } - if (hasVostfr) { - seasonTitle += " VOSTFR"; - lang = "vo".toString(); - } - - anime.status = status; - anime.name = seasonTitle; - anime.imageUrl = imageUrl; - anime.link = - "/anime/${titleO.replaceAll(RegExp("[^A-Za-z0-9 ]"), "").replaceAll(" ", "-").toLowerCase()}?lang=$lang&s=$ind"; - - animeList.add(anime); - } - } - } - return MPages(animeList, true); - } - - MPages animeSeachFetch(String res, String query) { - final statusList = [ - {"EN COURS": 0, "TERMINÉ": 1} - ]; - List animeList = []; - final jsonResList = json.decode(res); - for (var animeJson in jsonResList) { - MManga anime = MManga(); - - final titleO = getMapValue(json.encode(animeJson), "titleO"); - final titleAlt = - getMapValue(json.encode(animeJson), "titles", encode: true); - final containsEn = getMapValue(titleAlt, "en") - .toString() - .toLowerCase() - .contains(query.toLowerCase()); - final containsEnJp = getMapValue(titleAlt, "en_jp") - .toString() - .toLowerCase() - .contains(query.toLowerCase()); - final containsJaJp = getMapValue(titleAlt, "ja_jp") - .toString() - .toLowerCase() - .contains(query.toLowerCase()); - final containsTitleO = titleO.toLowerCase().contains(query.toLowerCase()); - - if (containsEn || containsEnJp || containsJaJp || containsTitleO) { - final seasons = animeJson["saisons"]; - List vostfrListName = []; - List vfListName = []; - for (var season in seasons) { - for (var episode in season["episodes"]) { - final lang = episode["lang"]; - final vo = lang["vo"]; - final vf = lang["vf"]; - vostfrListName.add(vo["lecteurs"].isNotEmpty); - vfListName.add(vf["lecteurs"].isNotEmpty); - } - } - String titleO = animeJson["titleO"]; - final title = animeJson["title"]; - final genre = animeJson["themes"]; - final description = animeJson["description"]; - final status = parseStatus(animeJson["status"], statusList); - final imageUrl = animeJson["affiche"]; - - bool hasVostfr = vostfrListName.contains(true); - bool hasVf = vfListName.contains(true); - if (hasVostfr || hasVf) { - for (int i = 0; i < seasons.length; i++) { - MManga anime = MManga(); - int ind = i + 1; - anime.genre = genre; - anime.description = description; - String seasonTitle = "".toString(); - String lang = ""; - if (title.isEmpty) { - seasonTitle = titleO; - } else { - seasonTitle = title; - } - if (seasons.length > 1) { - seasonTitle += " S$ind"; - } - if (hasVf) { - seasonTitle += " VF"; - lang = "vf".toString(); - } - if (hasVostfr) { - seasonTitle += " VOSTFR"; - lang = "vo".toString(); - } - - anime.status = status; - anime.name = seasonTitle; - anime.imageUrl = imageUrl; - anime.link = - "/anime/${titleO.replaceAll(RegExp("[^A-Za-z0-9 ]"), "").replaceAll(" ", "-").toLowerCase()}?lang=$lang&s=$ind"; - - animeList.add(anime); - } - } - } - } - return MPages(animeList, true); - } - - Future dataBase() async { - return (await client.get(Uri.parse("https://api.franime.fr/api/animes/"), - headers: {"Referer": "https://franime.fr/"})) - .body; - } - - String databaseAnimeByTitleO(String res, String titleO) { - final datas = json.decode(res) as List>; - for (var data in datas) { - String title = - (data["titleO"] as String).replaceAll(RegExp("[^A-Za-z0-9 ]"), ""); - if (title.replaceAll(" ", "-").toLowerCase() == "${titleO}") { - return json.encode(data); - } - } - return ""; - } -} - -FrAnime main(MSource source) { - return FrAnime(source: source); -} diff --git a/dart/anime/src/fr/franime/icon.png b/dart/anime/src/fr/franime/icon.png deleted file mode 100644 index 07bd99ba..00000000 Binary files a/dart/anime/src/fr/franime/icon.png and /dev/null differ diff --git a/dart/anime/src/fr/franime/source.dart b/dart/anime/src/fr/franime/source.dart deleted file mode 100644 index 7d3e5fcb..00000000 --- a/dart/anime/src/fr/franime/source.dart +++ /dev/null @@ -1,18 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get franimeSource => _franimeSource; -const _franimeVersion = "0.0.7"; -const _franimeSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/fr/franime/franime.dart"; -Source _franimeSource = Source( - name: "FrAnime", - baseUrl: "https://franime.fr", - apiUrl: "https://api.franime.fr", - lang: "fr", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/fr/franime/icon.png", - sourceCodeUrl: _franimeSourceCodeUrl, - version: _franimeVersion, - isManga: false, - isFullData: true); diff --git a/dart/anime/src/fr/otakufr/icon.png b/dart/anime/src/fr/otakufr/icon.png deleted file mode 100644 index aa0e42fc..00000000 Binary files a/dart/anime/src/fr/otakufr/icon.png and /dev/null differ diff --git a/dart/anime/src/fr/otakufr/otakufr.dart b/dart/anime/src/fr/otakufr/otakufr.dart deleted file mode 100644 index baed8147..00000000 --- a/dart/anime/src/fr/otakufr/otakufr.dart +++ /dev/null @@ -1,442 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class OtakuFr extends MProvider { - OtakuFr({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - Future getPopular(int page) async { - final res = - (await client.get(Uri.parse("${source.baseUrl}/en-cours/page/$page"))) - .body; - List animeList = []; - final urls = - xpath(res, '//*[@class="list"]/article/div/div/figure/a/@href'); - final names = - xpath(res, '//*[@class="list"]/article/div/div/figure/a/img/@title'); - final images = - xpath(res, '//*[@class="list"]/article/div/div/figure/a/img/@src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - final nextPage = xpath(res, '//a[@class="next page-link"]/@href'); - return MPages(animeList, nextPage.isNotEmpty); - } - - @override - Future getLatestUpdates(int page) async { - final res = - (await client.get(Uri.parse("${source.baseUrl}/page/$page/"))).body; - - List animeList = []; - final urls = xpath(res, '//*[@class="episode"]/div/a/@href'); - final namess = xpath(res, '//*[@class="episode"]/div/a/text()'); - List names = []; - for (var name in namess) { - names.add(regExp( - name, - r'(?<=\bS\d\s*|)\d{2}\s*(?=\b(Vostfr|vostfr|VF|Vf|vf|\(VF\)|\(vf\)|\(Vf\)|\(Vostfr\)\b))?', - '', - 0, - 0) - .replaceAll(' vostfr', '') - .replaceAll(' Vostfr', '') - .replaceAll(' VF', '') - .replaceAll(' Vf', '') - .replaceAll(' vf', '') - .replaceAll(' (VF)', '') - .replaceAll(' (vf)', '') - .replaceAll(' (vf)', '') - .replaceAll(' (Vf)', '') - .replaceAll(' (Vostfr)', '')); - } - final images = xpath(res, '//*[@class="episode"]/div/figure/a/img/@src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - final nextPage = xpath(res, '//a[@class="next page-link"]/@href'); - return MPages(animeList, nextPage.isNotEmpty); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final filters = filterList.filters; - String url = ""; - if (query.isNotEmpty) { - url = "${source.baseUrl}/toute-la-liste-affiches/page/$page/?q=$query"; - } else { - for (var filter in filters) { - if (filter.type == "GenreFilter") { - if (filter.state != 0) { - url = - "${source.baseUrl}/${filter.values[filter.state].value}page/$page"; - } - } else if (filter.type == "SubPageFilter") { - if (url.isEmpty) { - if (filter.state != 0) { - url = - "${source.baseUrl}/${filter.values[filter.state].value}page/$page"; - } - } - } - } - } - - final res = (await client.get(Uri.parse(url))).body; - - List animeList = []; - final urls = - xpath(res, '//*[@class="list"]/article/div/div/figure/a/@href'); - final names = - xpath(res, '//*[@class="list"]/article/div/div/figure/a/img/@title'); - final images = - xpath(res, '//*[@class="list"]/article/div/div/figure/a/img/@src'); - - for (var i = 0; i < names.length; i++) { - MManga anime = MManga(); - anime.name = names[i]; - anime.imageUrl = images[i]; - anime.link = urls[i]; - animeList.add(anime); - } - final nextPage = xpath(res, '//a[@class="next page-link"]/@href'); - return MPages(animeList, nextPage.isNotEmpty); - } - - @override - Future getDetail(String url) async { - final statusList = [ - {"En cours": 0, "Terminé": 1} - ]; - String res = (await client.get(Uri.parse(url))).body; - MManga anime = MManga(); - final originalUrl = xpath(res, - '//*[@class="breadcrumb"]/li[@class="breadcrumb-item"][2]/a/@href'); - if (originalUrl.isNotEmpty) { - res = (await client.get(Uri.parse(originalUrl.first))).body; - } - final description = - xpath(res, '//*[@class="episode fz-sm synop"]/p/text()'); - if (description.isNotEmpty) { - anime.description = description.first.replaceAll("Synopsis:", ""); - } - final status = xpath(res, - '//*[@class="list-unstyled"]/li[contains(text(),"Statut")]/text()'); - if (status.isNotEmpty) { - anime.status = - parseStatus(status.first.replaceAll("Statut: ", ""), statusList); - } - - anime.genre = xpath(res, - '//*[@class="list-unstyled"]/li[contains(text(),"Genre")]/ul/li/a/text()'); - - final epUrls = xpath(res, '//*[@class="list-episodes list-group"]/a/@href'); - final dates = - xpath(res, '//*[@class="list-episodes list-group"]/a/span/text()'); - final names = xpath(res, '//*[@class="list-episodes list-group"]/a/text()'); - List episodes = []; - - for (var i = 0; i < names.length; i++) { - final date = dates[i]; - final name = names[i]; - episodes.add( - "Episode ${regExp(name.replaceAll(date, ""), r".* (\d*) [VvfF]{1,1}", '', 1, 1)}"); - } - final dateUploads = parseDates(dates, "dd MMMM yyyy", "fr"); - - List? episodesList = []; - for (var i = 0; i < episodes.length; i++) { - MChapter episode = MChapter(); - episode.name = episodes[i]; - episode.url = epUrls[i]; - episode.dateUpload = dateUploads[i]; - episodesList.add(episode); - } - - anime.chapters = episodesList; - return anime; - } - - @override - Future> getVideoList(String url) async { - final res = (await client.get(Uri.parse(url))).body; - - final servers = xpath(res, '//*[@id="nav-tabContent"]/div/iframe/@src'); - List videos = []; - final hosterSelection = preferenceHosterSelection(source.id); - for (var url in servers) { - final resServer = (await client.get(Uri.parse(fixUrl(url)), - headers: {"X-Requested-With": "XMLHttpRequest"})) - .body; - final serverUrl = - fixUrl(regExp(resServer, r"data-url='([^']+)'", '', 1, 1)); - List a = []; - if (serverUrl.contains("https://streamwish") && - hosterSelection.contains("Streamwish")) { - a = await streamWishExtractor(serverUrl, "StreamWish"); - } else if (serverUrl.contains("sibnet") && - hosterSelection.contains("Sibnet")) { - a = await sibnetExtractor(serverUrl); - } else if (serverUrl.contains("https://doo") && - hosterSelection.contains("Doodstream")) { - a = await doodExtractor(serverUrl); - } else if (serverUrl.contains("https://voe.sx") && - hosterSelection.contains("Voe")) { - a = await voeExtractor(serverUrl, null); - } else if (serverUrl.contains("https://ok.ru") && - hosterSelection.contains("Okru")) { - a = await okruExtractor(serverUrl); - } else if (serverUrl.contains("vadbam") && - hosterSelection.contains("Vidbm")) { - a = await vidbmExtractor(serverUrl); - } else if (serverUrl.contains("upstream") && - hosterSelection.contains("Upstream")) { - a = await upstreamExtractor(serverUrl); - } else if (serverUrl.contains("sendvid") && - hosterSelection.contains("Sendvid")) { - a = await sendVidExtractor(serverUrl, null, ""); - } - videos.addAll(a); - } - - return videos; - } - - String fixUrl(String url) { - return regExp(url, r"^(?:(?:https?:)?//|www\.)", 'https://', 0, 0); - } - - @override - List getFilterList() { - return [ - HeaderFilter("La recherche de texte ignore les filtres"), - SelectFilter("GenreFilter", "Genre", 0, [ - SelectFilterOption("", ""), - SelectFilterOption("Action", "/genre/action/"), - SelectFilterOption("Aventure", "/genre/aventure/"), - SelectFilterOption("Comedie", "/genre/comedie/"), - SelectFilterOption("Crime", "/genre/crime/"), - SelectFilterOption("Démons", "/genre/demons/"), - SelectFilterOption("Drame", "/genre/drame/"), - SelectFilterOption("Ecchi", "/genre/ecchi/"), - SelectFilterOption("Espace", "/genre/espace/"), - SelectFilterOption("Fantastique", "/genre/fantastique/"), - SelectFilterOption("Gore", "/genre/gore/"), - SelectFilterOption("Harem", "/genre/harem/"), - SelectFilterOption("Historique", "/genre/historique/"), - SelectFilterOption("Horreur", "/genre/horreur/"), - SelectFilterOption("Isekai", "/genre/isekai/"), - SelectFilterOption("Jeux", "/genre/jeu/"), - SelectFilterOption("L'école", "/genre/lecole/"), - SelectFilterOption("Magical girls", "/genre/magical-girls/"), - SelectFilterOption("Magie", "/genre/magie/"), - SelectFilterOption("Martial Arts", "/genre/martial-arts/"), - SelectFilterOption("Mecha", "/genre/mecha/"), - SelectFilterOption("Militaire", "/genre/militaire/"), - SelectFilterOption("Musique", "/genre/musique/"), - SelectFilterOption("Mysterieux", "/genre/mysterieux/"), - SelectFilterOption("Parodie", "/genre/Parodie/"), - SelectFilterOption("Police", "/genre/police/"), - SelectFilterOption("Psychologique", "/genre/psychologique/"), - SelectFilterOption("Romance", "/genre/romance/"), - SelectFilterOption("Samurai", "/genre/samurai/"), - SelectFilterOption("Sci-Fi", "/genre/sci-fi/"), - SelectFilterOption("Seinen", "/genre/seinen/"), - SelectFilterOption("Shoujo", "/genre/shoujo/"), - SelectFilterOption("Shoujo Ai", "/genre/shoujo-ai/"), - SelectFilterOption("Shounen", "/genre/shounen/"), - SelectFilterOption("Shounen Ai", "/genre/shounen-ai/"), - SelectFilterOption("Sport", "/genre/sport/"), - SelectFilterOption("Super Power", "/genre/super-power/"), - SelectFilterOption("Surnaturel", "/genre/surnaturel/"), - SelectFilterOption("Suspense", "/genre/suspense/"), - SelectFilterOption("Thriller", "/genre/thriller/"), - SelectFilterOption("Tranche de vie", "/genre/tranche-de-vie/"), - SelectFilterOption("Vampire", "/genre/vampire/") - ]), - SelectFilter("SubPageFilter", "Sous page", 0, [ - SelectFilterOption("", ""), - SelectFilterOption("Terminé", "/termine/"), - SelectFilterOption("Film", "/film/"), - ]) - ]; - } - - @override - List getSourcePreferences() { - return [ - ListPreference( - key: "preferred_quality", - title: "Qualité préférée", - summary: "", - valueIndex: 1, - entries: ["1080p", "720p", "480p", "360p"], - entryValues: ["1080", "720", "480", "360"]), - MultiSelectListPreference( - key: "hoster_selection", - title: "Enable/Disable Hosts", - summary: "", - entries: [ - "Streamwish", - "Doodstream", - "Sendvid", - "Vidbm", - "Okru", - "Voe", - "Sibnet", - "Upstream" - ], - entryValues: [ - "Streamwish", - "Doodstream", - "Sendvid", - "Vidbm", - "Okru", - "Voe", - "Sibnet", - "Upstream" - ], - values: [ - "Streamwish", - "Doodstream", - "Sendvid", - "Vidbm", - "Okru", - "Voe", - "Sibnet", - "Upstream" - ]), - ]; - } - - List sortVideos(List videos, int sourceId) { - String quality = getPreferenceValue(sourceId, "preferred_quality"); - - videos.sort((MVideo a, MVideo b) { - int qualityMatchA = 0; - if (a.quality.contains(quality)) { - qualityMatchA = 1; - } - int qualityMatchB = 0; - if (b.quality.contains(quality)) { - qualityMatchB = 1; - } - if (qualityMatchA != qualityMatchB) { - return qualityMatchB - qualityMatchA; - } - - final regex = RegExp(r'(\d+)p'); - final matchA = regex.firstMatch(a.quality); - final matchB = regex.firstMatch(b.quality); - final int qualityNumA = int.tryParse(matchA?.group(1) ?? '0') ?? 0; - final int qualityNumB = int.tryParse(matchB?.group(1) ?? '0') ?? 0; - return qualityNumB - qualityNumA; - }); - - return videos; - } - - List preferenceHosterSelection(int sourceId) { - return getPreferenceValue(sourceId, "hoster_selection"); - } - - Future> upstreamExtractor(String url) async { - final res = (await client.get(Uri.parse(url))).body; - final js = xpath(res, '//script[contains(text(), "m3u8")]/text()'); - if (js.isEmpty) { - return []; - } - final masterUrl = - substringBefore(substringAfter(unpackJs(js.first), "{file:\""), "\"}"); - final masterPlaylistRes = (await client.get(Uri.parse(masterUrl))).body; - List videos = []; - for (var it in substringAfter(masterPlaylistRes, "#EXT-X-STREAM-INF:") - .split("#EXT-X-STREAM-INF:")) { - final quality = - "${substringBefore(substringBefore(substringAfter(substringAfter(it, "RESOLUTION="), "x"), ","), "\n")}p"; - - String videoUrl = substringBefore(substringAfter(it, "\n"), "\n"); - - if (!videoUrl.startsWith("http")) { - videoUrl = - "${masterUrl.split("/").sublist(0, masterUrl.split("/").length - 1).join("/")}/$videoUrl"; - } - - MVideo video = MVideo(); - video - ..url = videoUrl - ..originalUrl = videoUrl - ..quality = "Upstream - $quality"; - videos.add(video); - } - return videos; - } - - Future> vidbmExtractor(String url) async { - final res = (await client.get(Uri.parse(url))).body; - final js = xpath(res, - '//script[contains(text(), "m3u8") or contains(text(), "mp4")]/text()'); - if (js.isEmpty) { - return []; - } - final masterUrl = substringBefore(substringAfter(js.first, "source"), "\""); - final quality = substringBefore( - substringAfter( - substringBefore( - substringAfter(substringAfter(js.first, "source"), "file"), - "]"), - "label:\""), - "\""); - List videos = []; - if (masterUrl.contains("m3u8")) { - final masterPlaylistRes = (await client.get(Uri.parse(masterUrl))).body; - - for (var it in substringAfter(masterPlaylistRes, "#EXT-X-STREAM-INF:") - .split("#EXT-X-STREAM-INF:")) { - final quality = - "${substringBefore(substringBefore(substringAfter(substringAfter(it, "RESOLUTION="), "x"), ","), "\n")}p"; - - String videoUrl = substringBefore(substringAfter(it, "\n"), "\n"); - - if (!videoUrl.startsWith("http")) { - videoUrl = - "${masterUrl.split("/").sublist(0, masterUrl.split("/").length - 1).join("/")}/$videoUrl"; - } - - MVideo video = MVideo(); - video - ..url = videoUrl - ..originalUrl = videoUrl - ..quality = "Vidbm - $quality"; - videos.add(video); - } - return videos; - } else { - MVideo video = MVideo(); - video - ..url = masterUrl - ..originalUrl = masterUrl - ..quality = "Vidbm - $quality"; - videos.add(video); - } - return videos; - } -} - -OtakuFr main(MSource source) { - return OtakuFr(source: source); -} diff --git a/dart/anime/src/fr/otakufr/source.dart b/dart/anime/src/fr/otakufr/source.dart deleted file mode 100644 index 4037336f..00000000 --- a/dart/anime/src/fr/otakufr/source.dart +++ /dev/null @@ -1,17 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get otakufr => _otakufr; -const otakufrVersion = "0.0.8"; -const otakufrCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/fr/otakufr/otakufr.dart"; -Source _otakufr = Source( - name: "OtakuFr", - baseUrl: "https://otakufr.co", - lang: "fr", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/fr/otakufr/icon.png", - sourceCodeUrl: otakufrCodeUrl, - version: otakufrVersion, - isManga: false, - isFullData: false); diff --git a/dart/anime/src/hi/yomovies/icon.png b/dart/anime/src/hi/yomovies/icon.png deleted file mode 100644 index 6afd2b3f..00000000 Binary files a/dart/anime/src/hi/yomovies/icon.png and /dev/null differ diff --git a/dart/anime/src/hi/yomovies/source.dart b/dart/anime/src/hi/yomovies/source.dart deleted file mode 100644 index db8a160c..00000000 --- a/dart/anime/src/hi/yomovies/source.dart +++ /dev/null @@ -1,16 +0,0 @@ -import '../../../../../model/source.dart'; - -Source get yomoviesSource => _yomoviesSource; -const _yomoviesVersion = "0.0.2"; -const _yomoviesSourceCodeUrl = - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/hi/yomovies/yomovies.dart"; -Source _yomoviesSource = Source( - name: "YoMovies", - baseUrl: "https://yomovies.boo", - lang: "hi", - typeSource: "single", - iconUrl: - "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/hi/yomovies/icon.png", - sourceCodeUrl: _yomoviesSourceCodeUrl, - version: _yomoviesVersion, - isManga: false); diff --git a/dart/anime/src/hi/yomovies/yomovies.dart b/dart/anime/src/hi/yomovies/yomovies.dart deleted file mode 100644 index fe1299f5..00000000 --- a/dart/anime/src/hi/yomovies/yomovies.dart +++ /dev/null @@ -1,340 +0,0 @@ -import 'package:mangayomi/bridge_lib.dart'; -import 'dart:convert'; - -class YoMovies extends MProvider { - YoMovies({required this.source}); - - MSource source; - - final Client client = Client(source); - - @override - String get baseUrl => getPreferenceValue(source.id, "overrideBaseUrl"); - - @override - bool get supportsLatest => false; - - @override - Future getPopular(int page) async { - String pageNu = page == 1 ? "" : "page/$page/"; - - final res = - (await client.get(Uri.parse("$baseUrl/most-favorites/$pageNu"))).body; - final document = parseHtml(res); - return animeFromElement( - document.select("div.movies-list > div.ml-item"), - document.selectFirst("ul.pagination > li.active + li")?.getHref != - null); - } - - @override - Future getLatestUpdates(int page) async { - return MPages([], false); - } - - @override - Future search(String query, int page, FilterList filterList) async { - final filters = filterList.filters; - String url = ""; - String pageNu = page == 1 ? "" : "/page/$page"; - if (query.isNotEmpty) { - url = "$baseUrl$pageNu/?s=$query"; - } else { - for (var filter in filters) { - if (filter.type.isNotEmpty) { - final first = filter.values[filter.state].value; - if (first.isNotEmpty) { - url = first; - } - } - } - url = "$baseUrl$url$pageNu"; - } - final res = (await client.get(Uri.parse(url))).body; - final document = parseHtml(res); - return animeFromElement( - document.select("div.movies-list > div.ml-item"), - document.selectFirst("ul.pagination > li.active + li")?.getHref != - null); - } - - @override - Future getDetail(String url) async { - url = getUrlWithoutDomain(url); - - final res = (await client.get(Uri.parse("$baseUrl$url"))).body; - final document = parseHtml(res); - MManga anime = MManga(); - var infoElement = document.selectFirst("div.mvi-content"); - anime.description = infoElement.selectFirst("p.f-desc")?.text ?? ""; - - anime.genre = xpath(res, - '//div[@class="mvici-left" and contains(text(),"Genre:")]/p/a/text()'); - - List episodeList = []; - final seasonListElements = document.select("div#seasons > div.tvseason"); - if (seasonListElements.isEmpty) { - MChapter ep = MChapter(); - ep.name = "Movie"; - ep.url = url; - episodeList.add(ep); - } else { - for (var season in seasonListElements) { - var seasonText = season.selectFirst("div.les-title").text.trim(); - for (var episode in season.select("div.les-content > a")) { - var epNumber = substringAfter(episode.text.trim(), "pisode "); - MChapter ep = MChapter(); - ep.name = "$seasonText Ep. $epNumber"; - ep.url = episode.getHref; - - episodeList.add(ep); - } - } - } - - anime.chapters = episodeList.reversed.toList(); - return anime; - } - - @override - Future> getVideoList(String url) async { - url = getUrlWithoutDomain(url); - final res = (await client.get(Uri.parse("$baseUrl$url"))).body; - final document = parseHtml(res); - final serverElements = document.select("div.movieplay > iframe"); - List videos = []; - for (var serverElement in serverElements) { - var url = serverElement.getSrc; - List a = []; - if (url.contains("minoplres")) { - a = await minoplresExtractor(url); - } - videos.addAll(a); - } - return sortVideos(videos, source.id); - } - - @override - List getSourcePreferences() { - return [ - EditTextPreference( - key: "overrideBaseUrl", - title: "Override BaseUrl", - summary: "", - value: "https://yomovies.boo", - dialogTitle: "Override BaseUrl", - dialogMessage: "", - text: "https://yomovies.boo"), - ListPreference( - key: "preferred_quality", - title: "Preferred quality", - summary: "", - valueIndex: 0, - entries: ["1080p", "720p", "480p", "360p"], - entryValues: ["1080", "720", "480", "360"]) - ]; - } - - Future> minoplresExtractor(String url) async { - List videos = []; - - final res = - (await client.get(Uri.parse(url), headers: {"Referer": url})).body; - final script = xpath(res, '//script[contains(text(),"sources:")]/text()'); - if (script.isEmpty) return []; - final masterUrl = - substringBefore(substringAfter(script.first, "file:\""), '"'); - final masterPlaylistRes = (await client.get(Uri.parse(masterUrl))).body; - for (var it in substringAfter(masterPlaylistRes, "#EXT-X-STREAM-INF:") - .split("#EXT-X-STREAM-INF:")) { - final quality = - "${substringBefore(substringBefore(substringAfter(substringAfter(it, "RESOLUTION="), "x"), ","), "\n")}p"; - - String videoUrl = substringBefore(substringAfter(it, "\n"), "\n"); - - MVideo video = MVideo(); - video - ..url = videoUrl - ..originalUrl = videoUrl - ..quality = "Minoplres - $quality"; - videos.add(video); - } - return videos; - } - - MPages animeFromElement(List elements, bool hasNextPage) { - List animeList = []; - for (var element in elements) { - MManga anime = MManga(); - anime.name = element.selectFirst("div.qtip-title").text; - anime.imageUrl = - element.selectFirst("img[data-original]")?.attr("data-original") ?? - ""; - anime.link = element.selectFirst("a[href]").getHref; - animeList.add(anime); - } - return MPages(animeList, hasNextPage); - } - - List sortVideos(List videos, int sourceId) { - String quality = getPreferenceValue(sourceId, "preferred_quality"); - - videos.sort((MVideo a, MVideo b) { - int qualityMatchA = 0; - if (a.quality.contains(quality)) { - qualityMatchA = 1; - } - int qualityMatchB = 0; - if (b.quality.contains(quality)) { - qualityMatchB = 1; - } - if (qualityMatchA != qualityMatchB) { - return qualityMatchB - qualityMatchA; - } - - final regex = RegExp(r'(\d+)p'); - final matchA = regex.firstMatch(a.quality); - final matchB = regex.firstMatch(b.quality); - final int qualityNumA = int.tryParse(matchA?.group(1) ?? '0') ?? 0; - final int qualityNumB = int.tryParse(matchB?.group(1) ?? '0') ?? 0; - return qualityNumB - qualityNumA; - }); - - return videos; - } - - @override - List getFilterList() { - return [ - HeaderFilter( - "Note: Only one selection at a time works, and it ignores text search"), - SeparatorFilter(), - SelectFilter("BollywoodFilter", "Bollywood", 0, [ - SelectFilterOption("", ""), - SelectFilterOption("Dual Audio", "/genre/dual-audio"), - SelectFilterOption("Hollywood Dubbed", - "/account/?ptype=post&tax_category%5B%5D=dual-audio&wpas=1"), - SelectFilterOption("South Dubbed", - "/account/?ptype=post&tax_category%5B%5D=dual-audio&tax_category%5B%5D=south-special&wpas=1"), - ]), - SelectFilter("HollywoodFilter", "Hollywood", 0, [ - SelectFilterOption("", ""), - SelectFilterOption("English Series", "/series"), - ]), - SelectFilter("HindiSeriesFilter", "English Series", 0, [ - SelectFilterOption("", ""), - SelectFilterOption("Action", "/genre/action"), - SelectFilterOption("Adventure", "/genre/adventure"), - SelectFilterOption("Animation", "/genre/animation"), - SelectFilterOption("Biography", "/genre/biography"), - SelectFilterOption("Comedy", "/genre/comedy"), - SelectFilterOption("Crime", "/genre/crime"), - SelectFilterOption("Drama", "/genre/drama"), - SelectFilterOption("Music", "/genre/music"), - SelectFilterOption("Mystery", "/genre/mystery"), - SelectFilterOption("Family", "/genre/family"), - SelectFilterOption("Fantasy", "/genre/fantasy"), - SelectFilterOption("Horror", "/genre/horror"), - SelectFilterOption("History", "/genre/history"), - SelectFilterOption("Romance", "/genre/romantic"), - SelectFilterOption("Science Fiction", "/genre/science-fiction"), - SelectFilterOption("Thriller", "/genre/thriller"), - SelectFilterOption("War", "/genre/war"), - ]), - SelectFilter("ExtraMoviesFilter", "ExtraMovies", 0, [ - SelectFilterOption("", ""), - SelectFilterOption("Erotic", "/genre/erotic-movies"), - ]), - SelectFilter("HotSeriesFilter", "Hot Series", 0, [ - SelectFilterOption("", ""), - SelectFilterOption("2023", "2023"), - SelectFilterOption("2022", "2022"), - SelectFilterOption("2021", "2021"), - SelectFilterOption("2020", "2020"), - SelectFilterOption("2019", "2019"), - SelectFilterOption("2018", "2018"), - SelectFilterOption("2017", "2017"), - SelectFilterOption("2016", "2016"), - SelectFilterOption("2011-2015", "2011-2015"), - SelectFilterOption("2006-2010", "2006-2010"), - SelectFilterOption("2001-2005", "2001-2005"), - SelectFilterOption("1991-2000", "1991-2000"), - SelectFilterOption("1900-1990", "1900-1990"), - ]), - SelectFilter("GenreFilter", "Zhanri", 0, [ - SelectFilterOption("