-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
price.go
107 lines (92 loc) · 3.44 KB
/
price.go
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
package faker
import (
"fmt"
"math"
"reflect"
"github.com/go-faker/faker/v4/pkg/options"
)
// Currency Codes | Source: https://en.wikipedia.org/wiki/ISO_4217
var currencies = []string{
"AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG",
"AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND",
"BOB", "BOV", "BRL", "BSD", "BTN", "BWP", "BYN", "BZD", "CAD",
"CDF", "CHE", "CHF", "CHW", "CLF", "CLP", "CNY", "COP", "COU",
"CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD",
"EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GHS",
"GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG",
"HUF", "IDR", "ILS", "INR", "IQD", "IRR", "ISK", "JMD", "JOD",
"JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD",
"KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LYD", "MAD", "MDL",
"MGA", "MKD", "MMK", "MNT", "MOP", "MRU", "MUR", "MVR", "MWK",
"MXN", "MXV", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR",
"NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG",
"QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG",
"SEK", "SGD", "SHP", "SLL", "SOS", "SRD", "SSP", "STN", "SVC",
"SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD",
"TWD", "TZS", "UAH", "UGX", "USD", "USN", "UYI", "UYU", "UYW",
"UZS", "VES", "VND", "VUV", "WST", "XAF", "XAG", "XAU", "XBA",
"XBB", "XBC", "XBD", "XCD", "XDR", "XOF", "XPD", "XPF", "XPT",
"XSU", "XTS", "XUA", "XXX", "YER", "ZAR", "ZMW", "ZWL",
}
// Money provides an interface to generate a custom price with or without a random currency code
type Money interface {
Currency(v reflect.Value) (interface{}, error)
Amount(v reflect.Value) (interface{}, error)
AmountWithCurrency(v reflect.Value) (interface{}, error)
}
// Price struct
type Price struct {
}
// GetPrice returns a new Money interface of Price struct
func GetPrice() Money {
return &Price{}
}
func (p Price) currency() string {
return randomElementFromSliceString(currencies)
}
// Currency returns a random currency from currencies
func (p Price) Currency(v reflect.Value) (interface{}, error) {
return p.currency(), nil
}
// Currency get fake Currency (IDR, USD)
func Currency(opts ...options.OptionFunc) string {
return singleFakeData(CurrencyTag, func() interface{} {
p := Price{}
return p.currency()
}, opts...).(string)
}
func (p Price) amount() float64 {
return precision(rand.Float64()*math.Pow10(rand.Intn(8)), rand.Intn(2)+1)
}
// Amount returns a random floating price amount
// with a random precision of [1,2] up to (10**8 - 1)
func (p Price) Amount(v reflect.Value) (interface{}, error) {
kind := v.Kind()
val := p.amount()
if kind == reflect.Float32 {
v.Set(reflect.ValueOf(float32(val)))
return float32(val), nil
}
v.Set(reflect.ValueOf(val))
return val, nil
}
func (p Price) amountwithcurrency() string {
val := p.amount()
return fmt.Sprintf("%s %f", p.currency(), val)
}
// AmountWithCurrency combines both price and currency together
func (p Price) AmountWithCurrency(v reflect.Value) (interface{}, error) {
return p.amountwithcurrency(), nil
}
// AmountWithCurrency get fake AmountWithCurrency USD 49257.100
func AmountWithCurrency(opts ...options.OptionFunc) string {
return singleFakeData(AmountWithCurrencyTag, func() interface{} {
p := Price{}
return p.amountwithcurrency()
}, opts...).(string)
}
// precision | a helper function to set precision of price
func precision(val float64, pre int) float64 {
div := math.Pow10(pre)
return float64(int64(val*div)) / div
}