* refactor:separate the setting method from the db package to the op package and add the cache * refactor:separate the meta method from the db package to the op package * fix:setting not load database data * refactor:separate the user method from the db package to the op package * refactor:remove user JoinPath error * fix:op package user cache * refactor:fs package list method * fix:tile virtual paths (close #2743) * Revert "refactor:remove user JoinPath error" This reverts commit 4e20daaf9e700da047000d4fd4900abbe05c3848. * clean path directly may lead to unknown behavior * fix: The path of the meta passed in must be prefix of reqPath * chore: rename all virtualPath to mountPath * fix: `getStoragesByPath` and `GetStorageVirtualFilesByPath` is_sub_path: /a/b isn't subpath of /a/bc * fix: don't save setting if hook error Co-authored-by: Noah Hsu <i@nn.ci>
63 lines
1.1 KiB
Go
63 lines
1.1 KiB
Go
package utils
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// SliceEqual check if two slices are equal
|
|
func SliceEqual[T comparable](a, b []T) bool {
|
|
if len(a) != len(b) {
|
|
return false
|
|
}
|
|
for i, v := range a {
|
|
if v != b[i] {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// SliceContains check if slice contains element
|
|
func SliceContains[T comparable](arr []T, v T) bool {
|
|
for _, vv := range arr {
|
|
if vv == v {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// SliceConvert convert slice to another type slice
|
|
func SliceConvert[S any, D any](srcS []S, convert func(src S) (D, error)) ([]D, error) {
|
|
var res []D
|
|
for i := range srcS {
|
|
dst, err := convert(srcS[i])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
res = append(res, dst)
|
|
}
|
|
return res, nil
|
|
}
|
|
|
|
func MustSliceConvert[S any, D any](srcS []S, convert func(src S) D) []D {
|
|
var res []D
|
|
for i := range srcS {
|
|
dst := convert(srcS[i])
|
|
res = append(res, dst)
|
|
}
|
|
return res
|
|
}
|
|
|
|
func MergeErrors(errs ...error) error {
|
|
errStr := strings.Join(MustSliceConvert(errs, func(err error) string {
|
|
return err.Error()
|
|
}), "\n")
|
|
if errStr != "" {
|
|
return errors.New(errStr)
|
|
}
|
|
return nil
|
|
}
|