-
Notifications
You must be signed in to change notification settings - Fork 18
/
link_file.go
55 lines (45 loc) · 1.51 KB
/
link_file.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 proton
import (
"context"
"fmt"
"strconv"
"github.com/go-resty/resty/v2"
)
func (c *Client) ListRevisions(ctx context.Context, shareID, linkID string) ([]RevisionMetadata, error) {
var res struct {
Revisions []RevisionMetadata
}
if err := c.do(ctx, func(r *resty.Request) (*resty.Response, error) {
return r.SetResult(&res).Get("/drive/shares/" + shareID + "/files/" + linkID + "/revisions")
}); err != nil {
return nil, err
}
return res.Revisions, nil
}
func (c *Client) GetRevision(ctx context.Context, shareID, linkID, revisionID string, fromBlock, pageSize int) (Revision, error) {
if fromBlock < 1 {
return Revision{}, fmt.Errorf("fromBlock must be greater than 0")
} else if pageSize < 1 {
return Revision{}, fmt.Errorf("pageSize must be greater than 0")
}
var res struct {
Revision Revision
}
if err := c.do(ctx, func(r *resty.Request) (*resty.Response, error) {
return r.
SetQueryParams(map[string]string{
"FromBlockIndex": strconv.Itoa(fromBlock),
"PageSize": strconv.Itoa(pageSize),
}).
SetResult(&res).
Get("/drive/shares/" + shareID + "/files/" + linkID + "/revisions/" + revisionID)
}); err != nil {
return Revision{}, err
}
return res.Revision, nil
}
func (c *Client) UpdateRevision(ctx context.Context, shareID, linkID, revisionID string, req UpdateRevisionReq) error {
return c.do(ctx, func(r *resty.Request) (*resty.Response, error) {
return r.SetBody(req).Put("/drive/shares/" + shareID + "/files/" + linkID + "/revisions/" + revisionID)
})
}