mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 10:51:17 +00:00
Update
This commit is contained in:
@@ -171,13 +171,13 @@ getVideoList(MangaModel anime) async {
|
|||||||
List<VideoModel> a = [];
|
List<VideoModel> a = [];
|
||||||
if (name.contains("Vidstreaming")) {
|
if (name.contains("Vidstreaming")) {
|
||||||
a = await MBridge.rapidCloudExtractor(url, "Vidstreaming - $subDub");
|
a = await MBridge.rapidCloudExtractor(url, "Vidstreaming - $subDub");
|
||||||
|
videos.addAll(a);
|
||||||
} else if (name.contains("Vidcloud")) {
|
} else if (name.contains("Vidcloud")) {
|
||||||
a = await MBridge.rapidCloudExtractor(url, "Vidcloud - $subDub");
|
a = await MBridge.rapidCloudExtractor(url, "Vidcloud - $subDub");
|
||||||
|
videos.addAll(a);
|
||||||
} else if (name.contains("StreamTape")) {
|
} else if (name.contains("StreamTape")) {
|
||||||
a = await MBridge.streamTapeExtractor(url, "StreamTape - $subDub");
|
a = await MBridge.streamTapeExtractor(url, "StreamTape - $subDub");
|
||||||
}
|
videos.addAll(a);
|
||||||
for (var vi in a) {
|
|
||||||
videos.add(vi);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import '../../../../model/source.dart';
|
import '../../../../model/source.dart';
|
||||||
import '../../../../utils/utils.dart';
|
import '../../../../utils/utils.dart';
|
||||||
|
|
||||||
const aniwatchVersion = "0.0.2";
|
const aniwatchVersion = "0.0.21";
|
||||||
const aniwatchSourceCodeUrl =
|
const aniwatchSourceCodeUrl =
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/anime/src/en/aniwatch/aniwatch-v$aniwatchVersion.dart";
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/anime/src/en/aniwatch/aniwatch-v$aniwatchVersion.dart";
|
||||||
|
|
||||||
|
|||||||
@@ -1,387 +0,0 @@
|
|||||||
import 'dart:convert';
|
|
||||||
import 'package:bridge_lib/bridge_lib.dart';
|
|
||||||
|
|
||||||
Future<String> dataBase(int sourceId) async {
|
|
||||||
final data = {
|
|
||||||
"url": "https://api.franime.fr/api/animes/",
|
|
||||||
"headers": {"Referer": "https://franime.fr/"}
|
|
||||||
};
|
|
||||||
final res = await MBridge.http('GET', json.encode(data));
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
getPopularAnime(MangaModel anime) async {
|
|
||||||
final data = {
|
|
||||||
"url": "https://api.franime.fr/api/animes/",
|
|
||||||
"headers": {"Referer": "https://franime.fr/"}
|
|
||||||
};
|
|
||||||
final res = await MBridge.http('GET', json.encode(data));
|
|
||||||
if (res.isEmpty) {
|
|
||||||
return anime;
|
|
||||||
}
|
|
||||||
List<MangaModel> animeList = animeResList(res);
|
|
||||||
|
|
||||||
return animeList;
|
|
||||||
}
|
|
||||||
|
|
||||||
List<MangaModel> animeResList(String res) {
|
|
||||||
final statusList = [
|
|
||||||
{"EN COURS": 0, "TERMINÉ": 1}
|
|
||||||
];
|
|
||||||
List<MangaModel> animeList = [];
|
|
||||||
|
|
||||||
final jsonResList = json.decode(res);
|
|
||||||
|
|
||||||
for (var animeJson in jsonResList) {
|
|
||||||
MangaModel anime = MangaModel();
|
|
||||||
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);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
final titleO = animeJson["titleO"];
|
|
||||||
final title = animeJson["title"];
|
|
||||||
final genre = animeJson["themes"];
|
|
||||||
final description = animeJson["description"];
|
|
||||||
final status = MBridge.parseStatus(animeJson["status"], statusList);
|
|
||||||
final imageUrl = animeJson["affiche"];
|
|
||||||
|
|
||||||
if (vostfrListName.contains(true)) {
|
|
||||||
for (int i = 0; i < seasons.length; i++) {
|
|
||||||
int ind = i + 1;
|
|
||||||
anime.genre = genre;
|
|
||||||
anime.description = description;
|
|
||||||
String seasonTitle = title.isEmpty ? titleO : title;
|
|
||||||
if (seasons.length > 1) {
|
|
||||||
seasonTitle += " S$ind";
|
|
||||||
}
|
|
||||||
if (vostfrListName.contains(true)) {
|
|
||||||
seasonTitle += " VOSTFR";
|
|
||||||
}
|
|
||||||
anime.status = status;
|
|
||||||
anime.name = seasonTitle;
|
|
||||||
anime.imageUrl = imageUrl;
|
|
||||||
anime.link =
|
|
||||||
"/anime/${MBridge.regExp(titleO, "[^A-Za-z0-9 ]", "", 0, 0).replaceAll(" ", "-").toLowerCase()}?lang=vo&s=$ind";
|
|
||||||
ind++;
|
|
||||||
}
|
|
||||||
} else if (vfListName.contains(true)) {
|
|
||||||
for (int i = 0; i < seasons.length; i++) {
|
|
||||||
int ind = i + 1;
|
|
||||||
anime.genre = genre;
|
|
||||||
anime.description = description;
|
|
||||||
String seasonTitle = title.isEmpty ? titleO : title;
|
|
||||||
if (seasons.length > 1) {
|
|
||||||
seasonTitle += " S$ind";
|
|
||||||
}
|
|
||||||
if (vfListName.contains(true)) {
|
|
||||||
seasonTitle += " VF";
|
|
||||||
}
|
|
||||||
anime.status = status;
|
|
||||||
anime.name = seasonTitle;
|
|
||||||
anime.imageUrl = imageUrl;
|
|
||||||
anime.link =
|
|
||||||
"/anime/${MBridge.regExp(titleO, "[^A-Za-z0-9 ]", "", 0, 0).replaceAll(" ", "-").toLowerCase()}?lang=vo&s=$ind";
|
|
||||||
ind++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
animeList.add(anime);
|
|
||||||
}
|
|
||||||
return animeList;
|
|
||||||
}
|
|
||||||
|
|
||||||
String databaseAnimeByTitleO(String res, String titleO) {
|
|
||||||
final datas = MBridge.jsonDecodeToList(res, 1);
|
|
||||||
for (var data in datas) {
|
|
||||||
if (MBridge.regExp(
|
|
||||||
MBridge.getMapValue(data, "titleO"), "[^A-Za-z0-9 ]", "", 0, 0)
|
|
||||||
.replaceAll(" ", "-")
|
|
||||||
.toLowerCase() ==
|
|
||||||
"${titleO}") {
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
|
|
||||||
getAnimeDetail(MangaModel anime) async {
|
|
||||||
String language = "vo".toString();
|
|
||||||
if (anime.link.contains("lang=")) {
|
|
||||||
language = MBridge.substringBefore(
|
|
||||||
MBridge.substringAfter(anime.link, "lang="), "&");
|
|
||||||
}
|
|
||||||
String stem =
|
|
||||||
MBridge.substringBefore(MBridge.substringAfterLast(anime.link, "/"), "?");
|
|
||||||
final res = await dataBase(anime.sourceId);
|
|
||||||
if (res.isEmpty) {
|
|
||||||
return anime;
|
|
||||||
}
|
|
||||||
final animeByTitleOJson = databaseAnimeByTitleO(res, stem);
|
|
||||||
if (animeByTitleOJson.isEmpty) {
|
|
||||||
return anime;
|
|
||||||
}
|
|
||||||
final seasons = json.decode(animeByTitleOJson)["saisons"];
|
|
||||||
|
|
||||||
var seasonsJson = seasons.first;
|
|
||||||
|
|
||||||
if (anime.link.contains("s=")) {
|
|
||||||
int seasonNumber = MBridge.intParse(
|
|
||||||
MBridge.substringBefore(MBridge.substringAfter(anime.link, "s="), "&"));
|
|
||||||
seasonsJson = seasons[seasonNumber - 1];
|
|
||||||
}
|
|
||||||
|
|
||||||
final episodes = seasonsJson["episodes"];
|
|
||||||
|
|
||||||
List<String> episodesNames = [];
|
|
||||||
List<String> episodesUrls = [];
|
|
||||||
for (int i = 0; i < episodes.length; i++) {
|
|
||||||
final episode = episodes[i];
|
|
||||||
|
|
||||||
final lang = episode["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) {
|
|
||||||
episodesUrls.add("${anime.link}&ep=${i + 1}");
|
|
||||||
String title = episode["title"];
|
|
||||||
episodesNames.add(title.replaceAll('"', ""));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
anime.urls = episodesUrls.reversed.toList();
|
|
||||||
anime.names = episodesNames.reversed.toList();
|
|
||||||
anime.chaptersDateUploads = [];
|
|
||||||
return anime;
|
|
||||||
}
|
|
||||||
|
|
||||||
getLatestUpdatesAnime(MangaModel anime) async {
|
|
||||||
final res = await dataBase(anime.sourceId);
|
|
||||||
|
|
||||||
if (res.isEmpty) {
|
|
||||||
return anime;
|
|
||||||
}
|
|
||||||
List list = json.decode(res);
|
|
||||||
List reversedList = list.reversed.toList();
|
|
||||||
List<MangaModel> animeList = animeResList(json.encode(reversedList));
|
|
||||||
|
|
||||||
return animeList;
|
|
||||||
}
|
|
||||||
|
|
||||||
searchAnime(MangaModel anime) async {
|
|
||||||
final res = await dataBase(anime.sourceId);
|
|
||||||
|
|
||||||
if (res.isEmpty) {
|
|
||||||
return anime;
|
|
||||||
}
|
|
||||||
List<MangaModel> animeList = animeSeachFetch(res, anime.query);
|
|
||||||
return animeList;
|
|
||||||
}
|
|
||||||
|
|
||||||
List<MangaModel> animeSeachFetch(String res, query) {
|
|
||||||
final statusList = [
|
|
||||||
{"EN COURS": 0, "TERMINÉ": 1}
|
|
||||||
];
|
|
||||||
List<MangaModel> animeList = [];
|
|
||||||
final jsonResList = json.decode(res);
|
|
||||||
for (var animeJson in jsonResList) {
|
|
||||||
MangaModel anime = MangaModel();
|
|
||||||
|
|
||||||
final titleO = MBridge.getMapValue(json.encode(animeJson), "titleO");
|
|
||||||
final titleAlt =
|
|
||||||
MBridge.getMapValue(json.encode(animeJson), "titles", encode: true);
|
|
||||||
final enContains = MBridge.getMapValue(titleAlt, "en")
|
|
||||||
.toString()
|
|
||||||
.toLowerCase()
|
|
||||||
.contains(query);
|
|
||||||
final enJpContains = MBridge.getMapValue(titleAlt, "en_jp")
|
|
||||||
.toString()
|
|
||||||
.toLowerCase()
|
|
||||||
.contains(query);
|
|
||||||
final jaJpContains = MBridge.getMapValue(titleAlt, "ja_jp")
|
|
||||||
.toString()
|
|
||||||
.toLowerCase()
|
|
||||||
.contains(query);
|
|
||||||
final titleOContains = titleO.toLowerCase().contains(query);
|
|
||||||
bool contains = false;
|
|
||||||
if (enContains) {
|
|
||||||
contains = true;
|
|
||||||
}
|
|
||||||
if (enJpContains) {
|
|
||||||
contains = true;
|
|
||||||
}
|
|
||||||
if (jaJpContains) {
|
|
||||||
contains = true;
|
|
||||||
}
|
|
||||||
if (titleOContains) {
|
|
||||||
contains = true;
|
|
||||||
}
|
|
||||||
if (contains) {
|
|
||||||
final seasons = animeJson["saisons"];
|
|
||||||
List hasVostfr = [];
|
|
||||||
List hasVf = [];
|
|
||||||
for (var season in seasons) {
|
|
||||||
for (var episode in season["episodes"]) {
|
|
||||||
final lang = episode["lang"];
|
|
||||||
final vo = lang["vo"];
|
|
||||||
final vf = lang["vf"];
|
|
||||||
hasVostfr.add(vo["lecteurs"].isNotEmpty);
|
|
||||||
hasVf.add(vf["lecteurs"].isNotEmpty);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
final titleO = animeJson["titleO"];
|
|
||||||
final title = animeJson["title"];
|
|
||||||
final genre = animeJson["themes"];
|
|
||||||
final description = animeJson["description"];
|
|
||||||
final status = MBridge.parseStatus(animeJson["status"], statusList);
|
|
||||||
final imageUrl = animeJson["affiche"];
|
|
||||||
|
|
||||||
if (hasVostfr.contains(true)) {
|
|
||||||
for (int i = 0; i < seasons.length; i++) {
|
|
||||||
int ind = i + 1;
|
|
||||||
anime.genre = genre;
|
|
||||||
anime.description = description;
|
|
||||||
String seasonTitle = title.isEmpty ? titleO : title;
|
|
||||||
if (seasons.length > 1) {
|
|
||||||
seasonTitle += " S$ind";
|
|
||||||
}
|
|
||||||
if (hasVostfr.contains(true)) {
|
|
||||||
seasonTitle += " VOSTFR";
|
|
||||||
}
|
|
||||||
anime.status = status;
|
|
||||||
anime.name = seasonTitle;
|
|
||||||
anime.imageUrl = imageUrl;
|
|
||||||
anime.link =
|
|
||||||
"/anime/${MBridge.regExp(titleO, "[^A-Za-z0-9 ]", "", 0, 0).replaceAll(" ", "-").toLowerCase()}?lang=vo&s=$ind";
|
|
||||||
ind++;
|
|
||||||
}
|
|
||||||
} else if (hasVf.contains(true)) {
|
|
||||||
for (int i = 0; i < seasons.length; i++) {
|
|
||||||
int ind = i + 1;
|
|
||||||
anime.genre = genre;
|
|
||||||
anime.description = description;
|
|
||||||
String seasonTitle = title.isEmpty ? titleO : title;
|
|
||||||
if (seasons.length > 1) {
|
|
||||||
seasonTitle += " S$ind";
|
|
||||||
}
|
|
||||||
if (hasVf.contains(true)) {
|
|
||||||
seasonTitle += " VF";
|
|
||||||
}
|
|
||||||
anime.status = status;
|
|
||||||
anime.name = seasonTitle;
|
|
||||||
anime.imageUrl = imageUrl;
|
|
||||||
anime.link =
|
|
||||||
"/anime/${MBridge.regExp(titleO, "[^A-Za-z0-9 ]", "", 0, 0).replaceAll(" ", "-").toLowerCase()}?lang=vo&s=$ind";
|
|
||||||
ind++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
animeList.add(anime);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return animeList;
|
|
||||||
}
|
|
||||||
|
|
||||||
getVideoList(MangaModel anime) async {
|
|
||||||
String language = "vo".toString();
|
|
||||||
String videoBaseUrl = "https://api.franime.fr/api/anime".toString();
|
|
||||||
if (anime.link.contains("lang=")) {
|
|
||||||
language = MBridge.substringBefore(
|
|
||||||
MBridge.substringAfter(anime.link, "lang="), "&");
|
|
||||||
print(language);
|
|
||||||
}
|
|
||||||
String stem =
|
|
||||||
MBridge.substringBefore(MBridge.substringAfterLast(anime.link, "/"), "?");
|
|
||||||
final res = await dataBase(anime.sourceId);
|
|
||||||
if (res.isEmpty) {
|
|
||||||
return anime;
|
|
||||||
}
|
|
||||||
final animeByTitleOJson = databaseAnimeByTitleO(res, stem);
|
|
||||||
if (animeByTitleOJson.isEmpty) {
|
|
||||||
return anime;
|
|
||||||
}
|
|
||||||
final animeId = json.decode(animeByTitleOJson)["id"];
|
|
||||||
final seasons = json.decode(animeByTitleOJson)["saisons"];
|
|
||||||
|
|
||||||
var seasonsJson = seasons.first;
|
|
||||||
|
|
||||||
videoBaseUrl += "/$animeId/";
|
|
||||||
|
|
||||||
if (anime.link.contains("s=")) {
|
|
||||||
int seasonNumber = MBridge.intParse(
|
|
||||||
MBridge.substringBefore(MBridge.substringAfter(anime.link, "s="), "&"));
|
|
||||||
print(seasonNumber);
|
|
||||||
videoBaseUrl += "${seasonNumber - 1}/";
|
|
||||||
seasonsJson = seasons[seasonNumber - 1];
|
|
||||||
} else {
|
|
||||||
videoBaseUrl += "0/";
|
|
||||||
}
|
|
||||||
final episodesJson = seasonsJson["episodes"];
|
|
||||||
var episode = episodesJson.first;
|
|
||||||
if (anime.link.contains("ep=")) {
|
|
||||||
int episodeNumber =
|
|
||||||
MBridge.intParse(MBridge.substringAfter(anime.link, "ep="));
|
|
||||||
print(episodeNumber);
|
|
||||||
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;
|
|
||||||
final vostfrPlayers = vo["lecteurs"];
|
|
||||||
final vfPlayers = vf["lecteurs"];
|
|
||||||
var players = [];
|
|
||||||
if (language == "vo" && hasVostfr) {
|
|
||||||
players = vostfrPlayers;
|
|
||||||
} else if (language == "vf" && hasVf) {
|
|
||||||
players = vfPlayers;
|
|
||||||
}
|
|
||||||
List<VideoModel> videos = [];
|
|
||||||
for (int i = 0; i < players.length; i++) {
|
|
||||||
String apiUrl = "$videoBaseUrl/$language/$i";
|
|
||||||
String playerName = players[i];
|
|
||||||
final data = {
|
|
||||||
"url": apiUrl,
|
|
||||||
"headers": {"Referer": "https://franime.fr/"},
|
|
||||||
"sourceId": anime.sourceId
|
|
||||||
};
|
|
||||||
final playerUrl = await MBridge.http('GET', json.encode(data));
|
|
||||||
List<VideoModel> a = [];
|
|
||||||
if (playerName.contains("franime_myvi")) {
|
|
||||||
videos.add(
|
|
||||||
MBridge.toVideo(playerUrl, "FRAnime", playerUrl, null, null, null));
|
|
||||||
} else if (playerName.contains("myvi")) {
|
|
||||||
a = await MBridge.myTvExtractor(playerUrl);
|
|
||||||
} else if (playerName.contains("sendvid")) {
|
|
||||||
a = await MBridge.sendVidExtractor(
|
|
||||||
playerUrl, json.encode({"Referer": "https://franime.fr/"}), "");
|
|
||||||
} else if (playerName.contains("sibnet")) {
|
|
||||||
a = await MBridge.sibnetExtractor(playerUrl);
|
|
||||||
} else if (playerName.contains("sbfull")) {}
|
|
||||||
for (var vi in a) {
|
|
||||||
videos.add(vi);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return videos;
|
|
||||||
}
|
|
||||||
419
anime/src/fr/franime/franime-v0.0.21.dart
Normal file
419
anime/src/fr/franime/franime-v0.0.21.dart
Normal file
@@ -0,0 +1,419 @@
|
|||||||
|
import 'dart:convert';
|
||||||
|
import 'package:bridge_lib/bridge_lib.dart';
|
||||||
|
|
||||||
|
Future<String> dataBase(int sourceId) async {
|
||||||
|
final data = {
|
||||||
|
"url": "https://api.franime.fr/api/animes/",
|
||||||
|
"headers": {"Referer": "https://franime.fr/"},
|
||||||
|
"sourceId": sourceId
|
||||||
|
};
|
||||||
|
final res = await MBridge.http('GET', json.encode(data));
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
getPopularAnime(MangaModel anime) async {
|
||||||
|
final data = {
|
||||||
|
"url": "https://api.franime.fr/api/animes/",
|
||||||
|
"headers": {"Referer": "https://franime.fr/"},
|
||||||
|
"sourceId": anime.sourceId
|
||||||
|
};
|
||||||
|
final res = await MBridge.http('GET', json.encode(data));
|
||||||
|
if (res.isEmpty) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
List<MangaModel> animeList = animeResList(res);
|
||||||
|
|
||||||
|
return animeList;
|
||||||
|
}
|
||||||
|
|
||||||
|
List<MangaModel> animeResList(String res) {
|
||||||
|
final statusList = [
|
||||||
|
{"EN COURS": 0, "TERMINÉ": 1}
|
||||||
|
];
|
||||||
|
List<MangaModel> animeList = [];
|
||||||
|
final langs =
|
||||||
|
MBridge.jsonPathToList(res, r'$..saisons[*].episodes[*].lang', 1);
|
||||||
|
int index = 0;
|
||||||
|
List<String> jsonResList = MBridge.jsonDecodeToList(res, 1);
|
||||||
|
for (var animeJson in jsonResList) {
|
||||||
|
MangaModel anime = MangaModel();
|
||||||
|
List<String> seasons = MBridge.jsonDecodeToList(
|
||||||
|
MBridge.getMapValue(animeJson, "saisons", encode: true), 1);
|
||||||
|
final titleO = MBridge.getMapValue(animeJson, "titleO", 0);
|
||||||
|
final vo = MBridge.getMapValue(MBridge.listParse(langs, 0)[index], "vo",
|
||||||
|
encode: true);
|
||||||
|
final vf = MBridge.getMapValue(MBridge.listParse(langs, 0)[index], "vf",
|
||||||
|
encode: true);
|
||||||
|
final hasVostfr = MBridge.isEmptyOrIsNotEmpty(
|
||||||
|
MBridge.jsonDecodeToList(
|
||||||
|
MBridge.getMapValue(vo, "lecteurs", encode: true), 0),
|
||||||
|
1);
|
||||||
|
final hasVf = MBridge.isEmptyOrIsNotEmpty(
|
||||||
|
MBridge.jsonDecodeToList(
|
||||||
|
MBridge.getMapValue(vf, "lecteurs", encode: true), 0),
|
||||||
|
1);
|
||||||
|
String title = MBridge.getMapValue(animeJson, "title", 0);
|
||||||
|
final genre = MBridge.jsonDecodeToList(
|
||||||
|
MBridge.getMapValue(animeJson, "themes", encode: true), 0);
|
||||||
|
final description = MBridge.getMapValue(animeJson, "description", 0);
|
||||||
|
final status = MBridge.parseStatus(
|
||||||
|
MBridge.getMapValue(animeJson, "status", 0), statusList);
|
||||||
|
final imageUrl = MBridge.getMapValue(animeJson, "affiche", 0);
|
||||||
|
if (hasVostfr) {
|
||||||
|
for (int i = 0; i < seasons.length; i++) {
|
||||||
|
int ind = i + 1;
|
||||||
|
|
||||||
|
anime.genre = genre;
|
||||||
|
|
||||||
|
anime.description = description;
|
||||||
|
String seasonTitle = title;
|
||||||
|
if (seasons.length > 1) {
|
||||||
|
seasonTitle += " S$ind";
|
||||||
|
}
|
||||||
|
if (hasVostfr) {
|
||||||
|
seasonTitle += " VOSTFR";
|
||||||
|
}
|
||||||
|
anime.status = status;
|
||||||
|
anime.name = seasonTitle;
|
||||||
|
anime.imageUrl = imageUrl;
|
||||||
|
anime.link =
|
||||||
|
"/anime/${MBridge.regExp(titleO, "[^A-Za-z0-9 ]", "", 0, 0).replaceAll(" ", "-").toLowerCase()}?lang=vo&s=$ind";
|
||||||
|
ind++;
|
||||||
|
}
|
||||||
|
} else if (hasVf) {
|
||||||
|
for (int i = 0; i < seasons.length; i++) {
|
||||||
|
int ind = i + 1;
|
||||||
|
anime.genre = genre;
|
||||||
|
anime.description = description;
|
||||||
|
String seasonTitle = title;
|
||||||
|
if (seasons.length > 1) {
|
||||||
|
seasonTitle += " S$ind";
|
||||||
|
}
|
||||||
|
if (hasVf) {
|
||||||
|
seasonTitle += " VF";
|
||||||
|
}
|
||||||
|
anime.status = status;
|
||||||
|
anime.name = seasonTitle;
|
||||||
|
anime.imageUrl = imageUrl;
|
||||||
|
anime.link =
|
||||||
|
"/anime/${MBridge.regExp(titleO, "[^A-Za-z0-9 ]", "", 0, 0).replaceAll(" ", "-").toLowerCase()}?lang=vo&s=$ind";
|
||||||
|
ind++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
animeList.add(anime);
|
||||||
|
index++;
|
||||||
|
}
|
||||||
|
return animeList;
|
||||||
|
}
|
||||||
|
|
||||||
|
String databaseAnimeByTitleO(String res, String titleO) {
|
||||||
|
print(titleO);
|
||||||
|
List<String> datas = MBridge.jsonDecodeToList(res, 1);
|
||||||
|
for (var data in datas) {
|
||||||
|
if (MBridge.regExp(MBridge.getMapValue(data, "titleO", 0), "[^A-Za-z0-9 ]",
|
||||||
|
"", 0, 0)
|
||||||
|
.replaceAll(" ", "-")
|
||||||
|
.toLowerCase() ==
|
||||||
|
"${titleO}") {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
getAnimeDetail(MangaModel anime) async {
|
||||||
|
String language = "vo".toString();
|
||||||
|
if (anime.link.contains("lang=")) {
|
||||||
|
language = MBridge.listParse(
|
||||||
|
MBridge.listParse(anime.link.split("lang="), 2)[0].split("&"), 1)[0];
|
||||||
|
print(language);
|
||||||
|
}
|
||||||
|
String stem = MBridge.listParse(
|
||||||
|
MBridge.listParse(anime.link.split("/"), 2)[0].split("?"), 1)[0];
|
||||||
|
final res = await dataBase(anime.sourceId);
|
||||||
|
if (res.isEmpty) {
|
||||||
|
return anime;
|
||||||
|
}
|
||||||
|
final animeByTitleOJson = databaseAnimeByTitleO(res, stem);
|
||||||
|
if (animeByTitleOJson.isEmpty) {
|
||||||
|
return anime;
|
||||||
|
}
|
||||||
|
String seasonsJson =
|
||||||
|
MBridge.jsonPathToList(animeByTitleOJson, r'$..saisons', 1)[0];
|
||||||
|
List<String> seasons = MBridge.jsonDecodeToList(seasonsJson, 1);
|
||||||
|
|
||||||
|
if (anime.link.contains("s=")) {
|
||||||
|
int seasonNumber =
|
||||||
|
MBridge.intParse(MBridge.listParse(anime.link.split("s="), 2)[0]);
|
||||||
|
seasonsJson = MBridge.listParse(seasons, 0)[seasonNumber - 1];
|
||||||
|
} else {
|
||||||
|
seasonsJson = MBridge.listParse(seasons, 0)[0];
|
||||||
|
}
|
||||||
|
final episodesJson =
|
||||||
|
MBridge.jsonPathToList(seasonsJson, r'$..episodes', 1)[0];
|
||||||
|
List<String> episodes = MBridge.jsonDecodeToList(episodesJson, 1);
|
||||||
|
List<String> episodesNames = [];
|
||||||
|
List<String> episodesUrls = [];
|
||||||
|
for (int i = 0; i < episodes.length; i++) {
|
||||||
|
String episode = MBridge.listParse(episodes, 0)[i];
|
||||||
|
final lang = MBridge.getMapValue(episode, "lang", encode: true);
|
||||||
|
final vo = MBridge.getMapValue(lang, "vo", encode: true);
|
||||||
|
final vf = MBridge.getMapValue(lang, "vf", encode: true);
|
||||||
|
final hasVostfr = MBridge.isEmptyOrIsNotEmpty(
|
||||||
|
MBridge.jsonDecodeToList(
|
||||||
|
MBridge.getMapValue(vo, "lecteurs", encode: true), 0),
|
||||||
|
1);
|
||||||
|
final hasVf = MBridge.isEmptyOrIsNotEmpty(
|
||||||
|
MBridge.jsonDecodeToList(
|
||||||
|
MBridge.getMapValue(vf, "lecteurs", encode: true), 0),
|
||||||
|
1);
|
||||||
|
bool playerIsNotEmpty = false;
|
||||||
|
if (language == "vo" && hasVostfr) {
|
||||||
|
playerIsNotEmpty = true;
|
||||||
|
} else if (language == "vf" && hasVf) {
|
||||||
|
playerIsNotEmpty = true;
|
||||||
|
}
|
||||||
|
if (playerIsNotEmpty) {
|
||||||
|
episodesUrls.add("${anime.link}&ep=${i + 1}");
|
||||||
|
final title = MBridge.getMapValue(episode, "title", encode: true);
|
||||||
|
episodesNames.add(title.replaceAll('"', ""));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
anime.urls = MBridge.listParse(episodesUrls, 5);
|
||||||
|
anime.names = MBridge.listParse(episodesNames, 5);
|
||||||
|
anime.chaptersDateUploads = [];
|
||||||
|
return anime;
|
||||||
|
}
|
||||||
|
|
||||||
|
getLatestUpdatesAnime(MangaModel anime) async {
|
||||||
|
final res = await dataBase(anime.sourceId);
|
||||||
|
|
||||||
|
if (res.isEmpty) {
|
||||||
|
return anime;
|
||||||
|
}
|
||||||
|
List<String> reversed =
|
||||||
|
MBridge.listParse(MBridge.jsonDecodeToList(res, 1), 5);
|
||||||
|
String reversedJson = "".toString();
|
||||||
|
for (int i = 0; i < reversed.length; i++) {
|
||||||
|
final va = MBridge.listParse(reversed, 0)[i];
|
||||||
|
String vg = "".toString();
|
||||||
|
if (reversedJson.isNotEmpty) {
|
||||||
|
vg = ",".toString();
|
||||||
|
}
|
||||||
|
reversedJson += "$vg$va";
|
||||||
|
}
|
||||||
|
List<MangaModel> animeList = animeResList("[${reversedJson}]");
|
||||||
|
|
||||||
|
return animeList;
|
||||||
|
}
|
||||||
|
|
||||||
|
searchAnime(MangaModel anime) async {
|
||||||
|
final res = await dataBase(anime.sourceId);
|
||||||
|
|
||||||
|
if (res.isEmpty) {
|
||||||
|
return anime;
|
||||||
|
}
|
||||||
|
List<MangaModel> animeList = animeSeachFetch(res, anime.query);
|
||||||
|
return animeList;
|
||||||
|
}
|
||||||
|
|
||||||
|
List<MangaModel> animeSeachFetch(String res, query) {
|
||||||
|
final statusList = [
|
||||||
|
{"EN COURS": 0, "TERMINÉ": 1}
|
||||||
|
];
|
||||||
|
List<MangaModel> animeList = [];
|
||||||
|
final langs =
|
||||||
|
MBridge.jsonPathToList(res, r'$..saisons[*].episodes[*].lang', 1);
|
||||||
|
int index = 0;
|
||||||
|
List<String> jsonResList = MBridge.jsonDecodeToList(res, 1);
|
||||||
|
for (var animeJson in jsonResList) {
|
||||||
|
MangaModel anime = MangaModel();
|
||||||
|
|
||||||
|
final titleO = MBridge.getMapValue(animeJson, "titleO", 0);
|
||||||
|
|
||||||
|
final titleAlt = MBridge.getMapValue(animeJson, "titles", encode: true);
|
||||||
|
final enContains = MBridge.getMapValue(titleAlt, "en", 0)
|
||||||
|
.toString()
|
||||||
|
.toLowerCase()
|
||||||
|
.contains(query);
|
||||||
|
final enJpContains = MBridge.getMapValue(titleAlt, "en_jp", 0)
|
||||||
|
.toString()
|
||||||
|
.toLowerCase()
|
||||||
|
.contains(query);
|
||||||
|
final jaJpContains = MBridge.getMapValue(titleAlt, "ja_jp", 0)
|
||||||
|
.toString()
|
||||||
|
.toLowerCase()
|
||||||
|
.contains(query);
|
||||||
|
final titleOContains = titleO.toLowerCase().contains(query);
|
||||||
|
bool contains = false;
|
||||||
|
if (enContains) {
|
||||||
|
contains = true;
|
||||||
|
}
|
||||||
|
if (enJpContains) {
|
||||||
|
contains = true;
|
||||||
|
}
|
||||||
|
if (jaJpContains) {
|
||||||
|
contains = true;
|
||||||
|
}
|
||||||
|
if (titleOContains) {
|
||||||
|
contains = true;
|
||||||
|
}
|
||||||
|
if (contains) {
|
||||||
|
List<String> seasons = MBridge.jsonDecodeToList(
|
||||||
|
MBridge.getMapValue(animeJson, "saisons", encode: true), 1);
|
||||||
|
final vo =
|
||||||
|
MBridge.getMapValue(MBridge.listParse(langs, 0)[index], "vo", 1);
|
||||||
|
final vf =
|
||||||
|
MBridge.getMapValue(MBridge.listParse(langs, 0)[index], "vf", 1);
|
||||||
|
final hasVostfr = MBridge.isEmptyOrIsNotEmpty(
|
||||||
|
MBridge.jsonDecodeToList(
|
||||||
|
MBridge.getMapValue(vo, "lecteurs", encode: true), 0),
|
||||||
|
1);
|
||||||
|
final hasVf = MBridge.isEmptyOrIsNotEmpty(
|
||||||
|
MBridge.jsonDecodeToList(
|
||||||
|
MBridge.getMapValue(vf, "lecteurs", encode: true), 0),
|
||||||
|
1);
|
||||||
|
String title = MBridge.getMapValue(animeJson, "title", 0);
|
||||||
|
final genre = MBridge.jsonDecodeToList(
|
||||||
|
MBridge.getMapValue(animeJson, "themes", 1), 0);
|
||||||
|
final description = MBridge.getMapValue(animeJson, "description", 0);
|
||||||
|
final status = MBridge.parseStatus(
|
||||||
|
MBridge.getMapValue(animeJson, "status", 0), statusList);
|
||||||
|
final imageUrl = MBridge.getMapValue(animeJson, "affiche", 0);
|
||||||
|
if (hasVostfr) {
|
||||||
|
for (int i = 0; i < seasons.length; i++) {
|
||||||
|
int ind = i + 1;
|
||||||
|
|
||||||
|
anime.genre = genre;
|
||||||
|
anime.description = description;
|
||||||
|
String seasonTitle = title;
|
||||||
|
if (seasons.length > 1) {
|
||||||
|
seasonTitle += " S$ind";
|
||||||
|
}
|
||||||
|
if (hasVostfr) {
|
||||||
|
seasonTitle += " VOSTFR";
|
||||||
|
}
|
||||||
|
anime.status = status;
|
||||||
|
anime.name = seasonTitle;
|
||||||
|
anime.imageUrl = imageUrl;
|
||||||
|
anime.link =
|
||||||
|
"/anime/${MBridge.regExp(titleO, "[^A-Za-z0-9 ]", "", 0, 0).replaceAll(" ", "-").toLowerCase()}?lang=vo&s=$ind";
|
||||||
|
ind++;
|
||||||
|
}
|
||||||
|
} else if (hasVf) {
|
||||||
|
for (int i = 0; i < seasons.length; i++) {
|
||||||
|
int ind = i + 1;
|
||||||
|
anime.genre = genre;
|
||||||
|
anime.description = description;
|
||||||
|
String seasonTitle = title;
|
||||||
|
if (seasons.length > 1) {
|
||||||
|
seasonTitle += " S$ind";
|
||||||
|
}
|
||||||
|
if (hasVf) {
|
||||||
|
seasonTitle += " VF";
|
||||||
|
}
|
||||||
|
anime.status = status;
|
||||||
|
anime.name = seasonTitle;
|
||||||
|
anime.imageUrl = imageUrl;
|
||||||
|
anime.link =
|
||||||
|
"/anime/${MBridge.regExp(titleO, "[^A-Za-z0-9 ]", "", 0, 0).replaceAll(" ", "-").toLowerCase()}?lang=vf&s=$ind";
|
||||||
|
ind++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
animeList.add(anime);
|
||||||
|
}
|
||||||
|
|
||||||
|
index++;
|
||||||
|
}
|
||||||
|
return animeList;
|
||||||
|
}
|
||||||
|
|
||||||
|
getVideoList(MangaModel anime) async {
|
||||||
|
String language = "vo".toString();
|
||||||
|
String videoBaseUrl = "https://api.franime.fr/api/anime".toString();
|
||||||
|
if (anime.link.contains("lang=")) {
|
||||||
|
language = MBridge.listParse(
|
||||||
|
MBridge.listParse(anime.link.split("lang="), 2)[0].split("&"), 1)[0];
|
||||||
|
print(language);
|
||||||
|
}
|
||||||
|
String stem = MBridge.listParse(
|
||||||
|
MBridge.listParse(anime.link.split("/"), 2)[0].split("?"), 1)[0];
|
||||||
|
final res = await dataBase(anime.sourceId);
|
||||||
|
final animeByTitleOJson = databaseAnimeByTitleO(res, stem);
|
||||||
|
final animeId = MBridge.getMapValue(animeByTitleOJson, "id", 0);
|
||||||
|
videoBaseUrl += "/$animeId/";
|
||||||
|
|
||||||
|
String seasonsJson =
|
||||||
|
MBridge.jsonPathToList(animeByTitleOJson, r'$..saisons', 1)[0];
|
||||||
|
List<String> seasons = MBridge.jsonDecodeToList(seasonsJson, 1);
|
||||||
|
if (anime.link.contains("s=")) {
|
||||||
|
int seasonNumber = MBridge.intParse(MBridge.listParse(
|
||||||
|
MBridge.listParse(anime.link.split("s="), 2)[0].split("&"), 1)[0]);
|
||||||
|
print(seasonNumber);
|
||||||
|
videoBaseUrl += "${seasonNumber - 1}/";
|
||||||
|
seasonsJson = MBridge.listParse(seasons, 0)[seasonNumber - 1];
|
||||||
|
} else {
|
||||||
|
seasonsJson = MBridge.listParse(seasons, 0)[0];
|
||||||
|
videoBaseUrl += "0/";
|
||||||
|
}
|
||||||
|
final episodesJson =
|
||||||
|
MBridge.jsonPathToList(seasonsJson, r'$..episodes', 1)[0];
|
||||||
|
List<String> episodes = MBridge.jsonDecodeToList(episodesJson, 1);
|
||||||
|
String episode = "".toString();
|
||||||
|
if (anime.link.contains("ep=")) {
|
||||||
|
int episodeNumber =
|
||||||
|
MBridge.intParse(MBridge.listParse(anime.link.split("ep="), 2)[0]);
|
||||||
|
print(episodeNumber);
|
||||||
|
episode = MBridge.listParse(episodes, 0)[episodeNumber - 1];
|
||||||
|
videoBaseUrl += "${episodeNumber - 1}";
|
||||||
|
} else {
|
||||||
|
episode = MBridge.listParse(episodes, 0)[0];
|
||||||
|
videoBaseUrl += "0";
|
||||||
|
}
|
||||||
|
final lang = MBridge.getMapValue(episode, "lang", encode: true);
|
||||||
|
final vo = MBridge.getMapValue(lang, "vo", encode: true);
|
||||||
|
final vf = MBridge.getMapValue(lang, "vf", encode: true);
|
||||||
|
final vostfrPlayers = MBridge.jsonDecodeToList(
|
||||||
|
MBridge.getMapValue(vo, "lecteurs", encode: true), 0);
|
||||||
|
final vfPlayers = MBridge.jsonDecodeToList(
|
||||||
|
MBridge.getMapValue(vf, "lecteurs", encode: true), 0);
|
||||||
|
final hasVostfr = MBridge.isEmptyOrIsNotEmpty(vostfrPlayers, 1);
|
||||||
|
final hasVf = MBridge.isEmptyOrIsNotEmpty(vfPlayers, 1);
|
||||||
|
List<String> players = [];
|
||||||
|
if (language == "vo" && hasVostfr) {
|
||||||
|
players = vostfrPlayers;
|
||||||
|
print(players);
|
||||||
|
} else if (language == "vf" && hasVf) {
|
||||||
|
players = vfPlayers;
|
||||||
|
print(players);
|
||||||
|
}
|
||||||
|
List<VideoModel> videos = [];
|
||||||
|
for (int i = 0; i < players.length; i++) {
|
||||||
|
String apiUrl = "$videoBaseUrl/$language/$i";
|
||||||
|
String playerName = MBridge.listParse(players, 0)[i];
|
||||||
|
final data = {
|
||||||
|
"url": apiUrl,
|
||||||
|
"headers": {"Referer": "https://franime.fr/"},
|
||||||
|
"sourceId": anime.sourceId
|
||||||
|
};
|
||||||
|
final playerUrl = await MBridge.http('GET', json.encode(data));
|
||||||
|
List<VideoModel> a = [];
|
||||||
|
if (playerName.contains("franime_myvi")) {
|
||||||
|
videos.add(
|
||||||
|
MBridge.toVideo(playerUrl, "FRAnime", playerUrl, null, null, null));
|
||||||
|
} else if (playerName.contains("myvi")) {
|
||||||
|
a = await MBridge.myTvExtractor(playerUrl);
|
||||||
|
} else if (playerName.contains("sendvid")) {
|
||||||
|
a = await MBridge.sendVidExtractor(
|
||||||
|
playerUrl, json.encode({"Referer": "https://franime.fr/"}), "");
|
||||||
|
} else if (playerName.contains("sibnet")) {
|
||||||
|
a = await MBridge.sibnetExtractor(playerUrl);
|
||||||
|
} else if (playerName.contains("sbfull")) {}
|
||||||
|
for (var vi in a) {
|
||||||
|
videos.add(vi);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return videos;
|
||||||
|
}
|
||||||
@@ -2,7 +2,7 @@ import '../../../../model/source.dart';
|
|||||||
import '../../../../utils/utils.dart';
|
import '../../../../utils/utils.dart';
|
||||||
|
|
||||||
Source get franimeSource => _franimeSource;
|
Source get franimeSource => _franimeSource;
|
||||||
const franimeVersion = "0.0.2";
|
const franimeVersion = "0.0.21";
|
||||||
const franimeSourceCodeUrl =
|
const franimeSourceCodeUrl =
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/anime/src/fr/franime/franime-v$franimeVersion.dart";
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/anime/src/fr/franime/franime-v$franimeVersion.dart";
|
||||||
Source _franimeSource = Source(
|
Source _franimeSource = Source(
|
||||||
|
|||||||
Reference in New Issue
Block a user