mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
245 lines
8.1 KiB
Dart
245 lines
8.1 KiB
Dart
import 'dart:io';
|
||
|
||
import 'package:PiliPlus/build_config.dart';
|
||
import 'package:PiliPlus/common/widgets/custom_toast.dart';
|
||
import 'package:PiliPlus/http/init.dart';
|
||
import 'package:PiliPlus/models/common/theme/theme_color_type.dart';
|
||
import 'package:PiliPlus/pages/main/view.dart';
|
||
import 'package:PiliPlus/pages/video/view.dart';
|
||
import 'package:PiliPlus/router/app_pages.dart';
|
||
import 'package:PiliPlus/services/account_service.dart';
|
||
import 'package:PiliPlus/services/loggeer.dart';
|
||
import 'package:PiliPlus/services/service_locator.dart';
|
||
import 'package:PiliPlus/utils/app_scheme.dart';
|
||
import 'package:PiliPlus/utils/cache_manage.dart';
|
||
import 'package:PiliPlus/utils/data.dart';
|
||
import 'package:PiliPlus/utils/date_util.dart';
|
||
import 'package:PiliPlus/utils/storage.dart';
|
||
import 'package:PiliPlus/utils/storage_key.dart';
|
||
import 'package:PiliPlus/utils/storage_pref.dart';
|
||
import 'package:PiliPlus/utils/theme_utils.dart';
|
||
import 'package:catcher_2/catcher_2.dart';
|
||
import 'package:dynamic_color/dynamic_color.dart';
|
||
import 'package:flex_seed_scheme/flex_seed_scheme.dart';
|
||
import 'package:flutter/foundation.dart' show kDebugMode;
|
||
import 'package:flutter/material.dart';
|
||
import 'package:flutter/services.dart';
|
||
import 'package:flutter_displaymode/flutter_displaymode.dart';
|
||
import 'package:flutter_localizations/flutter_localizations.dart';
|
||
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
||
import 'package:get/get.dart';
|
||
import 'package:media_kit/media_kit.dart'; // Provides [Player], [Media], [Playlist] etc.
|
||
|
||
void main() async {
|
||
WidgetsFlutterBinding.ensureInitialized();
|
||
MediaKit.ensureInitialized();
|
||
await GStorage.init();
|
||
Get.put(AccountService());
|
||
if (Pref.autoClearCache) {
|
||
await CacheManage.clearLibraryCache();
|
||
} else {
|
||
final num maxCacheSize = Pref.maxCacheSize;
|
||
if (maxCacheSize != 0) {
|
||
final double currCache = await CacheManage().loadApplicationCache();
|
||
if (currCache >= maxCacheSize) {
|
||
await CacheManage.clearLibraryCache();
|
||
}
|
||
}
|
||
}
|
||
if (Pref.horizontalScreen) {
|
||
await SystemChrome.setPreferredOrientations(
|
||
//支持竖屏与横屏
|
||
[
|
||
DeviceOrientation.portraitUp,
|
||
// DeviceOrientation.portraitDown,
|
||
DeviceOrientation.landscapeLeft,
|
||
DeviceOrientation.landscapeRight,
|
||
],
|
||
);
|
||
} else {
|
||
await SystemChrome.setPreferredOrientations(
|
||
//支持竖屏
|
||
[
|
||
DeviceOrientation.portraitUp,
|
||
],
|
||
);
|
||
}
|
||
HttpOverrides.global = _CustomHttpOverrides();
|
||
await setupServiceLocator();
|
||
Request();
|
||
await Request.setCookie();
|
||
|
||
if (Pref.enableLog) {
|
||
// 异常捕获 logo记录
|
||
String buildConfig = '''\n
|
||
Build Time: ${DateUtil.format(BuildConfig.buildTime, format: DateUtil.longFormatDs)}
|
||
Commit Hash: ${BuildConfig.commitHash}''';
|
||
final Catcher2Options debugConfig = Catcher2Options(
|
||
SilentReportMode(),
|
||
[
|
||
FileHandler(await getLogsPath()),
|
||
ConsoleHandler(
|
||
enableDeviceParameters: false,
|
||
enableApplicationParameters: false,
|
||
enableCustomParameters: true,
|
||
)
|
||
],
|
||
customParameters: {
|
||
'BuildConfig': buildConfig,
|
||
},
|
||
);
|
||
|
||
final Catcher2Options releaseConfig = Catcher2Options(
|
||
SilentReportMode(),
|
||
[
|
||
FileHandler(await getLogsPath()),
|
||
ConsoleHandler(
|
||
enableCustomParameters: true,
|
||
)
|
||
],
|
||
customParameters: {
|
||
'BuildConfig': buildConfig,
|
||
},
|
||
);
|
||
|
||
Catcher2(
|
||
debugConfig: debugConfig,
|
||
releaseConfig: releaseConfig,
|
||
runAppFunction: () {
|
||
runApp(const MyApp());
|
||
},
|
||
);
|
||
} else {
|
||
runApp(const MyApp());
|
||
}
|
||
|
||
// 小白条、导航栏沉浸
|
||
SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge);
|
||
SystemChrome.setSystemUIOverlayStyle(const SystemUiOverlayStyle(
|
||
systemNavigationBarColor: Colors.transparent,
|
||
systemNavigationBarDividerColor: Colors.transparent,
|
||
statusBarColor: Colors.transparent,
|
||
systemNavigationBarContrastEnforced: false,
|
||
));
|
||
Data.init();
|
||
PiliScheme.init();
|
||
}
|
||
|
||
class MyApp extends StatelessWidget {
|
||
const MyApp({super.key});
|
||
|
||
static ThemeData? darkThemeData;
|
||
|
||
@override
|
||
Widget build(BuildContext context) {
|
||
Color brandColor = colorThemeTypes[Pref.customColor].color;
|
||
bool isDynamicColor = Pref.dynamicColor;
|
||
FlexSchemeVariant variant = FlexSchemeVariant.values[Pref.schemeVariant];
|
||
|
||
// 强制设置高帧率
|
||
if (Platform.isAndroid) {
|
||
late List modes;
|
||
FlutterDisplayMode.supported.then((value) {
|
||
modes = value;
|
||
var storageDisplay = GStorage.setting.get(SettingBoxKey.displayMode);
|
||
DisplayMode f = DisplayMode.auto;
|
||
if (storageDisplay != null) {
|
||
f = modes.firstWhere((e) => e.toString() == storageDisplay,
|
||
orElse: () => f);
|
||
}
|
||
DisplayMode preferred = modes.toList().firstWhere((el) => el == f);
|
||
FlutterDisplayMode.setPreferredMode(preferred);
|
||
});
|
||
}
|
||
|
||
return DynamicColorBuilder(
|
||
builder: ((ColorScheme? lightDynamic, ColorScheme? darkDynamic) {
|
||
ColorScheme? lightColorScheme;
|
||
ColorScheme? darkColorScheme;
|
||
if (lightDynamic != null && darkDynamic != null && isDynamicColor) {
|
||
// dynamic取色成功
|
||
lightColorScheme = lightDynamic.harmonized();
|
||
darkColorScheme = darkDynamic.harmonized();
|
||
} else {
|
||
// dynamic取色失败,采用品牌色
|
||
lightColorScheme = SeedColorScheme.fromSeeds(
|
||
primaryKey: brandColor,
|
||
brightness: Brightness.light,
|
||
variant: variant,
|
||
// dynamicSchemeVariant: dynamicSchemeVariant,
|
||
// tones: FlexTones.soft(Brightness.light),
|
||
);
|
||
darkColorScheme = SeedColorScheme.fromSeeds(
|
||
primaryKey: brandColor,
|
||
brightness: Brightness.dark,
|
||
variant: variant,
|
||
// dynamicSchemeVariant: dynamicSchemeVariant,
|
||
// tones: FlexTones.soft(Brightness.dark),
|
||
);
|
||
}
|
||
|
||
// 图片缓存
|
||
// PaintingBinding.instance.imageCache.maximumSizeBytes = 1000 << 20;
|
||
return GetMaterialApp(
|
||
// showSemanticsDebugger: true,
|
||
title: 'PiliPlus',
|
||
theme: ThemeUtils.getThemeData(
|
||
colorScheme: lightColorScheme,
|
||
isDynamic: lightDynamic != null && isDynamicColor,
|
||
variant: variant,
|
||
),
|
||
darkTheme: ThemeUtils.getThemeData(
|
||
colorScheme: darkColorScheme,
|
||
isDynamic: darkDynamic != null && isDynamicColor,
|
||
isDark: true,
|
||
variant: variant,
|
||
),
|
||
themeMode: Pref.themeMode,
|
||
localizationsDelegates: const [
|
||
GlobalCupertinoLocalizations.delegate,
|
||
GlobalMaterialLocalizations.delegate,
|
||
GlobalWidgetsLocalizations.delegate,
|
||
],
|
||
locale: const Locale("zh", "CN"),
|
||
supportedLocales: const [Locale("zh", "CN"), Locale("en", "US")],
|
||
fallbackLocale: const Locale("zh", "CN"),
|
||
getPages: Routes.getPages,
|
||
initialRoute: '/',
|
||
builder: FlutterSmartDialog.init(
|
||
toastBuilder: (String msg) => CustomToast(msg: msg),
|
||
loadingBuilder: (msg) => LoadingWidget(msg: msg),
|
||
builder: (context, child) {
|
||
return MediaQuery(
|
||
data: MediaQuery.of(context).copyWith(
|
||
textScaler: TextScaler.linear(Pref.defaultTextScale)),
|
||
child: child!,
|
||
);
|
||
},
|
||
),
|
||
navigatorObservers: [
|
||
FlutterSmartDialog.observer,
|
||
VideoDetailPageV.routeObserver,
|
||
MainApp.routeObserver,
|
||
],
|
||
);
|
||
}),
|
||
);
|
||
}
|
||
}
|
||
|
||
class _CustomHttpOverrides extends HttpOverrides {
|
||
final badCertificateCallback = kDebugMode || Pref.badCertificateCallback;
|
||
|
||
@override
|
||
HttpClient createHttpClient(SecurityContext? context) {
|
||
final client = super.createHttpClient(context)
|
||
// ..maxConnectionsPerHost = 32
|
||
..idleTimeout = const Duration(seconds: 15);
|
||
if (badCertificateCallback) {
|
||
client.badCertificateCallback =
|
||
(X509Certificate cert, String host, int port) => true;
|
||
}
|
||
return client;
|
||
}
|
||
}
|