removed the try catch again #15
1 changed files with 41 additions and 41 deletions
|
@ -155,7 +155,8 @@ class _ServerListState extends State<ServerList> {
|
||||||
builder: (BuildContext context) {
|
builder: (BuildContext context) {
|
||||||
return AlertDialog(
|
return AlertDialog(
|
||||||
title: Text('Adding a server'),
|
title: Text('Adding a server'),
|
||||||
content: SingleChildScrollView(child: Form(
|
content: SingleChildScrollView(
|
||||||
|
child: Form(
|
||||||
key: _formKey,
|
key: _formKey,
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
@ -173,7 +174,8 @@ class _ServerListState extends State<ServerList> {
|
||||||
child: RaisedButton(
|
child: RaisedButton(
|
||||||
child: Text("Add"),
|
child: Text("Add"),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
if (_formKey.currentState.validate()&&uri.text.isNotEmpty) {
|
if (_formKey.currentState.validate() &&
|
||||||
|
uri.text.isNotEmpty) {
|
||||||
_formKey.currentState.save();
|
_formKey.currentState.save();
|
||||||
Server server = Server(uri.text, uri.text);
|
Server server = Server(uri.text, uri.text);
|
||||||
servers.add(server);
|
servers.add(server);
|
||||||
|
@ -186,7 +188,8 @@ class _ServerListState extends State<ServerList> {
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),);
|
),
|
||||||
|
);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -220,7 +223,10 @@ class _ServerListState extends State<ServerList> {
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
border: Border(top: BorderSide(color: Colors.grey))),
|
border: Border(top: BorderSide(color: Colors.grey))),
|
||||||
),
|
),
|
||||||
Text(servers[index].uri,textAlign: TextAlign.left,),
|
Text(
|
||||||
|
servers[index].uri,
|
||||||
|
textAlign: TextAlign.left,
|
||||||
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -375,17 +381,11 @@ class _ServerListState extends State<ServerList> {
|
||||||
var location = uri.path;
|
var location = uri.path;
|
||||||
|
|
||||||
for (int i = 0; i < 5; i++) {
|
for (int i = 0; i < 5; i++) {
|
||||||
Response response;
|
Response response = await HttpUtils.getForFullResponse(
|
||||||
try {
|
|
||||||
response = await HttpUtils.getForFullResponse(
|
|
||||||
scheme + "://" + host,
|
scheme + "://" + host,
|
||||||
headers: <String, String>{"Location": location})
|
headers: <String, String>{"Location": location})
|
||||||
.timeout(new Duration(seconds: 3));
|
.timeout(new Duration(seconds: 3));
|
||||||
} catch (error){
|
|
||||||
if (error == TimeoutException)
|
|
||||||
return ServerStatus.timeout;
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
if (response.statusCode > 199 && response.statusCode < 300) {
|
if (response.statusCode > 199 && response.statusCode < 300) {
|
||||||
return ServerStatus.ok;
|
return ServerStatus.ok;
|
||||||
} else if (response.statusCode == HttpStatus.movedPermanently ||
|
} else if (response.statusCode == HttpStatus.movedPermanently ||
|
||||||
|
|
Loading…
Reference in a new issue