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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
cyberwow/cyberwow/lib/controller/rpc.dart

220 lines
5.1 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';
import '../helper.dart';
int rpcID = 0;
Future<http.Response> rpc(String method) async {
final url = 'http://${host}:${config.port}/json_rpc';
rpcID += 1;
final body = json.encode
(
{
'jsonrpc': '2.0',
'id': rpcID.toString(),
'method': method,
}
);
var response;
try {
response = await http.post
( url,
body: body
);
}
catch (e) {
// print(e);
}
return response;
}
Future<String> rpcString(String method, {String field}) async {
final response = await rpc(method);
if (response == null) return '';
if (response.statusCode != 200) {
return '';
} else {
final _result = json.decode(response.body)['result'];
final _field = field == null ? _result : _result[field];
return pretty(_field);
}
}
Future<http.Response> syncInfo() async => rpc('sync_info');
Future<String> syncInfoString() async => rpcString('sync_info');
Future<int> targetHeight() async {
final 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 {
final 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 => rpc('get_info');
Future<String> getInfoString() async => rpcString('get_info');
Future<bool> offline() async {
final 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 {
final 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 {
final 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"];
}
}
Future<String> getConnectionsString() async => rpcString('get_connections', field: 'connections');
Future<http.Response> rpcOther(String method) async {
final url = 'http://${host}:${config.port}/${method}';
var response;
try {
response = await http.post
( url,
);
}
catch (e) {
// print(e);
}
return response;
}
Future<String> rpcOtherString(String method, {String field}) async {
final response = await rpcOther(method);
if (response == null) return '';
if (response.statusCode != 200) {
return '';
} else {
final _body= json.decode(response.body);
final _field = field == null ? _body: _body[field];
return pretty(_field);
}
}
// Future<String> getTransactionPoolString() async => rpcOtherString('get_transaction_pool');
Future<http.Response> getTransactionPool() async => rpcOther('get_transaction_pool');
Future<List<dynamic>> getTransactionPoolSimple() async {
final response = await getTransactionPool();
// log.finer('getTransactionPoolSimple response: $response');
if (response == null) return [];
// print('Response status: ${response.statusCode}');
if (response.statusCode != 200) {
return [];
} else {
final responseBody = json.decode(response.body);
var result = responseBody['transactions'];
if (result == null) {
return [];
}
else {
result.forEach
(
(tx) {
tx.remove('tx_blob');
tx.remove('tx_json');
tx.remove('last_failed_id_hash');
tx.remove('max_used_block_id_hash');
}
);
return result;
}
}
}