Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
08d72a92
Commit
08d72a92
authored
Jun 09, 2015
by
Bas van Kervel
Committed by
Bas van Kervel
Jun 11, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added personal API
parent
09d0d55f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
259 additions
and
9 deletions
+259
-9
api.go
rpc/api/api.go
+22
-9
personal.go
rpc/api/personal.go
+118
-0
personal_args.go
rpc/api/personal_args.go
+81
-0
personal_js.go
rpc/api/personal_js.go
+34
-0
utils.go
rpc/api/utils.go
+4
-0
No files found.
rpc/api/api.go
View file @
08d72a92
package
api
package
api
import
"github.com/ethereum/go-ethereum/rpc/shared"
import
(
"strings"
"github.com/ethereum/go-ethereum/rpc/shared"
)
const
(
const
(
EthApiName
=
"eth"
DebugApiName
=
"debug"
MergedApiName
=
"merged"
MinerApiName
=
"miner"
NetApiName
=
"net"
PersonalApiName
=
"personal"
Web3ApiName
=
"web3"
)
var
(
// List with all API's which are offered over the IPC interface by default
// List with all API's which are offered over the IPC interface by default
DefaultIpcApis
=
"debug,eth,miner,net,web3"
DefaultIpcApis
=
strings
.
Join
([]
string
{
EthApiName
,
EthApiName
=
"eth"
DebugApiName
,
DebugApiName
=
"debug"
MinerApiName
,
MergedApiName
=
"merged"
NetApiName
,
MinerApiName
=
"miner"
PersonalApiName
,
NetApiName
=
"net"
},
","
)
Web3ApiName
=
"web3"
)
)
// Ethereum RPC API interface
// Ethereum RPC API interface
...
...
rpc/api/personal.go
0 → 100644
View file @
08d72a92
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
}
rpc/api/personal_args.go
0 → 100644
View file @
08d72a92
package
api
import
(
"encoding/json"
"github.com/ethereum/go-ethereum/rpc/shared"
)
type
NewAccountArgs
struct
{
Passphrase
string
}
func
(
args
*
NewAccountArgs
)
UnmarshalJSON
(
b
[]
byte
)
(
err
error
)
{
var
obj
[]
interface
{}
if
err
:=
json
.
Unmarshal
(
b
,
&
obj
);
err
!=
nil
{
return
shared
.
NewDecodeParamError
(
err
.
Error
())
}
passhrase
,
ok
:=
obj
[
0
]
.
(
string
)
if
!
ok
{
return
shared
.
NewInvalidTypeError
(
"passhrase"
,
"not a string"
)
}
args
.
Passphrase
=
passhrase
return
nil
}
type
DeleteAccountArgs
struct
{
Address
string
Passphrase
string
}
func
(
args
*
DeleteAccountArgs
)
UnmarshalJSON
(
b
[]
byte
)
(
err
error
)
{
var
obj
[]
interface
{}
if
err
:=
json
.
Unmarshal
(
b
,
&
obj
);
err
!=
nil
{
return
shared
.
NewDecodeParamError
(
err
.
Error
())
}
addr
,
ok
:=
obj
[
0
]
.
(
string
)
if
!
ok
{
return
shared
.
NewInvalidTypeError
(
"address"
,
"not a string"
)
}
args
.
Address
=
addr
passhrase
,
ok
:=
obj
[
1
]
.
(
string
)
if
!
ok
{
return
shared
.
NewInvalidTypeError
(
"passhrase"
,
"not a string"
)
}
args
.
Passphrase
=
passhrase
return
nil
}
type
UnlockAccountArgs
struct
{
Address
string
Passphrase
string
Duration
int
}
func
(
args
*
UnlockAccountArgs
)
UnmarshalJSON
(
b
[]
byte
)
(
err
error
)
{
var
obj
[]
interface
{}
if
err
:=
json
.
Unmarshal
(
b
,
&
obj
);
err
!=
nil
{
return
shared
.
NewDecodeParamError
(
err
.
Error
())
}
args
.
Duration
=
-
1
addrstr
,
ok
:=
obj
[
0
]
.
(
string
)
if
!
ok
{
return
shared
.
NewInvalidTypeError
(
"address"
,
"not a string"
)
}
args
.
Address
=
addrstr
passphrasestr
,
ok
:=
obj
[
1
]
.
(
string
)
if
!
ok
{
return
shared
.
NewInvalidTypeError
(
"passphrase"
,
"not a string"
)
}
args
.
Passphrase
=
passphrasestr
return
nil
}
rpc/api/personal_js.go
0 → 100644
View file @
08d72a92
package
api
const
Personal_JS
=
`
web3.extend({
property: 'personal',
methods:
[
new web3.extend.Method({
name: 'listAccounts',
call: 'personal_listAccounts',
params: 0,
inputFormatter: [],
outputFormatter: function(obj) { return obj; }
}),
new web3.extend.Method({
name: 'newAccount',
call: 'personal_newAccount',
params: 1,
inputFormatter: [web3.extend.formatters.formatInputString],
outputFormatter: web3.extend.formatters.formatOutputString
}),
new web3.extend.Method({
name: 'unlockAccount',
call: 'personal_unlockAccount',
params: 3,
inputFormatter: [web3.extend.formatters.formatInputString,web3.extend.formatters.formatInputString,web3.extend.formatters.formatInputInt],
outputFormatter: web3.extend.formatters.formatOutputBool
})
],
properties:
[
]
});
`
rpc/api/utils.go
View file @
08d72a92
...
@@ -29,6 +29,8 @@ func ParseApiString(apistr string, codec codec.Codec, xeth *xeth.XEth, eth *eth.
...
@@ -29,6 +29,8 @@ func ParseApiString(apistr string, codec codec.Codec, xeth *xeth.XEth, eth *eth.
apis
[
i
]
=
NewMinerApi
(
eth
,
codec
)
apis
[
i
]
=
NewMinerApi
(
eth
,
codec
)
case
NetApiName
:
case
NetApiName
:
apis
[
i
]
=
NewNetApi
(
xeth
,
eth
,
codec
)
apis
[
i
]
=
NewNetApi
(
xeth
,
eth
,
codec
)
case
PersonalApiName
:
apis
[
i
]
=
NewPersonal
(
xeth
,
eth
,
codec
)
case
Web3ApiName
:
case
Web3ApiName
:
apis
[
i
]
=
NewWeb3
(
xeth
,
codec
)
apis
[
i
]
=
NewWeb3
(
xeth
,
codec
)
default
:
default
:
...
@@ -47,6 +49,8 @@ func Javascript(name string) string {
...
@@ -47,6 +49,8 @@ func Javascript(name string) string {
return
Miner_JS
return
Miner_JS
case
NetApiName
:
case
NetApiName
:
return
Net_JS
return
Net_JS
case
PersonalApiName
:
return
Personal_JS
}
}
return
""
return
""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment