2022-05-29 12:19:50 +03:00
import ' dart:convert ' ;
2022-08-18 12:25:47 +03:00
import ' package:desktop_multi_window/desktop_multi_window.dart ' ;
2020-11-06 13:04:04 +03:00
import ' package:flutter/material.dart ' ;
2022-08-11 11:03:04 +03:00
import ' package:flutter_hbb/desktop/pages/desktop_tab_page.dart ' ;
2022-08-15 07:35:10 +03:00
import ' package:flutter_hbb/desktop/pages/server_page.dart ' ;
2022-10-09 15:32:28 +03:00
import ' package:flutter_hbb/desktop/pages/install_page.dart ' ;
2022-06-17 17:57:41 +03:00
import ' package:flutter_hbb/desktop/screen/desktop_file_transfer_screen.dart ' ;
2022-08-26 06:35:28 +03:00
import ' package:flutter_hbb/desktop/screen/desktop_port_forward_screen.dart ' ;
2022-05-29 12:19:50 +03:00
import ' package:flutter_hbb/desktop/screen/desktop_remote_screen.dart ' ;
import ' package:flutter_hbb/utils/multi_window_manager.dart ' ;
2022-09-19 10:46:09 +03:00
import ' package:flutter_localizations/flutter_localizations.dart ' ;
2022-07-29 11:47:24 +03:00
import ' package:get/get.dart ' ;
2020-11-15 15:04:05 +03:00
import ' package:provider/provider.dart ' ;
2022-09-16 07:14:03 +03:00
import ' package:shared_preferences/shared_preferences.dart ' ;
2022-08-09 08:39:30 +03:00
import ' package:window_manager/window_manager.dart ' ;
2022-07-27 09:29:47 +03:00
2022-06-27 04:48:35 +03:00
// import 'package:window_manager/window_manager.dart';
2022-05-24 19:28:59 +03:00
2022-03-07 17:54:34 +03:00
import ' common.dart ' ;
2022-08-03 17:03:31 +03:00
import ' consts.dart ' ;
2022-05-24 18:33:00 +03:00
import ' mobile/pages/home_page.dart ' ;
import ' mobile/pages/server_page.dart ' ;
2022-08-09 08:50:26 +03:00
import ' models/platform_model.dart ' ;
2022-02-02 12:25:56 +03:00
2022-05-29 12:19:50 +03:00
int ? windowId ;
2022-10-11 14:52:03 +03:00
late List < String > bootArgs ;
2022-05-29 12:19:50 +03:00
2022-09-16 12:14:32 +03:00
Future < void > main ( List < String > args ) async {
2020-11-29 09:00:59 +03:00
WidgetsFlutterBinding . ensureInitialized ( ) ;
2022-09-16 12:14:32 +03:00
debugPrint ( " launch args: $ args " ) ;
2022-10-12 16:57:19 +03:00
bootArgs = List . from ( args ) ;
2022-05-29 12:19:50 +03:00
if ( ! isDesktop ) {
2022-08-23 09:12:30 +03:00
runMobileApp ( ) ;
2022-05-29 12:19:50 +03:00
return ;
}
2022-05-31 07:09:47 +03:00
// main window
2022-05-29 12:19:50 +03:00
if ( args . isNotEmpty & & args . first = = ' multi_window ' ) {
windowId = int . parse ( args [ 1 ] ) ;
2022-08-18 12:25:47 +03:00
WindowController . fromWindowId ( windowId ! ) . showTitleBar ( false ) ;
2022-05-29 12:19:50 +03:00
final argument = args [ 2 ] . isEmpty
2022-09-16 12:14:32 +03:00
? < String , dynamic > { }
2022-05-29 12:19:50 +03:00
: jsonDecode ( args [ 2 ] ) as Map < String , dynamic > ;
int type = argument [ ' type ' ] ? ? - 1 ;
2022-08-09 11:37:11 +03:00
argument [ ' windowId ' ] = windowId ;
2022-05-29 12:19:50 +03:00
WindowType wType = type . windowType ;
switch ( wType ) {
case WindowType . RemoteDesktop:
2022-09-05 11:01:53 +03:00
desktopType = DesktopType . remote ;
2022-08-03 17:03:31 +03:00
runRemoteScreen ( argument ) ;
2022-05-29 12:19:50 +03:00
break ;
2022-06-17 17:57:41 +03:00
case WindowType . FileTransfer:
2022-09-05 11:01:53 +03:00
desktopType = DesktopType . fileTransfer ;
2022-08-03 17:03:31 +03:00
runFileTransferScreen ( argument ) ;
2022-06-17 17:57:41 +03:00
break ;
2022-08-26 06:35:28 +03:00
case WindowType . PortForward:
2022-09-08 12:22:24 +03:00
desktopType = DesktopType . portForward ;
2022-08-26 06:35:28 +03:00
runPortForwardScreen ( argument ) ;
break ;
2022-05-29 12:19:50 +03:00
default :
break ;
}
2022-08-11 13:59:26 +03:00
} else if ( args . isNotEmpty & & args . first = = ' --cm ' ) {
2022-09-16 12:14:32 +03:00
debugPrint ( " --cm started " ) ;
2022-09-05 11:01:53 +03:00
desktopType = DesktopType . cm ;
2022-08-11 13:59:26 +03:00
await windowManager . ensureInitialized ( ) ;
runConnectionManagerScreen ( ) ;
2022-10-09 15:32:28 +03:00
} else if ( args . contains ( ' --install ' ) ) {
runInstallPage ( ) ;
2022-05-29 12:19:50 +03:00
} else {
2022-09-05 11:01:53 +03:00
desktopType = DesktopType . main ;
2022-08-09 08:39:30 +03:00
await windowManager . ensureInitialized ( ) ;
windowManager . setPreventClose ( true ) ;
2022-08-03 17:03:31 +03:00
runMainApp ( true ) ;
}
}
Future < void > initEnv ( String appType ) async {
2022-09-16 07:14:03 +03:00
// global shared preference
await Get . putAsync ( ( ) = > SharedPreferences . getInstance ( ) ) ;
2022-08-03 17:03:31 +03:00
await platformFFI . init ( appType ) ;
// global FFI, use this **ONLY** for global configuration
// for convenience, use global FFI on mobile platform
// focus on multi-ffi on desktop first
await initGlobalFFI ( ) ;
// await Firebase.initializeApp();
2022-09-08 03:52:56 +03:00
_registerEventHandler ( ) ;
2022-08-03 17:03:31 +03:00
}
void runMainApp ( bool startService ) async {
2022-08-30 15:48:03 +03:00
await initEnv ( kAppTypeMain ) ;
2022-08-30 11:50:25 +03:00
// trigger connection status updater
await bind . mainCheckConnectStatus ( ) ;
2022-08-03 17:03:31 +03:00
if ( startService ) {
2022-06-27 04:48:35 +03:00
// await windowManager.ensureInitialized();
2022-06-02 11:45:04 +03:00
// disable tray
// initTray();
2022-06-13 16:07:26 +03:00
gFFI . serverModel . startService ( ) ;
2022-05-24 19:28:59 +03:00
}
2022-08-03 17:03:31 +03:00
runApp ( App ( ) ) ;
2022-08-30 15:48:03 +03:00
// set window option
2022-09-16 07:14:03 +03:00
WindowOptions windowOptions = getHiddenTitleBarWindowOptions ( ) ;
2022-08-30 15:48:03 +03:00
windowManager . waitUntilReadyToShow ( windowOptions , ( ) async {
2022-09-16 07:14:03 +03:00
restoreWindowPosition ( WindowType . Main ) ;
2022-08-30 11:50:25 +03:00
await windowManager . show ( ) ;
await windowManager . focus ( ) ;
2022-09-26 12:56:32 +03:00
await windowManager . setOpacity ( 1 ) ;
2022-08-30 15:48:03 +03:00
} ) ;
2022-08-03 17:03:31 +03:00
}
2022-08-23 09:12:30 +03:00
void runMobileApp ( ) async {
await initEnv ( kAppTypeMain ) ;
if ( isAndroid ) androidChannelInit ( ) ;
runApp ( App ( ) ) ;
}
2022-08-03 17:03:31 +03:00
void runRemoteScreen ( Map < String , dynamic > argument ) async {
await initEnv ( kAppTypeDesktopRemote ) ;
2022-10-14 13:48:41 +03:00
await restoreWindowPosition ( WindowType . RemoteDesktop , windowId: windowId ) ;
2022-08-03 17:03:31 +03:00
runApp ( GetMaterialApp (
2022-08-11 11:03:04 +03:00
navigatorKey: globalKey ,
debugShowCheckedModeBanner: false ,
title: ' RustDesk - Remote Desktop ' ,
2022-09-07 13:57:49 +03:00
theme: MyTheme . lightTheme ,
darkTheme: MyTheme . darkTheme ,
2022-09-21 18:32:59 +03:00
themeMode: MyTheme . currentThemeMode ( ) ,
2022-08-03 17:03:31 +03:00
home: DesktopRemoteScreen (
params: argument ,
) ,
2022-09-19 10:46:09 +03:00
localizationsDelegates: const [
GlobalMaterialLocalizations . delegate ,
GlobalWidgetsLocalizations . delegate ,
GlobalCupertinoLocalizations . delegate ,
] ,
supportedLocales: supportedLocales ,
2022-09-16 12:14:32 +03:00
navigatorObservers: const [
2022-08-11 11:03:04 +03:00
// FirebaseAnalyticsObserver(analytics: analytics),
] ,
2022-08-23 14:47:56 +03:00
builder: _keepScaleBuilder ( ) ,
2022-08-03 17:03:31 +03:00
) ) ;
}
void runFileTransferScreen ( Map < String , dynamic > argument ) async {
await initEnv ( kAppTypeDesktopFileTransfer ) ;
2022-10-14 13:48:41 +03:00
await restoreWindowPosition ( WindowType . FileTransfer , windowId: windowId ) ;
2022-08-23 14:47:56 +03:00
runApp (
GetMaterialApp (
2022-08-11 11:03:04 +03:00
navigatorKey: globalKey ,
debugShowCheckedModeBanner: false ,
title: ' RustDesk - File Transfer ' ,
2022-09-07 13:57:49 +03:00
theme: MyTheme . lightTheme ,
darkTheme: MyTheme . darkTheme ,
2022-09-21 18:32:59 +03:00
themeMode: MyTheme . currentThemeMode ( ) ,
2022-08-11 11:03:04 +03:00
home: DesktopFileTransferScreen ( params: argument ) ,
2022-09-19 10:46:09 +03:00
localizationsDelegates: const [
GlobalMaterialLocalizations . delegate ,
GlobalWidgetsLocalizations . delegate ,
GlobalCupertinoLocalizations . delegate ,
] ,
supportedLocales: supportedLocales ,
2022-09-16 12:14:32 +03:00
navigatorObservers: const [
2022-08-11 11:03:04 +03:00
// FirebaseAnalyticsObserver(analytics: analytics),
2022-08-23 14:47:56 +03:00
] ,
builder: _keepScaleBuilder ( ) ,
) ,
) ;
2020-11-06 13:04:04 +03:00
}
2022-08-26 06:35:28 +03:00
void runPortForwardScreen ( Map < String , dynamic > argument ) async {
await initEnv ( kAppTypeDesktopPortForward ) ;
2022-10-14 13:48:41 +03:00
await restoreWindowPosition ( WindowType . PortForward , windowId: windowId ) ;
2022-08-26 06:35:28 +03:00
runApp (
GetMaterialApp (
navigatorKey: globalKey ,
debugShowCheckedModeBanner: false ,
title: ' RustDesk - Port Forward ' ,
2022-09-07 13:57:49 +03:00
theme: MyTheme . lightTheme ,
darkTheme: MyTheme . darkTheme ,
2022-09-21 18:32:59 +03:00
themeMode: MyTheme . currentThemeMode ( ) ,
2022-08-26 06:35:28 +03:00
home: DesktopPortForwardScreen ( params: argument ) ,
2022-09-19 10:46:09 +03:00
localizationsDelegates: const [
GlobalMaterialLocalizations . delegate ,
GlobalWidgetsLocalizations . delegate ,
GlobalCupertinoLocalizations . delegate ,
] ,
supportedLocales: supportedLocales ,
2022-09-16 12:14:32 +03:00
navigatorObservers: const [
2022-08-26 06:35:28 +03:00
// FirebaseAnalyticsObserver(analytics: analytics),
] ,
builder: _keepScaleBuilder ( ) ,
) ,
) ;
}
2022-08-11 13:59:26 +03:00
void runConnectionManagerScreen ( ) async {
2022-08-18 04:51:19 +03:00
// initialize window
2022-09-16 07:14:03 +03:00
WindowOptions windowOptions =
2022-09-26 12:56:32 +03:00
getHiddenTitleBarWindowOptions ( size: kConnectionManagerWindowSize ) ;
// ensure initial window size to be changed
await windowManager . setSize ( kConnectionManagerWindowSize ) ;
2022-09-28 06:20:57 +03:00
await Future . wait (
[ windowManager . setAlignment ( Alignment . topRight ) , initEnv ( kAppTypeMain ) ] ) ;
2022-08-18 06:07:53 +03:00
runApp ( GetMaterialApp (
debugShowCheckedModeBanner: false ,
2022-09-07 13:57:49 +03:00
theme: MyTheme . lightTheme ,
darkTheme: MyTheme . darkTheme ,
2022-09-21 18:32:59 +03:00
themeMode: MyTheme . currentThemeMode ( ) ,
2022-09-19 10:46:09 +03:00
localizationsDelegates: const [
GlobalMaterialLocalizations . delegate ,
GlobalWidgetsLocalizations . delegate ,
GlobalCupertinoLocalizations . delegate ,
] ,
supportedLocales: supportedLocales ,
2022-09-16 12:14:32 +03:00
home: const DesktopServerPage ( ) ,
2022-08-23 14:47:56 +03:00
builder: _keepScaleBuilder ( ) ) ) ;
2022-09-16 11:19:15 +03:00
windowManager . waitUntilReadyToShow ( windowOptions , ( ) async {
2022-09-26 12:56:32 +03:00
windowManager . show ( ) ;
windowManager . focus ( ) ;
windowManager . setOpacity ( 1 ) ;
windowManager . setAlignment ( Alignment . topRight ) ; // ensure
2022-09-19 10:46:09 +03:00
} ) ;
2022-08-18 06:07:53 +03:00
}
2022-10-09 15:32:28 +03:00
void runInstallPage ( ) async {
await windowManager . ensureInitialized ( ) ;
await initEnv ( kAppTypeMain ) ;
runApp ( GetMaterialApp (
debugShowCheckedModeBanner: false ,
theme: MyTheme . lightTheme ,
themeMode: ThemeMode . light ,
localizationsDelegates: const [
GlobalMaterialLocalizations . delegate ,
GlobalWidgetsLocalizations . delegate ,
GlobalCupertinoLocalizations . delegate ,
] ,
supportedLocales: supportedLocales ,
home: const InstallPage ( ) ,
builder: _keepScaleBuilder ( ) ) ) ;
windowManager . waitUntilReadyToShow (
WindowOptions ( size: Size ( 800 , 600 ) , center: true ) , ( ) async {
windowManager . show ( ) ;
windowManager . focus ( ) ;
windowManager . setOpacity ( 1 ) ;
windowManager . setAlignment ( Alignment . center ) ; // ensure
} ) ;
}
2022-09-16 07:14:03 +03:00
WindowOptions getHiddenTitleBarWindowOptions ( { Size ? size } ) {
2022-08-18 06:07:53 +03:00
return WindowOptions (
size: size ,
2022-09-26 12:56:32 +03:00
center: false ,
2022-08-18 06:07:53 +03:00
backgroundColor: Colors . transparent ,
skipTaskbar: false ,
titleBarStyle: TitleBarStyle . hidden ,
) ;
2022-08-11 13:59:26 +03:00
}
2022-09-06 17:34:01 +03:00
class App extends StatefulWidget {
@ override
State < App > createState ( ) = > _AppState ( ) ;
}
class _AppState extends State < App > {
@ override
void initState ( ) {
super . initState ( ) ;
WidgetsBinding . instance . window . onPlatformBrightnessChanged = ( ) {
2022-09-21 18:32:59 +03:00
final userPreference = MyTheme . getThemeModePreference ( ) ;
if ( userPreference ! = ThemeMode . system ) return ;
2022-09-06 17:34:01 +03:00
WidgetsBinding . instance . handlePlatformBrightnessChanged ( ) ;
2022-09-21 18:32:59 +03:00
final systemIsDark =
WidgetsBinding . instance . platformDispatcher . platformBrightness = =
Brightness . dark ;
final ThemeMode to ;
if ( systemIsDark ) {
to = ThemeMode . dark ;
} else {
to = ThemeMode . light ;
}
Get . changeThemeMode ( to ) ;
if ( desktopType = = DesktopType . main ) {
bind . mainChangeTheme ( dark: to . toShortString ( ) ) ;
2022-09-06 17:34:01 +03:00
}
} ;
}
2020-11-06 13:04:04 +03:00
@ override
Widget build ( BuildContext context ) {
2022-05-23 11:24:56 +03:00
// final analytics = FirebaseAnalytics.instance;
2022-03-24 12:58:33 +03:00
return MultiProvider (
2022-03-25 11:34:27 +03:00
providers: [
2022-06-17 17:57:41 +03:00
// global configuration
// use session related FFI when in remote control or file transfer page
2022-06-13 16:07:26 +03:00
ChangeNotifierProvider . value ( value: gFFI . ffiModel ) ,
ChangeNotifierProvider . value ( value: gFFI . imageModel ) ,
ChangeNotifierProvider . value ( value: gFFI . cursorModel ) ,
ChangeNotifierProvider . value ( value: gFFI . canvasModel ) ,
2022-03-25 11:34:27 +03:00
] ,
2022-06-13 16:07:26 +03:00
child: GetMaterialApp (
2022-08-23 14:47:56 +03:00
navigatorKey: globalKey ,
debugShowCheckedModeBanner: false ,
title: ' RustDesk ' ,
2022-09-07 13:57:49 +03:00
theme: MyTheme . lightTheme ,
darkTheme: MyTheme . darkTheme ,
2022-09-21 18:32:59 +03:00
themeMode: MyTheme . currentThemeMode ( ) ,
2022-08-23 14:47:56 +03:00
home: isDesktop
2022-08-29 13:48:12 +03:00
? const DesktopTabPage ( )
2022-08-23 14:47:56 +03:00
: ! isAndroid
? WebHomePage ( )
: HomePage ( ) ,
2022-09-16 12:14:32 +03:00
navigatorObservers: const [
2022-08-23 14:47:56 +03:00
// FirebaseAnalyticsObserver(analytics: analytics),
] ,
2022-09-19 10:46:09 +03:00
localizationsDelegates: const [
GlobalMaterialLocalizations . delegate ,
GlobalWidgetsLocalizations . delegate ,
GlobalCupertinoLocalizations . delegate ,
] ,
supportedLocales: supportedLocales ,
2022-08-23 14:47:56 +03:00
builder: isAndroid
2022-08-28 17:28:19 +03:00
? ( context , child ) = > AccessibilityListener (
child: MediaQuery (
data: MediaQuery . of ( context ) . copyWith (
textScaleFactor: 1.0 ,
) ,
child: child ? ? Container ( ) ,
) ,
2022-08-23 14:47:56 +03:00
)
: _keepScaleBuilder ( ) ,
) ,
2022-01-23 08:59:57 +03:00
) ;
2020-11-06 13:04:04 +03:00
}
}
2022-08-23 14:47:56 +03:00
_keepScaleBuilder ( ) {
return ( BuildContext context , Widget ? child ) {
return MediaQuery (
data: MediaQuery . of ( context ) . copyWith (
textScaleFactor: 1.0 ,
) ,
child: child ? ? Container ( ) ,
) ;
} ;
}
2022-09-08 03:52:56 +03:00
_registerEventHandler ( ) {
2022-09-15 11:09:07 +03:00
if ( isDesktop & & desktopType ! = DesktopType . main ) {
2022-09-12 05:52:38 +03:00
platformFFI . registerEventHandler ( ' theme ' , ' theme ' , ( evt ) async {
2022-09-08 03:52:56 +03:00
String ? dark = evt [ ' dark ' ] ;
if ( dark ! = null ) {
2022-09-21 18:32:59 +03:00
MyTheme . changeDarkMode ( MyTheme . themeModeFromString ( dark ) ) ;
2022-09-08 03:52:56 +03:00
}
} ) ;
2022-09-12 05:52:38 +03:00
platformFFI . registerEventHandler ( ' language ' , ' language ' , ( _ ) async {
2022-09-08 03:52:56 +03:00
Get . forceAppUpdate ( ) ;
} ) ;
}
}