2021-08-05 06:46:19 +00:00
|
|
|
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.
|
2022-09-30 14:28:35 +00:00
|
|
|
// authToken may also contain `multitenant` string. In this case the accountID and projectID
|
|
|
|
// are obtained from vm_account_id and vm_project_id labels of the ingested samples.
|
2021-08-05 06:46:19 +00:00
|
|
|
// - 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 {
|
2022-09-30 14:28:35 +00:00
|
|
|
return nil, fmt.Errorf("cannot find {prefix} in %q; expecting /{prefix}/{authToken}/{suffix} format", path)
|
2021-08-05 06:46:19 +00:00
|
|
|
}
|
|
|
|
prefix := s[:n]
|
|
|
|
|
|
|
|
s = skipPrefixSlashes(s[n+1:])
|
|
|
|
n = strings.IndexByte(s, '/')
|
|
|
|
if n < 0 {
|
2022-09-30 14:28:35 +00:00
|
|
|
return nil, fmt.Errorf("cannot find {authToken} in %q; expecting /{prefix}/{authToken}/{suffix} format", path)
|
2021-08-05 06:46:19 +00:00
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|