-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathutil.go
50 lines (42 loc) · 936 Bytes
/
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
package fss3
import (
"io/fs"
"mime"
"path/filepath"
"strings"
"github.com/minio/minio-go/v7"
)
func sanitizeName(name string) string {
name = strings.ReplaceAll(name, dirFileName, ".")
name = strings.Trim(name, "/")
name = filepath.Clean(name)
if name == "." {
return dirFileName
}
return name
}
func keyBaseName(key string) string {
name := sanitizeName(key)
return filepath.Base(name)
}
func errToRspErr(err error) minio.ErrorResponse {
return minio.ToErrorResponse(err)
}
func minioErrToPathErr(err error) *fs.PathError {
rspErr := errToRspErr(err)
return &fs.PathError{
Op: "open",
Path: rspErr.Key,
Err: err,
}
}
func guessContentType(name string) string {
contentType := mime.TypeByExtension(filepath.Ext(name))
if contentType == "" {
contentType = "application/octet-stream"
}
return contentType
}
func umask(mask int, mode fs.FileMode) fs.FileMode {
return mode - fs.FileMode(mask)
}