48 lines
973 B
Go
48 lines
973 B
Go
package onramp
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
"github.com/status-im/status-go/logutils"
|
|
)
|
|
|
|
type Manager struct {
|
|
providers []Provider
|
|
}
|
|
|
|
func NewManager(providers []Provider) *Manager {
|
|
return &Manager{
|
|
providers: providers,
|
|
}
|
|
}
|
|
|
|
func (c *Manager) GetProviders(ctx context.Context) ([]CryptoOnRamp, error) {
|
|
ret := make([]CryptoOnRamp, 0, len(c.providers))
|
|
for _, provider := range c.providers {
|
|
cryptoOnRamp, err := provider.GetCryptoOnRamp(ctx)
|
|
if err != nil {
|
|
logutils.ZapLogger().Error("failed to get crypto on ramp", zap.String("id", provider.ID()), zap.Error(err))
|
|
continue
|
|
}
|
|
|
|
ret = append(ret, cryptoOnRamp)
|
|
}
|
|
|
|
return ret, nil
|
|
}
|
|
|
|
func (c *Manager) GetURL(ctx context.Context, providerID string, parameters Parameters) (string, error) {
|
|
for _, provider := range c.providers {
|
|
if provider.ID() != providerID {
|
|
continue
|
|
}
|
|
|
|
return provider.GetURL(ctx, parameters)
|
|
}
|
|
|
|
return "", errors.New("provider not found")
|
|
}
|