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
f14feea4
Commit
f14feea4
authored
May 18, 2015
by
Taylor Gerring
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor user prompts into utils
parent
36a4ba32
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
50 additions
and
49 deletions
+50
-49
admin.go
cmd/geth/admin.go
+3
-3
main.go
cmd/geth/main.go
+3
-46
cmd.go
cmd/utils/cmd.go
+44
-0
No files found.
cmd/geth/admin.go
View file @
f14feea4
...
...
@@ -383,7 +383,7 @@ func (js *jsre) unlock(call otto.FunctionCall) otto.Value {
var
passphrase
string
if
arg
.
IsUndefined
()
{
fmt
.
Println
(
"Please enter a passphrase now."
)
passphrase
,
err
=
read
Password
(
"Passphrase: "
,
true
)
passphrase
,
err
=
utils
.
Prompt
Password
(
"Passphrase: "
,
true
)
if
err
!=
nil
{
fmt
.
Println
(
err
)
return
otto
.
FalseValue
()
...
...
@@ -410,12 +410,12 @@ func (js *jsre) newAccount(call otto.FunctionCall) otto.Value {
if
arg
.
IsUndefined
()
{
fmt
.
Println
(
"The new account will be encrypted with a passphrase."
)
fmt
.
Println
(
"Please enter a passphrase now."
)
auth
,
err
:=
read
Password
(
"Passphrase: "
,
true
)
auth
,
err
:=
utils
.
Prompt
Password
(
"Passphrase: "
,
true
)
if
err
!=
nil
{
fmt
.
Println
(
err
)
return
otto
.
FalseValue
()
}
confirm
,
err
:=
read
Password
(
"Repeat Passphrase: "
,
false
)
confirm
,
err
:=
utils
.
Prompt
Password
(
"Repeat Passphrase: "
,
false
)
if
err
!=
nil
{
fmt
.
Println
(
err
)
return
otto
.
FalseValue
()
...
...
cmd/geth/main.go
View file @
f14feea4
...
...
@@ -21,7 +21,6 @@
package
main
import
(
"bufio"
"fmt"
"io"
"io/ioutil"
...
...
@@ -44,7 +43,6 @@ import (
"github.com/ethereum/go-ethereum/logger"
"github.com/mattn/go-colorable"
"github.com/mattn/go-isatty"
"github.com/peterh/liner"
)
import
_
"net/http/pprof"
...
...
@@ -426,12 +424,12 @@ func getPassPhrase(ctx *cli.Context, desc string, confirmation bool) (passphrase
passfile
:=
ctx
.
GlobalString
(
utils
.
PasswordFileFlag
.
Name
)
if
len
(
passfile
)
==
0
{
fmt
.
Println
(
desc
)
auth
,
err
:=
read
Password
(
"Passphrase: "
,
true
)
auth
,
err
:=
utils
.
Prompt
Password
(
"Passphrase: "
,
true
)
if
err
!=
nil
{
utils
.
Fatalf
(
"%v"
,
err
)
}
if
confirmation
{
confirm
,
err
:=
read
Password
(
"Repeat Passphrase: "
,
false
)
confirm
,
err
:=
utils
.
Prompt
Password
(
"Repeat Passphrase: "
,
false
)
if
err
!=
nil
{
utils
.
Fatalf
(
"%v"
,
err
)
}
...
...
@@ -549,7 +547,7 @@ func exportchain(ctx *cli.Context) {
}
func
removeDb
(
ctx
*
cli
.
Context
)
{
confirm
,
err
:=
read
Confirm
(
"Remove local databases?"
)
confirm
,
err
:=
utils
.
Prompt
Confirm
(
"Remove local databases?"
)
if
err
!=
nil
{
utils
.
Fatalf
(
"%v"
,
err
)
}
...
...
@@ -690,44 +688,3 @@ func hashish(x string) bool {
_
,
err
:=
strconv
.
Atoi
(
x
)
return
err
!=
nil
}
func
readConfirm
(
prompt
string
)
(
bool
,
error
)
{
var
(
input
string
err
error
)
prompt
=
prompt
+
" [y/N] "
if
liner
.
TerminalSupported
()
{
lr
:=
liner
.
NewLiner
()
defer
lr
.
Close
()
input
,
err
=
lr
.
Prompt
(
prompt
)
}
else
{
fmt
.
Print
(
prompt
)
input
,
err
=
bufio
.
NewReader
(
os
.
Stdin
)
.
ReadString
(
'\n'
)
fmt
.
Println
()
}
if
len
(
input
)
>
0
&&
strings
.
ToUpper
(
input
[
:
1
])
==
"Y"
{
return
true
,
nil
}
else
{
return
false
,
nil
}
return
false
,
err
}
func
readPassword
(
prompt
string
,
warnTerm
bool
)
(
string
,
error
)
{
if
liner
.
TerminalSupported
()
{
lr
:=
liner
.
NewLiner
()
defer
lr
.
Close
()
return
lr
.
PasswordPrompt
(
prompt
)
}
if
warnTerm
{
fmt
.
Println
(
"!! Unsupported terminal, password will be echoed."
)
}
fmt
.
Print
(
prompt
)
input
,
err
:=
bufio
.
NewReader
(
os
.
Stdin
)
.
ReadString
(
'\n'
)
fmt
.
Println
()
return
input
,
err
}
cmd/utils/cmd.go
View file @
f14feea4
...
...
@@ -22,11 +22,13 @@
package
utils
import
(
"bufio"
"fmt"
"io"
"os"
"os/signal"
"regexp"
"strings"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core"
...
...
@@ -35,6 +37,7 @@ import (
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/rlp"
"github.com/peterh/liner"
)
var
interruptCallbacks
=
[]
func
(
os
.
Signal
){}
...
...
@@ -85,6 +88,47 @@ func confirm(message string) bool {
return
r
==
"y"
}
func
PromptConfirm
(
prompt
string
)
(
bool
,
error
)
{
var
(
input
string
err
error
)
prompt
=
prompt
+
" [y/N] "
if
liner
.
TerminalSupported
()
{
lr
:=
liner
.
NewLiner
()
defer
lr
.
Close
()
input
,
err
=
lr
.
Prompt
(
prompt
)
}
else
{
fmt
.
Print
(
prompt
)
input
,
err
=
bufio
.
NewReader
(
os
.
Stdin
)
.
ReadString
(
'\n'
)
fmt
.
Println
()
}
if
len
(
input
)
>
0
&&
strings
.
ToUpper
(
input
[
:
1
])
==
"Y"
{
return
true
,
nil
}
else
{
return
false
,
nil
}
return
false
,
err
}
func
PromptPassword
(
prompt
string
,
warnTerm
bool
)
(
string
,
error
)
{
if
liner
.
TerminalSupported
()
{
lr
:=
liner
.
NewLiner
()
defer
lr
.
Close
()
return
lr
.
PasswordPrompt
(
prompt
)
}
if
warnTerm
{
fmt
.
Println
(
"!! Unsupported terminal, password will be echoed."
)
}
fmt
.
Print
(
prompt
)
input
,
err
:=
bufio
.
NewReader
(
os
.
Stdin
)
.
ReadString
(
'\n'
)
fmt
.
Println
()
return
input
,
err
}
func
initDataDir
(
Datadir
string
)
{
_
,
err
:=
os
.
Stat
(
Datadir
)
if
err
!=
nil
{
...
...
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