mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-04 11:59:18 +08:00
54de5b0300
Signed-off-by: 21pages <pages21@163.com>
270 lines
8.6 KiB
Dart
270 lines
8.6 KiB
Dart
import 'dart:async';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_hbb/common/widgets/setting_widgets.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
import '../../common.dart';
|
|
import '../../models/platform_model.dart';
|
|
|
|
void _showSuccess() {
|
|
showToast(translate("Successful"));
|
|
}
|
|
|
|
void _showError() {
|
|
showToast(translate("Error"));
|
|
}
|
|
|
|
void setPermanentPasswordDialog(OverlayDialogManager dialogManager) async {
|
|
final pw = await bind.mainGetPermanentPassword();
|
|
final p0 = TextEditingController(text: pw);
|
|
final p1 = TextEditingController(text: pw);
|
|
var validateLength = false;
|
|
var validateSame = false;
|
|
dialogManager.show((setState, close, context) {
|
|
submit() async {
|
|
close();
|
|
dialogManager.showLoading(translate("Waiting"));
|
|
if (await gFFI.serverModel.setPermanentPassword(p0.text)) {
|
|
dialogManager.dismissAll();
|
|
_showSuccess();
|
|
} else {
|
|
dialogManager.dismissAll();
|
|
_showError();
|
|
}
|
|
}
|
|
|
|
return CustomAlertDialog(
|
|
title: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(Icons.password_rounded, color: MyTheme.accent),
|
|
Text(translate('Set your own password')).paddingOnly(left: 10),
|
|
],
|
|
),
|
|
content: Form(
|
|
autovalidateMode: AutovalidateMode.onUserInteraction,
|
|
child: Column(mainAxisSize: MainAxisSize.min, children: [
|
|
TextFormField(
|
|
autofocus: true,
|
|
obscureText: true,
|
|
keyboardType: TextInputType.visiblePassword,
|
|
decoration: InputDecoration(
|
|
labelText: translate('Password'),
|
|
),
|
|
controller: p0,
|
|
validator: (v) {
|
|
if (v == null) return null;
|
|
final val = v.trim().length > 5;
|
|
if (validateLength != val) {
|
|
// use delay to make setState success
|
|
Future.delayed(Duration(microseconds: 1),
|
|
() => setState(() => validateLength = val));
|
|
}
|
|
return val
|
|
? null
|
|
: translate('Too short, at least 6 characters.');
|
|
},
|
|
),
|
|
TextFormField(
|
|
obscureText: true,
|
|
keyboardType: TextInputType.visiblePassword,
|
|
decoration: InputDecoration(
|
|
labelText: translate('Confirmation'),
|
|
),
|
|
controller: p1,
|
|
validator: (v) {
|
|
if (v == null) return null;
|
|
final val = p0.text == v;
|
|
if (validateSame != val) {
|
|
Future.delayed(Duration(microseconds: 1),
|
|
() => setState(() => validateSame = val));
|
|
}
|
|
return val
|
|
? null
|
|
: translate('The confirmation is not identical.');
|
|
},
|
|
),
|
|
])),
|
|
onCancel: close,
|
|
onSubmit: (validateLength && validateSame) ? submit : null,
|
|
actions: [
|
|
dialogButton(
|
|
'Cancel',
|
|
icon: Icon(Icons.close_rounded),
|
|
onPressed: close,
|
|
isOutline: true,
|
|
),
|
|
dialogButton(
|
|
'OK',
|
|
icon: Icon(Icons.done_rounded),
|
|
onPressed: (validateLength && validateSame) ? submit : null,
|
|
),
|
|
],
|
|
);
|
|
});
|
|
}
|
|
|
|
void setTemporaryPasswordLengthDialog(
|
|
OverlayDialogManager dialogManager) async {
|
|
List<String> lengths = ['6', '8', '10'];
|
|
String length = await bind.mainGetOption(key: "temporary-password-length");
|
|
var index = lengths.indexOf(length);
|
|
if (index < 0) index = 0;
|
|
length = lengths[index];
|
|
dialogManager.show((setState, close, context) {
|
|
setLength(newValue) {
|
|
final oldValue = length;
|
|
if (oldValue == newValue) return;
|
|
setState(() {
|
|
length = newValue;
|
|
});
|
|
bind.mainSetOption(key: "temporary-password-length", value: newValue);
|
|
bind.mainUpdateTemporaryPassword();
|
|
Future.delayed(Duration(milliseconds: 200), () {
|
|
close();
|
|
_showSuccess();
|
|
});
|
|
}
|
|
|
|
return CustomAlertDialog(
|
|
title: Text(translate("Set one-time password length")),
|
|
content: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
|
children: lengths
|
|
.map(
|
|
(value) => Row(
|
|
children: [
|
|
Text(value),
|
|
Radio(
|
|
value: value, groupValue: length, onChanged: setLength),
|
|
],
|
|
),
|
|
)
|
|
.toList()),
|
|
);
|
|
}, backDismiss: true, clickMaskDismiss: true);
|
|
}
|
|
|
|
void showServerSettingsWithValue(
|
|
ServerConfig serverConfig, OverlayDialogManager dialogManager) async {
|
|
var isInProgress = false;
|
|
final idCtrl = TextEditingController(text: serverConfig.idServer);
|
|
final relayCtrl = TextEditingController(text: serverConfig.relayServer);
|
|
final apiCtrl = TextEditingController(text: serverConfig.apiServer);
|
|
final keyCtrl = TextEditingController(text: serverConfig.key);
|
|
|
|
RxString idServerMsg = ''.obs;
|
|
RxString relayServerMsg = ''.obs;
|
|
RxString apiServerMsg = ''.obs;
|
|
|
|
final controllers = [idCtrl, relayCtrl, apiCtrl, keyCtrl];
|
|
final errMsgs = [
|
|
idServerMsg,
|
|
relayServerMsg,
|
|
apiServerMsg,
|
|
];
|
|
|
|
dialogManager.show((setState, close, context) {
|
|
Future<bool> submit() async {
|
|
setState(() {
|
|
isInProgress = true;
|
|
});
|
|
bool ret = await setServerConfig(
|
|
controllers,
|
|
errMsgs,
|
|
ServerConfig(
|
|
idServer: idCtrl.text.trim(),
|
|
relayServer: relayCtrl.text.trim(),
|
|
apiServer: apiCtrl.text.trim(),
|
|
key: keyCtrl.text.trim()));
|
|
setState(() {
|
|
isInProgress = false;
|
|
});
|
|
return ret;
|
|
}
|
|
|
|
return CustomAlertDialog(
|
|
title: Row(
|
|
children: [
|
|
Expanded(child: Text(translate('ID/Relay Server'))),
|
|
...ServerConfigImportExportWidgets(controllers, errMsgs),
|
|
],
|
|
),
|
|
content: Form(
|
|
child: Obx(() => Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: <Widget>[
|
|
TextFormField(
|
|
controller: idCtrl,
|
|
decoration: InputDecoration(
|
|
labelText: translate('ID Server'),
|
|
errorText: idServerMsg.value.isEmpty
|
|
? null
|
|
: idServerMsg.value),
|
|
)
|
|
] +
|
|
[
|
|
TextFormField(
|
|
controller: relayCtrl,
|
|
decoration: InputDecoration(
|
|
labelText: translate('Relay Server'),
|
|
errorText: relayServerMsg.value.isEmpty
|
|
? null
|
|
: relayServerMsg.value),
|
|
)
|
|
] +
|
|
[
|
|
TextFormField(
|
|
controller: apiCtrl,
|
|
decoration: InputDecoration(
|
|
labelText: translate('API Server'),
|
|
),
|
|
autovalidateMode: AutovalidateMode.onUserInteraction,
|
|
validator: (v) {
|
|
if (v != null && v.isNotEmpty) {
|
|
if (!(v.startsWith('http://') ||
|
|
v.startsWith("https://"))) {
|
|
return translate("invalid_http");
|
|
}
|
|
}
|
|
return null;
|
|
},
|
|
),
|
|
TextFormField(
|
|
controller: keyCtrl,
|
|
decoration: InputDecoration(
|
|
labelText: 'Key',
|
|
),
|
|
),
|
|
// NOT use Offstage to wrap LinearProgressIndicator
|
|
if (isInProgress) const LinearProgressIndicator(),
|
|
]))),
|
|
actions: [
|
|
dialogButton('Cancel', onPressed: () {
|
|
close();
|
|
}, isOutline: true),
|
|
dialogButton(
|
|
'OK',
|
|
onPressed: () async {
|
|
if (await submit()) {
|
|
close();
|
|
showToast(translate('Successful'));
|
|
} else {
|
|
showToast(translate('Failed'));
|
|
}
|
|
},
|
|
),
|
|
],
|
|
);
|
|
});
|
|
}
|
|
|
|
Future<String?> validateAsync(String value) async {
|
|
value = value.trim();
|
|
if (value.isEmpty) {
|
|
return null;
|
|
}
|
|
final res = await bind.mainTestIfValidServer(server: value);
|
|
return res.isEmpty ? null : res;
|
|
}
|