rustdesk/lib/server_page.dart

317 lines
9.7 KiB
Dart
Raw Normal View History

2022-02-02 17:25:56 +08:00
import 'dart:async';
2022-01-23 21:37:19 +08:00
import 'package:flutter/material.dart';
import 'package:flutter_hbb/model.dart';
2022-02-02 17:25:56 +08:00
import 'package:provider/provider.dart';
2022-01-23 21:37:19 +08:00
import 'common.dart';
2022-02-02 17:25:56 +08:00
import 'main.dart';
2022-01-23 21:37:19 +08:00
2022-02-02 17:25:56 +08:00
class ServerPage extends StatelessWidget {
static final serverModel = ServerModel();
2022-01-23 21:37:19 +08:00
@override
Widget build(BuildContext context) {
2022-02-08 22:45:48 +08:00
checkService();
2022-02-02 17:25:56 +08:00
return ChangeNotifierProvider.value(
value: serverModel,
child: Scaffold(
backgroundColor: MyTheme.grayBg,
appBar: AppBar(
centerTitle: true,
title: const Text("Share My Screen"),
actions: [
PopupMenuButton<String>(
itemBuilder: (context) {
return [
PopupMenuItem(
child: Text("修改服务ID"),
value: "changeID",
enabled: false,
),
PopupMenuItem(
child: Text("修改服务密码"),
value: "changeID",
enabled: false,
)
];
},
onSelected: (value) =>
debugPrint("PopupMenuItem onSelected:$value"))
2022-01-23 21:37:19 +08:00
],
),
2022-02-02 17:25:56 +08:00
body: SingleChildScrollView(
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: [
ServerInfo(),
PermissionChecker(),
ConnectionManager(),
SizedBox.fromSize(size: Size(0, 15.0)), // Bottom padding
],
),
),
)));
2022-01-23 21:37:19 +08:00
}
}
2022-02-08 22:45:48 +08:00
void checkService() {
// 检测当前服务状态,若已存在服务则异步更新数据回来
toAndroidChannel.invokeMethod("check_service"); // jvm
ServerPage.serverModel.updateClientState();
// var state = FFI.getByName("client_state").split(":"); // rust
// var isStart = FFI.getByName("client_is_start") !="";// 使用JSON
// if(state.length == 2){
// ServerPage.serverModel.setPeer(isStart,name:state[0],id:state[1]);
// }
}
2022-01-23 21:37:19 +08:00
class ServerInfo extends StatefulWidget {
@override
_ServerInfoState createState() => _ServerInfoState();
}
class _ServerInfoState extends State<ServerInfo> {
2022-02-08 22:45:48 +08:00
var _passwdShow = false;
2022-01-23 21:37:19 +08:00
// TODO set ID / PASSWORD
var _serverId = "";
var _serverPasswd = "";
@override
void initState() {
super.initState();
_serverId = FFI.getByName("server_id");
_serverPasswd = FFI.getByName("server_password");
}
@override
Widget build(BuildContext context) {
return myCard(Column(
mainAxisSize: MainAxisSize.min,
children: [
TextFormField(
readOnly: true,
style: TextStyle(
fontSize: 25.0,
fontWeight: FontWeight.bold,
color: MyTheme.accent),
initialValue: _serverId,
decoration: InputDecoration(
icon: const Icon(Icons.perm_identity),
labelText: '服务ID',
labelStyle:
TextStyle(fontWeight: FontWeight.bold, color: MyTheme.accent50),
),
onSaved: (String value) {},
),
TextFormField(
readOnly: true,
2022-02-08 22:45:48 +08:00
obscureText: !_passwdShow,
2022-01-23 21:37:19 +08:00
style: TextStyle(
fontSize: 25.0,
fontWeight: FontWeight.bold,
color: MyTheme.accent),
initialValue: _serverPasswd,
decoration: InputDecoration(
icon: const Icon(Icons.lock),
labelText: '密码',
labelStyle: TextStyle(
fontWeight: FontWeight.bold, color: MyTheme.accent50),
suffix: IconButton(
icon: Icon(Icons.visibility),
onPressed: () {
debugPrint("icon btn");
setState(() {
_passwdShow = !_passwdShow;
});
})),
onSaved: (String value) {},
),
],
));
}
}
class PermissionChecker extends StatefulWidget {
@override
_PermissionCheckerState createState() => _PermissionCheckerState();
}
class _PermissionCheckerState extends State<PermissionChecker> {
2022-02-02 17:25:56 +08:00
@override
void initState() {
super.initState();
nowCtx = context;
}
2022-01-23 21:37:19 +08:00
@override
Widget build(BuildContext context) {
2022-02-02 17:25:56 +08:00
final serverModel = Provider.of<ServerModel>(context);
2022-01-23 21:37:19 +08:00
return myCard(Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
cardTitle("权限列表"),
2022-02-02 17:25:56 +08:00
PermissionRow("媒体权限", serverModel.mediaOk, _toAndroidInitService),
2022-01-23 21:37:19 +08:00
const Divider(height: 0),
2022-02-08 22:45:48 +08:00
PermissionRow("输入权限", serverModel.inputOk, _toAndroidInitInput),
2022-01-23 21:37:19 +08:00
const Divider(),
2022-02-02 17:25:56 +08:00
serverModel.mediaOk
? ElevatedButton.icon(
icon: Icon(Icons.stop),
onPressed: _toAndroidStopService,
label: Text("Stop"))
: ElevatedButton.icon(
2022-01-23 21:37:19 +08:00
icon: Icon(Icons.play_arrow),
2022-02-02 17:25:56 +08:00
onPressed: _toAndroidInitService,
2022-01-23 21:37:19 +08:00
label: Text("Start")),
],
));
}
2022-02-02 17:25:56 +08:00
}
2022-01-23 21:37:19 +08:00
2022-02-02 17:25:56 +08:00
void showLoginReqAlert(BuildContext context, String peerID, String name) {
debugPrint("got try_start_without_auth");
showDialog(
context: context,
builder: (context) => AlertDialog(
title: Text("收到连接请求"),
content: Text("是否同意来自$name:$peerID的控制"),
actions: [
TextButton(
child: Text("接受"),
onPressed: () {
FFI.setByName("login_res", "true");
2022-02-08 22:45:48 +08:00
if(!ServerPage.serverModel.isFileTransfer){
_toAndroidStartCapture();
}
2022-02-02 17:25:56 +08:00
ServerPage.serverModel.setPeer(true);
Navigator.of(context).pop();
}),
TextButton(
child: Text("不接受"),
onPressed: () {
FFI.setByName("login_res", "false");
Navigator.of(context).pop();
})
],
));
2022-01-23 21:37:19 +08:00
}
class PermissionRow extends StatelessWidget {
PermissionRow(this.name, this.isOk, this.onPressed);
final String name;
final bool isOk;
final VoidCallback onPressed;
@override
Widget build(BuildContext context) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text.rich(TextSpan(children: [
TextSpan(
text: name + ":",
style: TextStyle(fontSize: 16.0, color: MyTheme.accent50)),
TextSpan(
text: isOk ? "已开启" : "未开启",
style: TextStyle(
2022-01-24 19:06:53 +08:00
fontSize: 16.0, color: isOk ? Colors.green : Colors.grey)),
2022-01-23 21:37:19 +08:00
])),
TextButton(
2022-02-02 17:25:56 +08:00
onPressed: isOk ? null : onPressed,
2022-01-23 21:37:19 +08:00
child: const Text(
"去开启",
style: TextStyle(fontWeight: FontWeight.bold),
)),
],
);
}
}
2022-02-02 17:25:56 +08:00
class ConnectionManager extends StatelessWidget {
@override
Widget build(BuildContext context) {
final serverModel = Provider.of<ServerModel>(context);
var info =
"${serverModel.peerName != "" ? serverModel.peerName : "NA"}-${serverModel.peerID != "" ? serverModel.peerID : "NA"}";
2022-02-08 22:45:48 +08:00
return serverModel.isStart
2022-02-02 17:25:56 +08:00
? myCard(Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
cardTitle("当前连接"),
Padding(
padding: EdgeInsets.symmetric(vertical: 5.0),
child: Text(info, style: TextStyle(color: Colors.grey)),
),
ElevatedButton.icon(
style: ButtonStyle(
backgroundColor: MaterialStateProperty.all(Colors.red)),
icon: Icon(Icons.close),
onPressed: () {
FFI.setByName("close_conn");
2022-02-08 22:45:48 +08:00
// _toAndroidStopCapture();
2022-02-02 17:25:56 +08:00
serverModel.setPeer(false);
},
label: Text("断开连接"))
],
))
: SizedBox.shrink();
}
}
2022-01-23 21:37:19 +08:00
Widget cardTitle(String text) {
return Padding(
padding: EdgeInsets.symmetric(vertical: 5.0),
child: Text(
text,
style: TextStyle(
fontFamily: 'WorkSans',
fontWeight: FontWeight.bold,
2022-02-02 17:25:56 +08:00
fontSize: 22,
2022-01-24 19:06:53 +08:00
color: MyTheme.accent80,
2022-01-23 21:37:19 +08:00
),
));
}
Widget myCard(Widget child) {
2022-02-02 17:25:56 +08:00
return Container(
width: double.maxFinite,
child: Card(
margin: EdgeInsets.fromLTRB(15.0, 15.0, 15.0, 0),
child: Padding(
padding: EdgeInsets.symmetric(vertical: 15.0, horizontal: 30.0),
child: child,
),
));
}
Future<Null> _toAndroidInitService() async {
bool res = await toAndroidChannel.invokeMethod("init_service");
FFI.setByName("start_service");
debugPrint("_toAndroidInitService:$res");
}
Future<Null> _toAndroidStartCapture() async {
bool res = await toAndroidChannel.invokeMethod("start_capture");
debugPrint("_toAndroidStartCapture:$res");
}
2022-02-08 22:45:48 +08:00
// Future<Null> _toAndroidStopCapture() async {
// bool res = await toAndroidChannel.invokeMethod("stop_capture");
// debugPrint("_toAndroidStopCapture:$res");
// }
2022-02-02 17:25:56 +08:00
Future<Null> _toAndroidStopService() async {
FFI.setByName("stop_service");
bool res = await toAndroidChannel.invokeMethod("stop_service");
debugPrint("_toAndroidStopSer:$res");
}
2022-02-08 22:45:48 +08:00
Future<Null> _toAndroidInitInput() async {
bool res = await toAndroidChannel.invokeMethod("init_input");
debugPrint("_toAndroidInitInput:$res");
2022-01-23 21:37:19 +08:00
}