mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-06-02 23:16:51 +00:00
* drop common uuid v4 func and imported package as needed * removed common functions regarding json marshal and unmarshal and used the json package directly. WRT unmarshal it was calling reflect and converted to string which is also checked in the JSON package so it was doing a double up, this will be a tiny gain as it was directly used in the requester package for all our outbound requests. * add in string * explicitly throw away return error value * atleast return the error that websocket initialise returns * return error when not connected * fix comment * Adds comments * move package declarations * drop append whenever we call supported * remove unused import * Change incorrect spelling * fix tests * fix go import issue
94 lines
1.9 KiB
Go
94 lines
1.9 KiB
Go
package currency
|
|
|
|
import (
|
|
"encoding/json"
|
|
"strings"
|
|
)
|
|
|
|
// NewCurrenciesFromStringArray returns a Currencies object from strings
|
|
func NewCurrenciesFromStringArray(currencies []string) Currencies {
|
|
var list Currencies
|
|
for i := range currencies {
|
|
if currencies[i] == "" {
|
|
continue
|
|
}
|
|
list = append(list, NewCode(currencies[i]))
|
|
}
|
|
return list
|
|
}
|
|
|
|
// Currencies define a range of supported currency codes
|
|
type Currencies []Code
|
|
|
|
// Strings returns an array of currency strings
|
|
func (c Currencies) Strings() []string {
|
|
var list []string
|
|
for _, d := range c {
|
|
list = append(list, d.String())
|
|
}
|
|
return list
|
|
}
|
|
|
|
// Contains checks to see if a currency code is contained in the currency list
|
|
func (c Currencies) Contains(cc Code) bool {
|
|
for i := range c {
|
|
if c[i].Item == cc.Item {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Join returns a comma serparated string
|
|
func (c Currencies) Join() string {
|
|
return strings.Join(c.Strings(), ",")
|
|
}
|
|
|
|
// UnmarshalJSON comforms type to the umarshaler interface
|
|
func (c *Currencies) UnmarshalJSON(d []byte) error {
|
|
var configCurrencies string
|
|
err := json.Unmarshal(d, &configCurrencies)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var allTheCurrencies Currencies
|
|
for _, data := range strings.Split(configCurrencies, ",") {
|
|
allTheCurrencies = append(allTheCurrencies, NewCode(data))
|
|
}
|
|
|
|
*c = allTheCurrencies
|
|
return nil
|
|
}
|
|
|
|
// MarshalJSON conforms type to the marshaler interface
|
|
func (c Currencies) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(c.Join())
|
|
}
|
|
|
|
// Match returns if the full list equals the supplied list
|
|
func (c Currencies) Match(other Currencies) bool {
|
|
if len(c) != len(other) {
|
|
return false
|
|
}
|
|
|
|
for _, d := range c {
|
|
var found bool
|
|
for i := range other {
|
|
if d == other[i] {
|
|
found = true
|
|
break
|
|
}
|
|
}
|
|
if !found {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// HasData checks to see if Currencies type has actual currencies
|
|
func (c Currencies) HasData() bool {
|
|
return len(c) != 0
|
|
}
|