All checks were successful
Test / Create distribution (push) Successful in 37s
Test / Sandbox (push) Successful in 2m23s
Test / Hakurei (push) Successful in 3m9s
Test / Hpkg (push) Successful in 4m7s
Test / Sandbox (race detector) (push) Successful in 4m11s
Test / Hakurei (race detector) (push) Successful in 5m1s
Test / Flake checks (push) Successful in 1m30s
These are free of the dispatcher from internal/app. This change relocates them into their own package. Signed-off-by: Ophestra <cat@gensokyo.uk>
21 lines
643 B
Go
21 lines
643 B
Go
// Package validate provides functions for validating string values of various types.
|
|
package validate
|
|
|
|
import (
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
// DeepContainsH returns whether basepath is equivalent to or is the parent of targpath.
|
|
//
|
|
// This is used for path hiding warning behaviour, the purpose of which is to improve
|
|
// user experience and is *not* a security feature and must not be treated as such.
|
|
func DeepContainsH(basepath, targpath string) (bool, error) {
|
|
const upper = ".." + string(filepath.Separator)
|
|
|
|
rel, err := filepath.Rel(basepath, targpath)
|
|
return err == nil &&
|
|
rel != ".." &&
|
|
!strings.HasPrefix(rel, upper), err
|
|
}
|