-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistory.go
56 lines (48 loc) · 1.31 KB
/
history.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
56
package smmssdk
import (
"context"
"fmt"
"net/http"
)
type HistoryRequest struct {
Format string `json:"format"`
}
func (*HistoryRequest) Request(ctx context.Context) (*http.Request, error) {
method := http.MethodGet
url := fmt.Sprintf("%s/history", baseURL)
return http.NewRequestWithContext(ctx, method, url, nil)
}
func NewHistoryRequest() *HistoryRequest {
return &HistoryRequest{}
}
type HistoryResponse struct {
baseResponse
Data []*struct {
FileId int64 `json:"file_id"`
Width int `json:"width"`
Height int `json:"height"`
Filename string `json:"filename"`
Storename string `json:"storename"`
Size int64 `json:"size"`
Path string `json:"path"`
Hash string `json:"hash"`
Url string `json:"url"`
Delete string `json:"delete"`
Page string `json:"page"`
} `json:"data"`
CurrentPage int64 `json:"CurrentPage"`
TotalPages int64 `json:"TotalPages"`
PerPage int64 `json:"PerPage"`
Count int64 `json:"Count"`
}
func (c *Client) History(ctx context.Context, req *HistoryRequest) (*HistoryResponse, error) {
return c.history(ctx, req)
}
func (c *Client) history(ctx context.Context, req *HistoryRequest) (*HistoryResponse, error) {
var rsp HistoryResponse
err := c.Do(ctx, req, &rsp)
if err != nil {
return nil, err
}
return &rsp, nil
}