plugeth/rpc/api/utils.go

70 lines
1.6 KiB
Go
Raw Normal View History

2015-06-08 08:23:54 +00: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)) {
2015-06-09 14:06:51 +00:00
case AdminApiName:
apis[i] = NewAdminApi(xeth, eth, codec)
2015-06-09 07:48:18 +00:00
case DebugApiName:
apis[i] = NewDebugApi(xeth, eth, codec)
2015-06-08 08:23:54 +00:00
case EthApiName:
apis[i] = NewEthApi(xeth, codec)
2015-06-08 12:42:15 +00:00
case MinerApiName:
apis[i] = NewMinerApi(eth, codec)
2015-06-08 12:50:11 +00:00
case NetApiName:
apis[i] = NewNetApi(xeth, eth, codec)
2015-06-10 10:35:12 +00:00
case ShhApiName:
apis[i] = NewShhApi(xeth, eth, codec)
case TxPoolApiName:
2015-06-10 08:37:10 +00:00
apis[i] = NewTxPoolApi(xeth, eth, codec)
2015-06-09 08:59:44 +00:00
case PersonalApiName:
2015-06-09 14:06:51 +00:00
apis[i] = NewPersonalApi(xeth, eth, codec)
2015-06-08 10:43:58 +00:00
case Web3ApiName:
2015-06-09 14:06:51 +00:00
apis[i] = NewWeb3Api(xeth, codec)
2015-06-08 08:23:54 +00:00
default:
return nil, fmt.Errorf("Unknown API '%s'", name)
}
}
return apis, nil
}
2015-06-08 12:42:15 +00:00
func Javascript(name string) string {
switch strings.ToLower(strings.TrimSpace(name)) {
2015-06-09 14:06:51 +00:00
case AdminApiName:
return Admin_JS
2015-06-09 07:48:18 +00:00
case DebugApiName:
return Debug_JS
2015-06-08 12:42:15 +00:00
case MinerApiName:
return Miner_JS
2015-06-08 12:50:11 +00:00
case NetApiName:
return Net_JS
2015-06-10 10:35:12 +00:00
case ShhApiName:
return Shh_JS
case TxPoolApiName:
2015-06-10 08:37:10 +00:00
return TxPool_JS
2015-06-09 08:59:44 +00:00
case PersonalApiName:
return Personal_JS
2015-06-08 12:42:15 +00:00
}
return ""
}