aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/utils.go
blob: 7024365e4f50d1c420380d3771e6ec353266cc40 (plain) (blame)
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
package api

import (
    "strings"

    "fmt"

    "github.com/ethereum/go-ethereum/eth"
    "github.com/ethereum/go-ethereum/rpc/codec"
    "github.com/ethereum/go-ethereum/xeth"
)

// Parse a comma separated API string to individual api's
func ParseApiString(apistr string, codec codec.Codec, xeth *xeth.XEth, eth *eth.Ethereum) ([]EthereumApi, error) {
    if len(strings.TrimSpace(apistr)) == 0 {
        return nil, fmt.Errorf("Empty apistr provided")
    }

    names := strings.Split(apistr, ",")
    apis := make([]EthereumApi, len(names))

    for i, name := range names {
        switch strings.ToLower(strings.TrimSpace(name)) {
        case EthApiName:
            apis[i] = NewEthApi(xeth, codec)
        case Web3ApiName:
            apis[i] = NewWeb3(xeth, codec)
        default:
            return nil, fmt.Errorf("Unknown API '%s'", name)
        }
    }

    return apis, nil
}