-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetString.go
92 lines (81 loc) · 2.27 KB
/
getString.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
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
92
package azrp
import "fmt"
// GetString returns a string that is the url for the configuration of the
// ApiRequest type.
func (p Pricer) GetString() (string, error) {
/* Check the basics */
/* Check that currency, is correct and check if a preview version */
/* needed */
if p.Currency == "" {
return "", fmt.Errorf("currency not set")
}
if !validateCurrencyCode(p.Currency) {
return "", fmt.Errorf("currency code '%s' not supported", p.Currency)
}
var s1 string = ApiUrl
if p.ApiVersion != "" {
s1 = fmt.Sprintf("%s?api-version=%s&CurrencyCode=%s", s1, p.ApiVersion, p.Currency)
} else {
s1 = fmt.Sprintf("%s?CurrencyCode=%s", s1, p.Currency)
}
type filters struct {
Key string
Value string
}
f1 := []filters{}
if p.ArmRegionName != "" {
f1 = append(f1, filters{"armRegionName", p.ArmRegionName})
}
if p.Location != "" {
f1 = append(f1, filters{"location", p.Location})
}
if p.MeterId != "" {
f1 = append(f1, filters{"meterId", p.MeterId})
}
if p.MeterName != "" {
f1 = append(f1, filters{"meterName", p.MeterName})
}
if p.ProductId != "" {
f1 = append(f1, filters{"productId", p.ProductId})
}
if p.SkuId != "" {
f1 = append(f1, filters{"skuId", p.SkuId})
}
if p.ProductName != "" {
f1 = append(f1, filters{"productName", p.ProductName})
}
if p.SkuName != "" {
f1 = append(f1, filters{"skuName", p.SkuName})
}
if p.ServiceName != "" {
f1 = append(f1, filters{"serviceName", p.ServiceName})
}
if p.ServiceId != "" {
f1 = append(f1, filters{"serviceId", p.ServiceId})
}
if p.ServiceFamily != "" {
f1 = append(f1, filters{"serviceFamily", p.ServiceFamily})
}
if p.PriceType != "" {
f1 = append(f1, filters{"priceType", p.PriceType})
}
if p.ArmSkuName != "" {
f1 = append(f1, filters{"armSkuName", p.ArmSkuName})
}
if len(f1) == 0 {
return s1, nil
}
/* When more than one filter is present, they will always appear in the */
/* order in which that are added, this means the testing add multiple */
/* is always stable. */
var first = true
for _, v := range f1 {
if first {
s1 = fmt.Sprintf("%s&$filter=%s eq '%s'", s1, v.Key, v.Value)
first = false
} else {
s1 = fmt.Sprintf("%s and %s eq '%s'", s1, v.Key, v.Value)
}
}
return basicEncoder(s1), nil
}