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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
|
package api
import (
"net/url"
"strconv"
"time"
"github.com/google/go-querystring/query"
"github.com/mimuret/golang-iij-dpf/pkg/types"
)
type SearchParams interface {
GetValues() (url.Values, error)
GetOffset() int32
SetOffset(int32)
GetLimit() int32
SetLimit(int32)
}
type RowSearchParams struct {
url.Values
}
func NewRowSearchParams(queryString string) (*RowSearchParams, error) {
values, err := url.ParseQuery(queryString)
if err != nil {
return nil, err
}
return &RowSearchParams{values}, nil
}
func (r RowSearchParams) GetOffset() int32 {
v := r.Values.Get("offset")
if v == "" {
return 0
}
i, err := strconv.ParseInt(v, 10, 32)
if err != nil {
return 0
}
return int32(i)
}
func (r RowSearchParams) SetOffset(offset int32) {
str := strconv.FormatInt(int64(offset), 10)
r.Set("offset", str)
}
func (r RowSearchParams) GetLimit() int32 {
v := r.Values.Get("limit")
if v == "" {
return 100
}
i, err := strconv.ParseInt(v, 10, 32)
if err != nil {
return 100
}
return int32(i)
}
func (r RowSearchParams) SetLimit(limit int32) {
str := strconv.FormatInt(int64(limit), 10)
r.Set("limit", str)
}
func (r *RowSearchParams) GetValues() (url.Values, error) { return r.Values, nil }
type CommonSearchParams struct {
Type SearchType `url:"type,omitempty"`
Offset int32 `url:"offset,omitempty"`
Limit int32 `url:"limit,omitempty"`
}
func (s *CommonSearchParams) GetValues() (url.Values, error) { return query.Values(s) }
func (k *CommonSearchParams) GetType() SearchType { return k.Type }
func (k *CommonSearchParams) SetType(t SearchType) { k.Type = t }
func (k *CommonSearchParams) GetOffset() int32 { return k.Offset }
func (k *CommonSearchParams) SetOffset(offset int32) { k.Offset = offset }
func (k *CommonSearchParams) GetLimit() int32 {
if k.Limit == 0 {
return 100
}
return k.Limit
}
func (k *CommonSearchParams) SetLimit(limit int32) { k.Limit = limit }
// +k8s:deepcopy-gen=false
type SearchType string
const (
SearchTypeAND SearchType = "AND"
SearchTypeOR SearchType = "OR"
)
func (s SearchType) Validate() bool {
switch s {
case SearchTypeAND, SearchTypeOR:
default:
return false
}
return true
}
// +k8s:deepcopy-gen=false
type SearchOffset int32
func (s SearchOffset) Validate() bool {
if s < 0 || s > 10000000 {
return false
}
return true
}
// +k8s:deepcopy-gen=false
type SearchLimit int32
func (s SearchLimit) Validate() bool {
if s < 1 || s > 10000 {
return false
}
return true
}
// +k8s:deepcopy-gen=false
type SearchDate time.Time
// +k8s:deepcopy-gen=false
type SearchOrder string
const (
SearchOrderASC SearchOrder = "ASC"
SearchOrderDESC SearchOrder = "DESC"
)
func (s SearchOrder) Validate() bool {
switch s {
case SearchOrderASC, SearchOrderDESC:
default:
return false
}
return true
}
// +k8s:deepcopy-gen=false
type KeywordsString []string
func (s KeywordsString) Validate() bool {
for _, v := range s {
if len(v) > 255 {
return false
}
}
return true
}
// +k8s:deepcopy-gen=false
type KeywordsID []int64
func (s KeywordsID) Validate() bool {
for _, v := range s {
if v < 0 {
return false
}
}
return true
}
// +k8s:deepcopy-gen=false
type KeywordsBoolean []types.Boolean
func (c KeywordsBoolean) EncodeValues(key string, v *url.Values) error {
for _, plan := range c {
v.Add(key, strconv.Itoa(int(plan)))
}
return nil
}
// +k8s:deepcopy-gen=false
type KeywordsState []types.State
func (c KeywordsState) EncodeValues(key string, v *url.Values) error {
for _, plan := range c {
v.Add(key, strconv.Itoa(int(plan)))
}
return nil
}
// +k8s:deepcopy-gen=false
type KeywordsFavorite []types.Favorite
func (c KeywordsFavorite) EncodeValues(key string, v *url.Values) error {
for _, plan := range c {
v.Add(key, strconv.Itoa(int(plan)))
}
return nil
}
// +k8s:deepcopy-gen=false
type KeywordsLabels []Label
func (c KeywordsLabels) EncodeValues(key string, v *url.Values) error {
for _, plan := range c {
v.Add(key, plan.String())
}
return nil
}
type Label struct {
Key string
Value string
}
func (l Label) String() string {
return l.Key + "=" + l.Value
}
|