-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupload_history.go
57 lines (49 loc) · 1.44 KB
/
upload_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
57
package smmssdk
import (
"context"
"fmt"
"net/http"
)
type UploadHistoryRequest struct {
Page *int64 `json:"page"`
}
func (*UploadHistoryRequest) Request(ctx context.Context) (*http.Request, error) {
method := http.MethodGet
url := fmt.Sprintf("%s/upload_history", baseURL)
return http.NewRequestWithContext(ctx, method, url, nil)
}
func NewUploadHistoryRequest() *UploadHistoryRequest {
return &UploadHistoryRequest{}
}
type UploadHistoryResponse 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"`
CreatedAt string `json:"created_at"`
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) UploadHistory(ctx context.Context, req *UploadHistoryRequest) (*UploadHistoryResponse, error) {
return c.uploadHistory(ctx, req)
}
func (c *Client) uploadHistory(ctx context.Context, req *UploadHistoryRequest) (*UploadHistoryResponse, error) {
var rsp UploadHistoryResponse
err := c.Do(ctx, req, &rsp)
if err != nil {
return nil, err
}
return &rsp, nil
}