File: refresh.go

package info (click to toggle)
golang-github-denverdino-aliyungo 0.0~git20180921.13fa8aa-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,824 kB
  • sloc: xml: 1,359; makefile: 3
file content (91 lines) | stat: -rw-r--r-- 1,755 bytes parent folder | download | duplicates (3)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package cdn

import (
	"time"

	"github.com/denverdino/aliyungo/common"
)

type RefreshRequest struct {
	ObjectPath string
	// optional
	ObjectType string
}

type RefreshResponse struct {
	CdnCommonResponse
	RefreshTaskId string
}

type PushResponse struct {
	CdnCommonResponse
	PushTaskId string
}

type DescribeRequest struct {
	// optional
	TaskId     string
	ObjectPath string
	common.Pagination
}

type Task struct {
	TaskId       string
	ObjectPath   string
	Status       string
	Process      string
	CreationTime time.Time
	Description  string
}

type DescribeResponse struct {
	CdnCommonResponse
	common.PaginationResult
	Tasks struct {
		CDNTask []Task
	}
}

type QuotaResponse struct {
	CdnCommonResponse
	UrlQuota  string
	DirQuota  string
	UrlRemain string
	DirRemain string
}

func (client *CdnClient) RefreshObjectCaches(req RefreshRequest) (RefreshResponse, error) {
	var resp RefreshResponse
	err := client.Invoke("RefreshObjectCaches", req, &resp)
	if err != nil {
		return RefreshResponse{}, err
	}
	return resp, nil
}

func (client *CdnClient) PushObjectCache(req RefreshRequest) (PushResponse, error) {
	var resp PushResponse
	err := client.Invoke("PushObjectCache", req, &resp)
	if err != nil {
		return PushResponse{}, err
	}
	return resp, nil
}

func (client *CdnClient) DescribeRefreshTasks(req DescribeRequest) (DescribeResponse, error) {
	var resp DescribeResponse
	err := client.Invoke("DescribeRefreshTasks", req, &resp)
	if err != nil {
		return DescribeResponse{}, err
	}
	return resp, nil
}

func (client *CdnClient) DescribeRefreshQuota() (QuotaResponse, error) {
	var resp QuotaResponse
	err := client.Invoke("DescribeRefreshQuota", struct{}{}, &resp)
	if err != nil {
		return QuotaResponse{}, err
	}
	return resp, nil
}