-
Notifications
You must be signed in to change notification settings - Fork 2
/
Extensions.swift
393 lines (315 loc) · 11.5 KB
/
Extensions.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
//
// Extensions.swift
// FullyNoded
//
// Created by Peter Denton on 7/9/21.
// Copyright © 2021 Fontaine. All rights reserved.
//
import Foundation
public extension Date {
var displayDate: String {
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "MMM-dd-yyyy HH:mm"
return dateFormatter.string(from: self)
}
var secondsSince: Int {
return Int(Date().timeIntervalSince(self))
}
}
public extension String {
var btc: String {
return self + " btc"
}
var sats: String {
var sats = self
sats = sats.replacingOccurrences(of: "-", with: "")
guard let dbl = Double(sats) else {
return self + " sats"
}
if dbl < 1.0 {
return dbl.avoidNotation + " sat"
} else if dbl == 1.0 {
return "1 sat"
} else {
if self.contains(".") || self.contains(",") {
return "\(sats) sats"
} else {
return "\(sats.withCommas) sats"
}
}
}
var withCommas: String {
let dbl = Double(self)!
let numberFormatter = NumberFormatter()
numberFormatter.numberStyle = NumberFormatter.Style.decimal
numberFormatter.locale = Locale(identifier: "en_US")
return numberFormatter.string(from: NSNumber(value:dbl))!
}
var utf8: Data {
return data(using: .utf8)!
}
func condenseWhitespace() -> String {
let components = self.components(separatedBy: .whitespacesAndNewlines)
return components.filter { !$0.isEmpty }.joined(separator: " ")
}
var isAlphanumeric: Bool {
return !isEmpty && range(of: "[^a-zA-Z0-9]", options: .regularExpression) == nil
}
static let numberFormatter = NumberFormatter()
var doubleValue: Double {
String.numberFormatter.decimalSeparator = "."
if let result = String.numberFormatter.number(from: self) {
return result.doubleValue
} else {
String.numberFormatter.decimalSeparator = ","
if let result = String.numberFormatter.number(from: self) {
return result.doubleValue
}
}
return 0
}
var satsToBtc: Double {
var processed = "\(self)".replacingOccurrences(of: ",", with: "")
processed = processed.replacingOccurrences(of: ".", with: "")
processed = processed.replacingOccurrences(of: "-", with: "")
processed = processed.replacingOccurrences(of: "+", with: "")
processed = processed.replacingOccurrences(of: "sats", with: "").condenseWhitespace()
let btc = Double(processed)! / 100000000.0
return btc
}
var sha256Hash: String {
return Crypto.sha256hash(self)
}
var btcToSats: String {
return (Int(self.doubleValue * 100000000.0)).avoidNotation
}
var formatted: String {
var formatted = ""
for (i, word) in self.description.split(separator: " ").enumerated() {
formatted += " \(i + 1). \(word) "
}
return formatted
}
var withSpaces: String {
var addressToDisplay = ""
for (i, c) in self.enumerated() {
addressToDisplay += "\(c)"
if i > 0 && i < self.count - 2 {
if i.isMultiple(of: 4) {
addressToDisplay += " - "
}
}
}
return addressToDisplay
}
}
public extension Notification.Name {
static let refreshNode = Notification.Name(rawValue: "refreshNode")
static let refreshWallet = Notification.Name(rawValue: "refreshWallet")
}
public extension Data {
var utf8String:String? {
return String(bytes: self, encoding: .utf8)
}
/// A hexadecimal string representation of the bytes.
var hexString: String {
let hexDigits = Array("0123456789abcdef".utf16)
var hexChars = [UTF16.CodeUnit]()
hexChars.reserveCapacity(count * 2)
for byte in self {
let (index1, index2) = Int(byte).quotientAndRemainder(dividingBy: 16)
hexChars.append(hexDigits[index1])
hexChars.append(hexDigits[index2])
}
return String(utf16CodeUnits: hexChars, count: hexChars.count)
}
static func decodeUrlSafeBase64(_ value: String) throws -> Data {
var stringtoDecode = value.condenseWhitespace()
stringtoDecode = value.replacingOccurrences(of: "-", with: "+")
stringtoDecode = stringtoDecode.replacingOccurrences(of: "_", with: "/")
switch (stringtoDecode.utf8.count % 4) {
case 2:
stringtoDecode += "=="
case 3:
stringtoDecode += "="
default:
break
}
guard let data = Data(base64Encoded: stringtoDecode, options: [.ignoreUnknownCharacters]) else {
throw NSError(domain: "decodeUrlSafeBase64", code: 1,
userInfo: [NSLocalizedDescriptionKey: "Can't decode base64 string"])
}
return data
}
static func random(_ len: Int) -> Data {
let values = (0 ..< len).map { _ in UInt8.random(in: 0 ... 255) }
return Data(values)
}
var bytes: [UInt8] {
var b: [UInt8] = []
b.append(contentsOf: self)
return b
}
var urlSafeB64String: String {
return self.base64EncodedString().replacingOccurrences(of: "/", with: "_").replacingOccurrences(of: "=", with: "").replacingOccurrences(of: "+", with: "-")
}
}
public extension Double {
var btcToSats: Int {
return Int(self * 100000000.0)
}
func rounded(toPlaces places:Int) -> Double {
let divisor = Darwin.pow(10.0, Double(places))
return (self * divisor).rounded() / divisor
}
var withCommas: String {
let numberFormatter = NumberFormatter()
numberFormatter.numberStyle = NumberFormatter.Style.decimal
numberFormatter.locale = Locale(identifier: "en_US")
return numberFormatter.string(from: NSNumber(value:self))!
}
func withCommasNotRounded() -> String {
let arr = "\(self)".split(separator: ".")
let satoshis = "\(arr[1])"
let numberFormatter = NumberFormatter()
numberFormatter.numberStyle = .decimal
numberFormatter.locale = Locale(identifier: "en_US")
let arr1 = (numberFormatter.string(from: NSNumber(value:self))!).split(separator: ".")
let numberWithCommas = "\(arr1[0])"
return numberWithCommas + "." + satoshis
}
var avoidNotation: String {
let numberFormatter = NumberFormatter()
numberFormatter.maximumFractionDigits = 8
numberFormatter.numberStyle = .decimal
numberFormatter.locale = Locale(identifier: "en_US")
return numberFormatter.string(for: self) ?? ""
}
var satsToBtc: String {
var processed = "\(self)".replacingOccurrences(of: ",", with: "")
processed = processed.replacingOccurrences(of: "-", with: "")
processed = processed.replacingOccurrences(of: "+", with: "")
processed = processed.replacingOccurrences(of: "sats", with: "").condenseWhitespace()
let btc = processed.doubleValue / 100000000.0
return btc.avoidNotation
}
var sats: String {
let sats = self * 100000000.0
if sats < 1.0 {
return sats.avoidNotation + " sats"
} else if sats == 1.0 {
return "1 sat"
} else {
return "\(Int(sats).withCommas) sats"
}
}
var btc: String {
if self > 1.0 {
return self.withCommasNotRounded() + " btc"
} else {
return self.avoidNotation + " btc"
}
}
var balanceText: String {
let currency = UserDefaults.standard.object(forKey: "currency") as? String ?? "USD"
var symbol = "$"
for curr in currencies {
for (key, value) in curr {
if key == currency {
symbol = value
}
}
}
var dbl = self
if dbl < 0 {
dbl = dbl * -1.0
}
if dbl < 1.0 {
return "\(symbol)\(dbl.avoidNotation)"
} else {
return "\(symbol)\(dbl.rounded(toPlaces: 2).withCommas)"
}
}
var exchangeRate: String {
let currency = UserDefaults.standard.object(forKey: "currency") as? String ?? "USD"
var symbol = "$"
for curr in currencies {
for (key, value) in curr {
if key == currency {
symbol = value
}
}
}
return "\(symbol)\(self.withCommas) / btc"
}
var fiatString: String {
let currency = UserDefaults.standard.object(forKey: "currency") as? String ?? "USD"
var symbol = "$"
for curr in currencies {
for (key, value) in curr {
if key == currency {
symbol = value
}
}
}
if self < 1.0 {
return "\(symbol)\(self.avoidNotation)"
} else {
return "\(symbol)\(Int(self).withCommas)"
}
}
var satsToBtcDouble: Double {
return self / 100000000.0
}
var btcBalanceWithSpaces: String {
var btcBalance = Swift.abs(self.rounded(toPlaces: 8)).avoidNotation
btcBalance = btcBalance.replacingOccurrences(of: ",", with: "")
if !btcBalance.contains(".") {
btcBalance += ".0"
}
if self == 0.0 {
btcBalance = "0.00 000 000"
} else {
var decimalLocation = 0
var btcBalanceArray:[String] = []
var digitsPastDecimal = 0
for (i, c) in btcBalance.enumerated() {
btcBalanceArray.append("\(c)")
if c == "." {
decimalLocation = i
}
if i > decimalLocation {
digitsPastDecimal += 1
}
}
if digitsPastDecimal <= 7 {
let numberOfTrailingZerosNeeded = 7 - digitsPastDecimal
for _ in 0...numberOfTrailingZerosNeeded {
btcBalanceArray.append("0")
}
}
btcBalanceArray.insert(" ", at: decimalLocation + 3)
btcBalanceArray.insert(" ", at: decimalLocation + 7)
btcBalance = btcBalanceArray.joined()
}
return btcBalance
}
}
public extension Int {
var avoidNotation: String {
let numberFormatter = NumberFormatter()
numberFormatter.maximumFractionDigits = 8
numberFormatter.numberStyle = .decimal
numberFormatter.locale = Locale(identifier: "en_US")
return numberFormatter.string(for: self) ?? ""
}
var satsToBtcDouble: Double {
return Double(self) / 100000000.0
}
var withCommas: String {
let numberFormatter = NumberFormatter()
numberFormatter.numberStyle = NumberFormatter.Style.decimal
numberFormatter.locale = Locale(identifier: "en_US")
return numberFormatter.string(from: NSNumber(value:self))!
}
}