58 lines
1.8 KiB
Dart
58 lines
1.8 KiB
Dart
import 'dart:async';
|
|
import 'package:dart_eval/stdlib/core.dart';
|
|
import 'package:mangayomi/eval/bridge_class/manga_model.dart';
|
|
import 'package:mangayomi/eval/bridge_class/model.dart';
|
|
import 'package:mangayomi/eval/compiler/compiler.dart';
|
|
import 'package:mangayomi/models/chapter.dart';
|
|
import 'package:mangayomi/models/video.dart';
|
|
import 'package:mangayomi/eval/runtime/runtime.dart';
|
|
import 'package:mangayomi/sources/utils/utils.dart';
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
part 'get_anime_servers.g.dart';
|
|
|
|
@riverpod
|
|
Future<(List<Video>, bool)> getAnimeServers(
|
|
GetAnimeServersRef ref, {
|
|
required Chapter episode,
|
|
}) async {
|
|
List<Video> video = [];
|
|
if (episode.manga.value!.isLocalArchive!) {
|
|
return (
|
|
[Video(episode.archivePath!, episode.name!, episode.archivePath!)],
|
|
true
|
|
);
|
|
}
|
|
final source =
|
|
getSource(episode.manga.value!.lang!, episode.manga.value!.source!);
|
|
|
|
final bytecode = compilerEval(source!.sourceCode!);
|
|
|
|
final runtime = runtimeEval(bytecode);
|
|
runtime.args = [
|
|
$MangaModel.wrap(MangaModel(
|
|
lang: source.lang,
|
|
link: episode.url,
|
|
baseUrl: source.baseUrl,
|
|
source: source.name,
|
|
apiUrl: source.apiUrl,
|
|
sourceId: source.id,
|
|
))
|
|
];
|
|
var res = await runtime.executeLib(
|
|
'package:mangayomi/source_code.dart', 'getVideoList');
|
|
// await Future.delayed(Duration(days: 1));
|
|
if (res is $List) {
|
|
video = res.$reified.map(
|
|
(e) {
|
|
List<Track>? subtitles = [];
|
|
var subs = e.subtitles;
|
|
if (subs is $List) {
|
|
subtitles = subs.map((e) => Track(e.file, e.label)).toList();
|
|
}
|
|
return Video(e.url, e.quality, e.originalUrl,
|
|
headers: e.headers, subtitles: subtitles);
|
|
},
|
|
).toList();
|
|
}
|
|
return (video, false);
|
|
}
|