mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
65 lines
1.5 KiB
Go
65 lines
1.5 KiB
Go
|
package httpserver
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
// Path contains the following path structure:
|
||
|
// /{prefix}/{authToken}/{suffix}
|
||
|
//
|
||
|
// It is compatible with SaaS version.
|
||
|
type Path struct {
|
||
|
Prefix string
|
||
|
AuthToken string
|
||
|
Suffix string
|
||
|
}
|
||
|
|
||
|
// ParsePath parses the given path.
|
||
|
func ParsePath(path string) (*Path, error) {
|
||
|
// The path must have the following form:
|
||
|
// /{prefix}/{authToken}/{suffix}
|
||
|
//
|
||
|
// - prefix must contain `select`, `insert` or `delete`.
|
||
|
// - authToken contains `accountID[:projectID]`, where projectID is optional.
|
||
|
// - suffix contains arbitrary suffix.
|
||
|
//
|
||
|
// prefix must be used for the routing to the appropriate service
|
||
|
// in the cluster - either vminsert or vmselect.
|
||
|
s := skipPrefixSlashes(path)
|
||
|
n := strings.IndexByte(s, '/')
|
||
|
if n < 0 {
|
||
|
return nil, fmt.Errorf("cannot find {prefix}")
|
||
|
}
|
||
|
prefix := s[:n]
|
||
|
|
||
|
s = skipPrefixSlashes(s[n+1:])
|
||
|
n = strings.IndexByte(s, '/')
|
||
|
if n < 0 {
|
||
|
return nil, fmt.Errorf("cannot find {authToken}")
|
||
|
}
|
||
|
authToken := s[:n]
|
||
|
|
||
|
s = skipPrefixSlashes(s[n+1:])
|
||
|
|
||
|
// Substitute double slashes with single slashes in the path, since such slashes
|
||
|
// may appear due improper copy-pasting of the url.
|
||
|
suffix := strings.Replace(s, "//", "/", -1)
|
||
|
|
||
|
p := &Path{
|
||
|
Prefix: prefix,
|
||
|
AuthToken: authToken,
|
||
|
Suffix: suffix,
|
||
|
}
|
||
|
return p, nil
|
||
|
}
|
||
|
|
||
|
// skipPrefixSlashes remove double slashes which may appear due
|
||
|
// improper copy-pasting of the url
|
||
|
func skipPrefixSlashes(s string) string {
|
||
|
for len(s) > 0 && s[0] == '/' {
|
||
|
s = s[1:]
|
||
|
}
|
||
|
return s
|
||
|
}
|