Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
G
go-ipfs
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
jihao
go-ipfs
Commits
63feb68c
提交
63feb68c
authored
11月 07, 2014
作者:
Brian Tiger Chow
提交者:
Juan Batiz-Benet
11月 14, 2014
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor(name, pub, resolve) separate files
上级
092e346f
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
199 行增加
和
188 行删除
+199
-188
name.go
core/commands2/name.go
+1
-188
publish.go
core/commands2/publish.go
+106
-0
resolve.go
core/commands2/resolve.go
+92
-0
没有找到文件。
core/commands2/name.go
浏览文件 @
63feb68c
package
commands
import
(
"errors"
"fmt"
cmds
"github.com/jbenet/go-ipfs/commands"
core
"github.com/jbenet/go-ipfs/core"
crypto
"github.com/jbenet/go-ipfs/crypto"
nsys
"github.com/jbenet/go-ipfs/namesys"
u
"github.com/jbenet/go-ipfs/util"
)
import
cmds
"github.com/jbenet/go-ipfs/commands"
type
IpnsEntry
struct
{
Name
string
Value
string
}
type
ResolveOutput
struct
{
Entries
[]
IpnsEntry
}
var
errNotOnline
=
errors
.
New
(
"This command must be run in online mode. Try running 'ipfs daemon' first."
)
var
nameCmd
=
&
cmds
.
Command
{
// TODO UsageLine: "name [publish | resolve]",
// TODO Short: "ipfs namespace (ipns) tool",
...
...
@@ -63,175 +48,3 @@ Resolve te value of another name:
"resolve"
:
resolveCmd
,
},
}
var
publishCmd
=
&
cmds
.
Command
{
// TODO UsageLine: "publish",
// TODO Short: "publish a <ref> to ipns.",
Help
:
`ipfs publish [<name>] <ref> - publish a <ref> to ipns.
IPNS is a PKI namespace, where names are the hashes of public keys, and
the private key enables publishing new (signed) values. In publish, the
default value of <name> is your own identity public key.
Examples:
Publish a <ref> to your identity name:
> ipfs name publish QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
published name QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n to QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
Publish a <ref> to another public key:
> ipfs name publish QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
published name QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n to QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
`
,
Arguments
:
[]
cmds
.
Argument
{
cmds
.
Argument
{
"name"
,
cmds
.
ArgString
,
false
,
false
},
cmds
.
Argument
{
"object"
,
cmds
.
ArgString
,
true
,
false
},
},
Run
:
func
(
res
cmds
.
Response
,
req
cmds
.
Request
)
{
n
:=
req
.
Context
()
.
Node
args
:=
req
.
Arguments
()
if
n
.
Network
==
nil
{
res
.
SetError
(
errNotOnline
,
cmds
.
ErrNormal
)
return
}
if
n
.
Identity
==
nil
{
res
.
SetError
(
errors
.
New
(
"Identity not loaded!"
),
cmds
.
ErrNormal
)
return
}
// name := ""
ref
:=
""
switch
len
(
args
)
{
case
2
:
// name = args[0]
ref
=
args
[
1
]
.
(
string
)
res
.
SetError
(
errors
.
New
(
"keychains not yet implemented"
),
cmds
.
ErrNormal
)
return
case
1
:
// name = n.Identity.ID.String()
ref
=
args
[
0
]
.
(
string
)
}
// TODO n.Keychain.Get(name).PrivKey
k
:=
n
.
Identity
.
PrivKey
()
publishOutput
,
err
:=
publish
(
n
,
k
,
ref
)
if
err
!=
nil
{
res
.
SetError
(
err
,
cmds
.
ErrNormal
)
return
}
res
.
SetOutput
(
publishOutput
)
},
Marshallers
:
map
[
cmds
.
EncodingType
]
cmds
.
Marshaller
{
cmds
.
Text
:
func
(
res
cmds
.
Response
)
([]
byte
,
error
)
{
v
:=
res
.
Output
()
.
(
*
IpnsEntry
)
s
:=
fmt
.
Sprintf
(
"Published name %s to %s
\n
"
,
v
.
Name
,
v
.
Value
)
return
[]
byte
(
s
),
nil
},
},
Type
:
&
IpnsEntry
{},
}
var
resolveCmd
=
&
cmds
.
Command
{
// TODO UsageLine: "resolve",
// TODO Short: "resolve an ipns name to a <ref>",
Help
:
`ipfs resolve [<name>] - Resolve an ipns name to a <ref>.
IPNS is a PKI namespace, where names are the hashes of public keys, and
the private key enables publishing new (signed) values. In resolve, the
default value of <name> is your own identity public key.
Examples:
Resolve the value of your identity:
> ipfs name resolve
QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
Resolve te value of another name:
> ipfs name resolve QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n
QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
`
,
Arguments
:
[]
cmds
.
Argument
{
cmds
.
Argument
{
"name"
,
cmds
.
ArgString
,
false
,
true
},
},
Run
:
func
(
res
cmds
.
Response
,
req
cmds
.
Request
)
{
n
:=
req
.
Context
()
.
Node
var
names
[]
string
if
n
.
Network
==
nil
{
res
.
SetError
(
errNotOnline
,
cmds
.
ErrNormal
)
return
}
if
len
(
req
.
Arguments
())
==
0
{
if
n
.
Identity
==
nil
{
res
.
SetError
(
errors
.
New
(
"Identity not loaded!"
),
cmds
.
ErrNormal
)
return
}
names
=
append
(
names
,
n
.
Identity
.
ID
()
.
String
())
}
else
{
for
_
,
arg
:=
range
req
.
Arguments
()
{
name
,
ok
:=
arg
.
(
string
)
if
!
ok
{
res
.
SetError
(
errors
.
New
(
"cast error"
),
cmds
.
ErrNormal
)
return
}
names
=
append
(
names
,
name
)
}
}
entries
,
err
:=
resolve
(
n
,
names
)
if
err
!=
nil
{
res
.
SetError
(
err
,
cmds
.
ErrNormal
)
return
}
res
.
SetOutput
(
&
ResolveOutput
{
entries
})
},
Type
:
&
ResolveOutput
{},
}
func
publish
(
n
*
core
.
IpfsNode
,
k
crypto
.
PrivKey
,
ref
string
)
(
*
IpnsEntry
,
error
)
{
pub
:=
nsys
.
NewRoutingPublisher
(
n
.
Routing
)
err
:=
pub
.
Publish
(
k
,
ref
)
if
err
!=
nil
{
return
nil
,
err
}
hash
,
err
:=
k
.
GetPublic
()
.
Hash
()
if
err
!=
nil
{
return
nil
,
err
}
return
&
IpnsEntry
{
Name
:
u
.
Key
(
hash
)
.
String
(),
Value
:
ref
,
},
nil
}
func
resolve
(
n
*
core
.
IpfsNode
,
names
[]
string
)
([]
IpnsEntry
,
error
)
{
var
entries
[]
IpnsEntry
for
_
,
name
:=
range
names
{
resolved
,
err
:=
n
.
Namesys
.
Resolve
(
name
)
if
err
!=
nil
{
return
nil
,
err
}
entries
=
append
(
entries
,
IpnsEntry
{
Name
:
name
,
Value
:
resolved
,
})
}
return
entries
,
nil
}
core/commands2/publish.go
0 → 100644
浏览文件 @
63feb68c
package
commands
import
(
"errors"
"fmt"
cmds
"github.com/jbenet/go-ipfs/commands"
core
"github.com/jbenet/go-ipfs/core"
crypto
"github.com/jbenet/go-ipfs/crypto"
nsys
"github.com/jbenet/go-ipfs/namesys"
u
"github.com/jbenet/go-ipfs/util"
)
var
errNotOnline
=
errors
.
New
(
"This command must be run in online mode. Try running 'ipfs daemon' first."
)
var
publishCmd
=
&
cmds
.
Command
{
// TODO UsageLine: "publish",
// TODO Short: "publish a <ref> to ipns.",
Help
:
`ipfs publish [<name>] <ref> - publish a <ref> to ipns.
IPNS is a PKI namespace, where names are the hashes of public keys, and
the private key enables publishing new (signed) values. In publish, the
default value of <name> is your own identity public key.
Examples:
Publish a <ref> to your identity name:
> ipfs name publish QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
published name QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n to QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
Publish a <ref> to another public key:
> ipfs name publish QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
published name QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n to QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
`
,
Arguments
:
[]
cmds
.
Argument
{
cmds
.
Argument
{
"name"
,
cmds
.
ArgString
,
false
,
false
},
cmds
.
Argument
{
"object"
,
cmds
.
ArgString
,
true
,
false
},
},
Run
:
func
(
res
cmds
.
Response
,
req
cmds
.
Request
)
{
n
:=
req
.
Context
()
.
Node
args
:=
req
.
Arguments
()
if
n
.
Network
==
nil
{
res
.
SetError
(
errNotOnline
,
cmds
.
ErrNormal
)
return
}
if
n
.
Identity
==
nil
{
res
.
SetError
(
errors
.
New
(
"Identity not loaded!"
),
cmds
.
ErrNormal
)
return
}
// name := ""
ref
:=
""
switch
len
(
args
)
{
case
2
:
// name = args[0]
ref
=
args
[
1
]
.
(
string
)
res
.
SetError
(
errors
.
New
(
"keychains not yet implemented"
),
cmds
.
ErrNormal
)
return
case
1
:
// name = n.Identity.ID.String()
ref
=
args
[
0
]
.
(
string
)
}
// TODO n.Keychain.Get(name).PrivKey
k
:=
n
.
Identity
.
PrivKey
()
publishOutput
,
err
:=
publish
(
n
,
k
,
ref
)
if
err
!=
nil
{
res
.
SetError
(
err
,
cmds
.
ErrNormal
)
return
}
res
.
SetOutput
(
publishOutput
)
},
Marshallers
:
map
[
cmds
.
EncodingType
]
cmds
.
Marshaller
{
cmds
.
Text
:
func
(
res
cmds
.
Response
)
([]
byte
,
error
)
{
v
:=
res
.
Output
()
.
(
*
IpnsEntry
)
s
:=
fmt
.
Sprintf
(
"Published name %s to %s
\n
"
,
v
.
Name
,
v
.
Value
)
return
[]
byte
(
s
),
nil
},
},
Type
:
&
IpnsEntry
{},
}
func
publish
(
n
*
core
.
IpfsNode
,
k
crypto
.
PrivKey
,
ref
string
)
(
*
IpnsEntry
,
error
)
{
pub
:=
nsys
.
NewRoutingPublisher
(
n
.
Routing
)
err
:=
pub
.
Publish
(
k
,
ref
)
if
err
!=
nil
{
return
nil
,
err
}
hash
,
err
:=
k
.
GetPublic
()
.
Hash
()
if
err
!=
nil
{
return
nil
,
err
}
return
&
IpnsEntry
{
Name
:
u
.
Key
(
hash
)
.
String
(),
Value
:
ref
,
},
nil
}
core/commands2/resolve.go
0 → 100644
浏览文件 @
63feb68c
package
commands
import
(
"errors"
cmds
"github.com/jbenet/go-ipfs/commands"
core
"github.com/jbenet/go-ipfs/core"
)
type
ResolveOutput
struct
{
Entries
[]
IpnsEntry
}
var
resolveCmd
=
&
cmds
.
Command
{
// TODO UsageLine: "resolve",
// TODO Short: "resolve an ipns name to a <ref>",
Help
:
`ipfs resolve [<name>] - Resolve an ipns name to a <ref>.
IPNS is a PKI namespace, where names are the hashes of public keys, and
the private key enables publishing new (signed) values. In resolve, the
default value of <name> is your own identity public key.
Examples:
Resolve the value of your identity:
> ipfs name resolve
QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
Resolve te value of another name:
> ipfs name resolve QmbCMUZw6JFeZ7Wp9jkzbye3Fzp2GGcPgC3nmeUjfVF87n
QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy
`
,
Arguments
:
[]
cmds
.
Argument
{
cmds
.
Argument
{
"name"
,
cmds
.
ArgString
,
false
,
true
},
},
Run
:
func
(
res
cmds
.
Response
,
req
cmds
.
Request
)
{
n
:=
req
.
Context
()
.
Node
var
names
[]
string
if
n
.
Network
==
nil
{
res
.
SetError
(
errNotOnline
,
cmds
.
ErrNormal
)
return
}
if
len
(
req
.
Arguments
())
==
0
{
if
n
.
Identity
==
nil
{
res
.
SetError
(
errors
.
New
(
"Identity not loaded!"
),
cmds
.
ErrNormal
)
return
}
names
=
append
(
names
,
n
.
Identity
.
ID
()
.
String
())
}
else
{
for
_
,
arg
:=
range
req
.
Arguments
()
{
name
,
ok
:=
arg
.
(
string
)
if
!
ok
{
res
.
SetError
(
errors
.
New
(
"cast error"
),
cmds
.
ErrNormal
)
return
}
names
=
append
(
names
,
name
)
}
}
entries
,
err
:=
resolve
(
n
,
names
)
if
err
!=
nil
{
res
.
SetError
(
err
,
cmds
.
ErrNormal
)
return
}
res
.
SetOutput
(
&
ResolveOutput
{
entries
})
},
Type
:
&
ResolveOutput
{},
}
func
resolve
(
n
*
core
.
IpfsNode
,
names
[]
string
)
([]
IpnsEntry
,
error
)
{
var
entries
[]
IpnsEntry
for
_
,
name
:=
range
names
{
resolved
,
err
:=
n
.
Namesys
.
Resolve
(
name
)
if
err
!=
nil
{
return
nil
,
err
}
entries
=
append
(
entries
,
IpnsEntry
{
Name
:
name
,
Value
:
resolved
,
})
}
return
entries
,
nil
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论