-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathutil.go
76 lines (67 loc) · 1.95 KB
/
util.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
package memogram
import (
"fmt"
"io"
"mime"
"net/http"
"net/url"
"path"
"strings"
"github.com/pkg/errors"
)
func getContentType(imageURL string) (string, error) {
resp, err := http.Get(imageURL)
if err != nil {
return "", err
}
defer resp.Body.Close()
// Check if the server provided a Content-Type header.
contentType := resp.Header.Get("Content-Type")
if contentType != "" && contentType != "application/octet-stream" {
return contentType, nil
}
// Read a few bytes from the body to detect the content type.
buffer := make([]byte, 512)
_, err = io.ReadFull(resp.Body, buffer)
if err != nil && err != io.EOF {
return "", err
}
// Use the DetectContentType function to get the content type.
contentType = http.DetectContentType(buffer)
if contentType == "application/octet-stream" {
// Try to infer content type from URL if detection fails.
parsedURL, err := url.Parse(imageURL)
if err == nil {
contentType = mime.TypeByExtension(path.Ext(parsedURL.Path))
}
}
return contentType, nil
}
// GetNameParentTokens returns the tokens from a resource name.
func GetNameParentTokens(name string, tokenPrefixes ...string) ([]string, error) {
parts := strings.Split(name, "/")
if len(parts) != 2*len(tokenPrefixes) {
return nil, errors.Errorf("invalid request %q", name)
}
var tokens []string
for i, tokenPrefix := range tokenPrefixes {
if fmt.Sprintf("%s/", parts[2*i]) != tokenPrefix {
return nil, errors.Errorf("invalid prefix %q in request %q", tokenPrefix, name)
}
if parts[2*i+1] == "" {
return nil, errors.Errorf("invalid request %q with empty prefix %q", name, tokenPrefix)
}
tokens = append(tokens, parts[2*i+1])
}
return tokens, nil
}
// ExtractMemoUIDFromName returns the memo UID from a resource name.
// e.g., "memos/uuid" -> "uuid".
func ExtractMemoUIDFromName(name string) (string, error) {
tokens, err := GetNameParentTokens(name, "memos/")
if err != nil {
return "", err
}
id := tokens[0]
return id, nil
}