提交 475d7308 作者: Richard Littauer

Added Default logic to publish

Part of #2484

License: MIT
Signed-off-by: 's avatarRichard Littauer <richard.littauer@gmail.com>
上级 77324114
...@@ -50,12 +50,12 @@ Publish an <ipfs-path> to another public key (not implemented): ...@@ -50,12 +50,12 @@ Publish an <ipfs-path> to another public key (not implemented):
cmds.StringArg("ipfs-path", true, false, "IPFS path of the object to be published.").EnableStdin(), cmds.StringArg("ipfs-path", true, false, "IPFS path of the object to be published.").EnableStdin(),
}, },
Options: []cmds.Option{ Options: []cmds.Option{
cmds.BoolOption("resolve", "Resolve given path before publishing (default=true)."), cmds.BoolOption("resolve", "Resolve given path before publishing.").Default(true),
cmds.StringOption("lifetime", "t", `Time duration that the record will be valid for. Default: 24h. cmds.StringOption("lifetime", "t", `Time duration that the record will be valid for.
This accepts durations such as "300s", "1.5h" or "2h45m". Valid time units are This accepts durations such as "300s", "1.5h" or "2h45m". Valid time units are
"ns", "us" (or "µs"), "ms", "s", "m", "h". "ns", "us" (or "µs"), "ms", "s", "m", "h".
`), `).Default("24h"),
cmds.StringOption("ttl", "Time duration this record should be cached for (caution: experimental)."), cmds.StringOption("ttl", "Time duration this record should be cached for (caution: experimental)."),
}, },
Run: func(req cmds.Request, res cmds.Response) { Run: func(req cmds.Request, res cmds.Response) {
...@@ -86,17 +86,11 @@ Publish an <ipfs-path> to another public key (not implemented): ...@@ -86,17 +86,11 @@ Publish an <ipfs-path> to another public key (not implemented):
return return
} }
popts := &publishOpts{ popts := new(publishOpts)
verifyExists: true,
pubValidTime: time.Hour * 24,
}
verif, found, _ := req.Option("resolve").Bool() popts.verifyExists, _, _ = req.Option("resolve").Bool()
if found {
popts.verifyExists = verif validtime, _, _ := req.Option("lifetime").String()
}
validtime, found, _ := req.Option("lifetime").String()
if found {
d, err := time.ParseDuration(validtime) d, err := time.ParseDuration(validtime)
if err != nil { if err != nil {
res.SetError(fmt.Errorf("error parsing lifetime option: %s", err), cmds.ErrNormal) res.SetError(fmt.Errorf("error parsing lifetime option: %s", err), cmds.ErrNormal)
...@@ -104,7 +98,6 @@ Publish an <ipfs-path> to another public key (not implemented): ...@@ -104,7 +98,6 @@ Publish an <ipfs-path> to another public key (not implemented):
} }
popts.pubValidTime = d popts.pubValidTime = d
}
ctx := req.Context() ctx := req.Context()
if ttl, found, _ := req.Option("ttl").String(); found { if ttl, found, _ := req.Option("ttl").String(); found {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论