You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cyberwow/cyberwow/lib/controller/rpc.dart

137 lines
3.0 KiB

/*
Copyright 2019 fuwa
This file is part of CyberWOW.
CyberWOW is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
CyberWOW is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with CyberWOW. If not, see <https://www.gnu.org/licenses/>.
*/
import 'dart:async';
import 'dart:convert';
import 'package:http/http.dart' as http;
import 'package:flutter/foundation.dart';
import '../config.dart';
Future<http.Response> rpc(String method) async {
final url = 'http://127.0.0.1:${config.port}/json_rpc';
final body = json.encode
(
{
'jsonrpc': '2.0',
'id': '0',
'method': method,
}
);
var response;
try {
response = await http.post
( url,
body: body
);
}
catch (e) {
// print(e);
}
return response;
}
Future<http.Response> syncInfo() async {
// print('rpc sync_info');
return rpc('sync_info');
}
Future<int> targetHeight() async {
var response = await syncInfo();
if (response == null) return -1;
// print('Response status: ${response.statusCode}');
if (response.statusCode != 200) {
return -1;
} else {
final responseBody = json.decode(response.body)['result'];
return responseBody["target_height"];
}
}
Future<int> height() async {
var response = await syncInfo();
if (response == null) return -1;
// print('Response status: ${response.statusCode}');
if (response.statusCode != 200) {
return -1;
} else {
final responseBody = json.decode(response.body)['result'];
return responseBody["height"];
}
}
Future<http.Response> getInfo() async {
// print('rpc get_info');
return rpc('get_info');
}
Future<bool> offline() async {
var response = await getInfo();
if (response == null) return true;
// print('Response status: ${response.statusCode}');
if (response.statusCode != 200) {
return true;
} else {
final responseBody = json.decode(response.body)['result'];
return responseBody["offline"];
}
}
Future<int> outgoingConnectionsCount() async {
var response = await getInfo();
if (response == null) return -1;
// print('Response status: ${response.statusCode}');
if (response.statusCode != 200) {
return -1;
} else {
final responseBody = json.decode(response.body)['result'];
return responseBody["outgoing_connections_count"];
}
}
Future<int> incomingConnectionsCount() async {
var response = await getInfo();
if (response == null) return -1;
// print('Response status: ${response.statusCode}');
if (response.statusCode != 200) {
return -1;
} else {
final responseBody = json.decode(response.body)['result'];
return responseBody["incoming_connections_count"];
}
}