-
Notifications
You must be signed in to change notification settings - Fork 0
/
policydelete.go
62 lines (53 loc) · 1.7 KB
/
policydelete.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
58
59
60
61
62
/**
* Created by GoLand.
* User: 姜伟
* Date: 2020/2/2 0002
* Time: 0:18
*/
package policy
import (
"regexp"
"github.com/a07061625/gompf/mpf/api/mpiot"
"github.com/a07061625/gompf/mpf/mpconstant/errorcode"
"github.com/a07061625/gompf/mpf/mpconstant/project"
"github.com/a07061625/gompf/mpf/mperr"
"github.com/valyala/fasthttp"
)
// 删除policy
type policyDelete struct {
mpiot.BaseBaiDu
endpointName string // endpoint名称
policyName string // policy名称
}
func (pd *policyDelete) SetEndpointName(endpointName string) {
match, _ := regexp.MatchString(project.RegexDigitAlpha, endpointName)
if match {
pd.endpointName = endpointName
} else {
panic(mperr.NewIotBaiDu(errorcode.IotBaiDuParam, "endpoint名称不合法", nil))
}
}
func (pd *policyDelete) SetPolicyName(policyName string) {
match, _ := regexp.MatchString(project.RegexDigitAlpha, policyName)
if match {
pd.policyName = policyName
} else {
panic(mperr.NewIotBaiDu(errorcode.IotBaiDuParam, "policy名称不合法", nil))
}
}
func (pd *policyDelete) CheckData() (*fasthttp.Client, *fasthttp.Request) {
if len(pd.endpointName) == 0 {
panic(mperr.NewIotBaiDu(errorcode.IotBaiDuParam, "endpoint名称不能为空", nil))
}
if len(pd.policyName) == 0 {
panic(mperr.NewIotBaiDu(errorcode.IotBaiDuParam, "policy名称不能为空", nil))
}
pd.ServiceUri = "/v1/endpoint/" + pd.endpointName + "/policy/" + pd.policyName
pd.ReqURI = pd.GetServiceUrl()
return pd.GetRequest()
}
func NewPolicyDelete() *policyDelete {
pd := &policyDelete{mpiot.NewBaseBaiDu(), "", ""}
pd.ReqMethod = fasthttp.MethodDelete
return pd
}