aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/personal.go
blob: d00363627aaa7eddd03cf41cfd3cf4e6ddd3e13e (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package api

import (
    "time"

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

var (
    // mapping between methods and handlers
    personalMapping = map[string]personalhandler{
        "personal_listAccounts":  (*personal).ListAccounts,
        "personal_newAccount":    (*personal).NewAccount,
        "personal_deleteAccount": (*personal).DeleteAccount,
        "personal_unlockAccount": (*personal).UnlockAccount,
    }
)

// net callback handler
type personalhandler func(*personal, *shared.Request) (interface{}, error)

// net api provider
type personal struct {
    xeth     *xeth.XEth
    ethereum *eth.Ethereum
    methods  map[string]personalhandler
    codec    codec.ApiCoder
}

// create a new net api instance
func NewPersonal(xeth *xeth.XEth, eth *eth.Ethereum, coder codec.Codec) *personal {
    return &personal{
        xeth:     xeth,
        ethereum: eth,
        methods:  personalMapping,
        codec:    coder.New(nil),
    }
}

// collection with supported methods
func (self *personal) Methods() []string {
    methods := make([]string, len(self.methods))
    i := 0
    for k := range self.methods {
        methods[i] = k
        i++
    }
    return methods
}

// Execute given request
func (self *personal) Execute(req *shared.Request) (interface{}, error) {
    if callback, ok := self.methods[req.Method]; ok {
        return callback(self, req)
    }

    return nil, shared.NewNotImplementedError(req.Method)
}

func (self *personal) Name() string {
    return PersonalApiName
}

func (self *personal) ListAccounts(req *shared.Request) (interface{}, error) {
    return self.xeth.Accounts(), nil
}

func (self *personal) NewAccount(req *shared.Request) (interface{}, error) {
    args := new(NewAccountArgs)
    if err := self.codec.Decode(req.Params, &args); err != nil {
        return nil, shared.NewDecodeParamError(err.Error())
    }

    am := self.ethereum.AccountManager()
    acc, err := am.NewAccount(args.Passphrase)
    return acc.Address.Hex(), err
}

func (self *personal) DeleteAccount(req *shared.Request) (interface{}, error) {
    args := new(DeleteAccountArgs)
    if err := self.codec.Decode(req.Params, &args); err != nil {
        return nil, shared.NewDecodeParamError(err.Error())
    }

    addr := common.HexToAddress(args.Address)
    am := self.ethereum.AccountManager()
    if err := am.DeleteAccount(addr, args.Passphrase); err == nil {
        return true, nil
    } else {
        return false, err
    }
}

func (self *personal) UnlockAccount(req *shared.Request) (interface{}, error) {
    args := new(UnlockAccountArgs)
    if err := self.codec.Decode(req.Params, &args); err != nil {
        return nil, shared.NewDecodeParamError(err.Error())
    }

    var err error
    am := self.ethereum.AccountManager()
    addr := common.HexToAddress(args.Address)

    if args.Duration == -1 {
        err = am.Unlock(addr, args.Passphrase)
    } else {
        err = am.TimedUnlock(addr, args.Passphrase, time.Duration(args.Duration)*time.Second)
    }

    if err == nil {
        return true, nil
    }
    return false, err
}