BotZ_app/lib/ui/server_form.dart

154 lines
4.0 KiB
Dart

import 'package:flutter/material.dart';
import 'package:logger/logger.dart';
import 'dart:convert';
import 'dialog.dart';
import '../utils/verify_server.dart';
final log = Logger();
class ServerForm extends StatefulWidget {
ServerForm({Key key}) : super(key: key);
@override
_ServerFormState createState() => _ServerFormState();
}
class _ServerFormState extends State<ServerForm> {
Uri zAddress;
Uri botZAddress;
bool _autoValidate = false;
bool _disableFields = false;
final _serverFormKey = GlobalKey<FormState>();
final zController = TextEditingController();
final botZController = TextEditingController();
InputDecoration _textFieldDecoration(String label, IconData icon) {
return InputDecoration(
labelText: label,
icon: Icon(icon),
hintText: 'Please, insert $label address',
);
}
SnackBar showProgress() {
return SnackBar(
content: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
CircularProgressIndicator(
value: null,
strokeWidth: 7.0,
),
Text('Processing Data')
],
));
}
String validateServer(String address) {
if (address.isEmpty) {
return 'Server address must not be empty';
}
try {
Uri.parse(address);
} on FormatException catch (e) {
return e.toString();
}
return null;
}
String validateZServer(String address) {
String baseValidation = this.validateServer(address);
if (baseValidation != null) {
return baseValidation;
}
if (utf8.encode(address).length > 72) {
return "Server address string length is > 72 bytes. Refusing to go on.";
}
return null;
}
Future<void> _onPressed() async {
log.d("Button pressed");
setState(() {
_disableFields = true;
});
Scaffold.of(context).showSnackBar(this.showProgress());
if (!_serverFormKey.currentState.validate()) {
setState(() {
_autoValidate = true;
_disableFields = false;
});
Scaffold.of(context).hideCurrentSnackBar();
return;
}
bool resp;
Uri _botZAddr = Uri.parse(botZController.text);
Uri _zAddr = Uri.parse(zController.text);
log.d("Received botZAddr: $_botZAddr\tzAddr: $_zAddr");
try {
resp = await verifyServer(_botZAddr, _zAddr);
log.i("Secret is${resp ? ' ' : ' NOT '}a match");
} catch (err) {
log.e("Error: ${err.toString()}");
showDialog(
context: context,
builder: errorDialogBuilder("Error", "${err.toString()}"));
} finally {
log.d("Clean the state");
setState(() {
_disableFields = false;
});
Scaffold.of(context).hideCurrentSnackBar();
}
if (!resp) {
showDialog(
context: context,
builder: errorDialogBuilder("Error",
"The BotZ server does not target the provided Z server."));
} else {
_serverFormKey.currentState.save();
// TODO: go to the next window.
}
log.d("Done");
}
@override
Widget build(BuildContext context) {
return Form(
key: _serverFormKey,
child: Column(children: <Widget>[
TextFormField(
autofocus: true,
autocorrect: false,
controller: zController,
enabled: !_disableFields,
decoration: this._textFieldDecoration("Z server", Icons.http),
validator: this.validateZServer,
autovalidate: _autoValidate,
onSaved: (String addr) {
zAddress = Uri.parse(addr);
}),
TextFormField(
autocorrect: false,
controller: botZController,
enabled: !_disableFields,
decoration: this._textFieldDecoration("BotZ server", Icons.http),
validator: this.validateServer,
autovalidate: _autoValidate,
onSaved: (String addr) {
botZAddress = Uri.parse(addr);
}),
RaisedButton(
onPressed: _onPressed,
child: Text('Save'),
),
]),
);
}
}