forked from ipfs/go-ipfs-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ipns.go
55 lines (49 loc) · 1.36 KB
/
ipns.go
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
package shell
import (
"context"
"time"
)
type PublishResponse struct {
Name string `json:"name"`
Value string `json:"value"`
}
// Publish updates a mutable name to point to a given value
func (s *Shell) Publish(node string, value string) error {
var pubResp PublishResponse
req := s.Request("name/publish")
if node != "" {
req.Arguments(node)
}
req.Arguments(value)
return req.Exec(context.Background(), &pubResp)
}
// PublishWithDetails is used for fine grained control over record publishing
func (s *Shell) PublishWithDetails(contentHash, key string, lifetime, ttl time.Duration, resolve bool) (*PublishResponse, error) {
var pubResp PublishResponse
req := s.Request("name/publish", contentHash).Option("resolve", resolve)
if key != "" {
req.Option("key", key)
}
if lifetime != 0 {
req.Option("lifetime", lifetime)
}
if ttl.Seconds() > 0 {
req.Option("ttl", ttl)
}
err := req.Exec(context.Background(), &pubResp)
if err != nil {
return nil, err
}
return &pubResp, nil
}
// Resolve gets resolves the string provided to an /ipns/[name]. If asked to
// resolve an empty string, resolve instead resolves the node's own /ipns value.
func (s *Shell) Resolve(id string) (string, error) {
req := s.Request("name/resolve")
if id != "" {
req.Arguments(id)
}
var out struct{ Path string }
err := req.Exec(context.Background(), &out)
return out.Path, err
}