mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 15:36:59 +01:00
96 lines
3.8 KiB
Swift
96 lines
3.8 KiB
Swift
//
|
|
// WidgetAPI+Electrum.swift
|
|
// BlueWallet
|
|
//
|
|
// Created by Marcos Rodriguez on 11/8/20.
|
|
// Copyright © 2020 BlueWallet. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct APIError: LocalizedError {
|
|
var errorDescription: String = "Failed to fetch Electrum data..."
|
|
}
|
|
|
|
extension WidgetAPI {
|
|
|
|
static func fetchNextBlockFee(completion: @escaping ((MarketData?, Error?) -> Void), userElectrumSettings: UserDefaultsElectrumSettings = UserDefaultsGroup.getElectrumSettings()) {
|
|
guard let host = userElectrumSettings.host, let _ = userElectrumSettings.sslPort, let port = userElectrumSettings.port else {
|
|
print("No valid UserDefaultsElectrumSettings found");
|
|
return
|
|
}
|
|
DispatchQueue.global(qos: .background).async {
|
|
let client = SwiftTCPClient()
|
|
client.receiveCompletion = { result in
|
|
switch result {
|
|
case .success(let data):
|
|
print("Received: \(data)")
|
|
guard let response = String(bytes: data, encoding: .utf8)?.data(using: .utf8) else {
|
|
client.close()
|
|
completion(nil, APIError())
|
|
return
|
|
}
|
|
do {
|
|
if let json = try JSONSerialization.jsonObject(with: response, options: .allowFragments) as? [String: AnyObject], let nextBlockResponseDouble = json["result"] as? Double {
|
|
print("Successfully obtained response from Electrum sever")
|
|
print(userElectrumSettings)
|
|
client.close()
|
|
let marketData = MarketData(nextBlock: String(format: "%.0f", (nextBlockResponseDouble / 1024) * 100000000), sats: "0", price: "0", rate: 0)
|
|
completion(marketData, nil)
|
|
}
|
|
} catch {
|
|
client.close()
|
|
completion(nil, APIError())
|
|
}
|
|
case .failure(let error):
|
|
print("Error: \(error.localizedDescription)")
|
|
client.close()
|
|
completion(nil, APIError())
|
|
}
|
|
}
|
|
|
|
if client.connect(to: host, port: UInt32(exactly: port)!) {
|
|
let message = "{\"id\": 1, \"method\": \"blockchain.estimatefee\", \"params\": [1]}\n"
|
|
if let data = message.data(using: .utf8), client.send(data: data) {
|
|
print("Message sent!")
|
|
RunLoop.current.run(until: Date(timeIntervalSinceNow: 5))
|
|
}
|
|
client.close()
|
|
} else {
|
|
print("Connection failed")
|
|
client.close()
|
|
if userElectrumSettings.host == DefaultElectrumPeers.last?.host {
|
|
completion(nil, APIError())
|
|
} else if let currentIndex = DefaultElectrumPeers.firstIndex(where: {$0.host == userElectrumSettings.host}) {
|
|
fetchNextBlockFee(completion: completion, userElectrumSettings: DefaultElectrumPeers[DefaultElectrumPeers.index(after: currentIndex)])
|
|
} else {
|
|
if let first = DefaultElectrumPeers.first {
|
|
fetchNextBlockFee(completion: completion, userElectrumSettings: first)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static func fetchMarketData(currency: String, completion: @escaping ((MarketData?, Error?) -> Void)) {
|
|
var marketDataEntry = MarketData(nextBlock: "...", sats: "...", price: "...", rate: 0)
|
|
WidgetAPI.fetchPrice(currency: currency, completion: { (result, error) in
|
|
if let result = result {
|
|
marketDataEntry.rate = result.rateDouble
|
|
marketDataEntry.price = result.formattedRate ?? "!"
|
|
}
|
|
WidgetAPI.fetchNextBlockFee { (marketData, error) in
|
|
if let nextBlock = marketData?.nextBlock {
|
|
marketDataEntry.nextBlock = nextBlock
|
|
} else {
|
|
marketDataEntry.nextBlock = "!"
|
|
}
|
|
if let rateDouble = result?.rateDouble {
|
|
marketDataEntry.sats = numberFormatter.string(from: NSNumber(value: Double(10 / rateDouble) * 10000000)) ?? "!"
|
|
}
|
|
completion(marketDataEntry, nil)
|
|
}
|
|
})
|
|
}
|
|
|
|
}
|