2020-01-04 19:31:52 +00:00
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'dart:convert';
|
|
|
|
import 'package:http/http.dart' as http;
|
|
|
|
import 'package:hive/hive.dart';
|
|
|
|
import 'package:cake_wallet/src/domain/common/digest_request.dart';
|
|
|
|
|
|
|
|
part 'node.g.dart';
|
|
|
|
|
2020-05-26 15:27:10 +00:00
|
|
|
@HiveType(typeId: 1)
|
2020-01-04 19:31:52 +00:00
|
|
|
class Node extends HiveObject {
|
2020-01-08 12:26:34 +00:00
|
|
|
Node({@required this.uri, this.login, this.password});
|
|
|
|
|
|
|
|
Node.fromMap(Map map)
|
|
|
|
: uri = (map['uri'] ?? '') as String,
|
|
|
|
login = map['login'] as String,
|
|
|
|
password = map['password'] as String;
|
|
|
|
|
2020-01-04 19:31:52 +00:00
|
|
|
static const boxName = 'Nodes';
|
|
|
|
|
|
|
|
@HiveField(0)
|
|
|
|
String uri;
|
|
|
|
|
|
|
|
@HiveField(1)
|
|
|
|
String login;
|
|
|
|
|
|
|
|
@HiveField(2)
|
|
|
|
String password;
|
|
|
|
|
|
|
|
Future<bool> requestNode(String uri, {String login, String password}) async {
|
2020-01-08 12:26:34 +00:00
|
|
|
Map<String, dynamic> resBody;
|
2020-01-04 19:31:52 +00:00
|
|
|
|
|
|
|
if (login != null && password != null) {
|
|
|
|
final digestRequest = DigestRequest();
|
2020-01-08 12:26:34 +00:00
|
|
|
final response = await digestRequest.request(
|
2020-01-04 19:31:52 +00:00
|
|
|
uri: uri, login: login, password: password);
|
2020-01-08 12:26:34 +00:00
|
|
|
resBody = response.data as Map<String, dynamic>;
|
2020-01-04 19:31:52 +00:00
|
|
|
} else {
|
|
|
|
final url = Uri.http(uri, '/json_rpc');
|
2020-01-08 12:26:34 +00:00
|
|
|
final headers = {'Content-type': 'application/json'};
|
|
|
|
final body =
|
2020-01-04 19:31:52 +00:00
|
|
|
json.encode({"jsonrpc": "2.0", "id": "0", "method": "get_info"});
|
2020-01-08 12:26:34 +00:00
|
|
|
final response =
|
2020-01-04 19:31:52 +00:00
|
|
|
await http.post(url.toString(), headers: headers, body: body);
|
2020-01-08 12:26:34 +00:00
|
|
|
resBody = json.decode(response.body) as Map<String, dynamic>;
|
2020-01-04 19:31:52 +00:00
|
|
|
}
|
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
return !(resBody["result"]["offline"] as bool);
|
2020-01-04 19:31:52 +00:00
|
|
|
}
|
|
|
|
}
|