mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-24 13:58:12 -05:00
Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 1.4.2 to 1.5.0. - [Release notes](https://github.com/open-policy-agent/opa/releases) - [Changelog](https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md) - [Commits](https://github.com/open-policy-agent/opa/compare/v1.4.2...v1.5.0) --- updated-dependencies: - dependency-name: github.com/open-policy-agent/opa dependency-version: 1.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
37 lines
952 B
Go
37 lines
952 B
Go
// Copyright 2020 The OPA Authors. All rights reserved.
|
|
// Use of this source code is governed by an Apache2
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Package ref implements internal helpers for references
|
|
package ref
|
|
|
|
import (
|
|
"errors"
|
|
"strings"
|
|
|
|
"github.com/open-policy-agent/opa/v1/ast"
|
|
"github.com/open-policy-agent/opa/v1/storage"
|
|
)
|
|
|
|
// ParseDataPath returns a ref from the slash separated path s rooted at data.
|
|
// All path segments are treated as identifier strings.
|
|
func ParseDataPath(s string) (ast.Ref, error) {
|
|
path, ok := storage.ParsePath("/" + strings.TrimPrefix(s, "/"))
|
|
if !ok {
|
|
return nil, errors.New("invalid path")
|
|
}
|
|
|
|
return path.Ref(ast.DefaultRootDocument), nil
|
|
}
|
|
|
|
// ArrayPath will take an ast.Array and build an ast.Ref using the ast.Terms in the Array
|
|
func ArrayPath(a *ast.Array) ast.Ref {
|
|
ref := make(ast.Ref, 0, a.Len())
|
|
|
|
a.Foreach(func(term *ast.Term) {
|
|
ref = append(ref, term)
|
|
})
|
|
|
|
return ref
|
|
}
|