Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add function to retrieve object by path #199

Merged
merged 3 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions lib/cloud/metadata.rego
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# METADATA
# custom:
# library: true
package lib.cloud.metadata

import rego.v1

# Returns the object found by the given path
# if child object is not found, returns the last found object
obj_by_path(obj, path) := res if {
nikpivkin marked this conversation as resolved.
Show resolved Hide resolved
occurrenses := {obj_path: child_object |
simar7 marked this conversation as resolved.
Show resolved Hide resolved
walk(obj, [obj_path, child_object])
child_object.__defsec_metadata
object.subset(path, obj_path)
}

res := occurrenses[max(object.keys(occurrenses))]
simar7 marked this conversation as resolved.
Show resolved Hide resolved
} else := obj
34 changes: 34 additions & 0 deletions lib/cloud/metadata_test.rego
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
package lib.cloud.metadata_test

import rego.v1

import data.lib.cloud.metadata

test_obj_by_path_happy if {
bar := with_meta({"value": 1})
obj := with_meta({"foo": with_meta({"bar": bar})})

metadata.obj_by_path(obj, ["foo", "bar"]) == bar
}

test_obj_by_path_when_target_not_found_then_return_last_found if {
foo := with_meta({"bar": with_meta({"value": 1})})
obj := with_meta({"foo": foo})

metadata.obj_by_path(obj, ["foo", "baz"]) == foo
}

test_obj_by_path_when_target_not_found_then_return_obj if {
foo := with_meta({"bar": with_meta({"value": 1})})
obj := with_meta({"foo": foo})

metadata.obj_by_path(obj, "baz") == obj
}

test_obj_by_path_skip_without_metadata if {
obj := with_meta({"foo": {"bar": with_meta({"value": 1})}})

metadata.obj_by_path(obj, ["foo", "baz"]) == obj
}

with_meta(obj) := object.union(obj, {"__defsec_metadata": {}})