quorum/rpc/api/utils.go

50 lines
1.1 KiB
Go
Raw Normal View History

2015-06-08 01:23:54 -07:00
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)
2015-06-08 05:42:15 -07:00
case MinerApiName:
apis[i] = NewMinerApi(eth, codec)
2015-06-08 05:50:11 -07:00
case NetApiName:
apis[i] = NewNetApi(xeth, eth, codec)
2015-06-08 03:43:58 -07:00
case Web3ApiName:
apis[i] = NewWeb3(xeth, codec)
2015-06-08 01:23:54 -07:00
default:
return nil, fmt.Errorf("Unknown API '%s'", name)
}
}
return apis, nil
}
2015-06-08 05:42:15 -07:00
func Javascript(name string) string {
switch strings.ToLower(strings.TrimSpace(name)) {
case MinerApiName:
return Miner_JS
2015-06-08 05:50:11 -07:00
case NetApiName:
return Net_JS
2015-06-08 05:42:15 -07:00
}
return ""
}