mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 04:06:36 +00:00
56 lines
1.0 KiB
Go
56 lines
1.0 KiB
Go
package cfapi
|
|
|
|
import (
|
|
"net/url"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
const (
|
|
TimeLayout = time.RFC3339
|
|
)
|
|
|
|
type TunnelFilter struct {
|
|
queryParams url.Values
|
|
}
|
|
|
|
func NewTunnelFilter() *TunnelFilter {
|
|
return &TunnelFilter{
|
|
queryParams: url.Values{},
|
|
}
|
|
}
|
|
|
|
func (f *TunnelFilter) ByName(name string) {
|
|
f.queryParams.Set("name", name)
|
|
}
|
|
|
|
func (f *TunnelFilter) ByNamePrefix(namePrefix string) {
|
|
f.queryParams.Set("name_prefix", namePrefix)
|
|
}
|
|
|
|
func (f *TunnelFilter) ExcludeNameWithPrefix(excludePrefix string) {
|
|
f.queryParams.Set("exclude_prefix", excludePrefix)
|
|
}
|
|
|
|
func (f *TunnelFilter) NoDeleted() {
|
|
f.queryParams.Set("is_deleted", "false")
|
|
}
|
|
|
|
func (f *TunnelFilter) ByExistedAt(existedAt time.Time) {
|
|
f.queryParams.Set("existed_at", existedAt.Format(TimeLayout))
|
|
}
|
|
|
|
func (f *TunnelFilter) ByTunnelID(tunnelID uuid.UUID) {
|
|
f.queryParams.Set("uuid", tunnelID.String())
|
|
}
|
|
|
|
func (f *TunnelFilter) MaxFetchSize(max uint) {
|
|
f.queryParams.Set("per_page", strconv.Itoa(int(max)))
|
|
}
|
|
|
|
func (f TunnelFilter) encode() string {
|
|
return f.queryParams.Encode()
|
|
}
|