Skip to content

Commit

Permalink
feat: add function to retrieve object by path
Browse files Browse the repository at this point in the history
Signed-off-by: Nikita Pivkin <[email protected]>
  • Loading branch information
nikpivkin authored and simar7 committed Sep 24, 2024
1 parent da624e3 commit d1d64d1
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
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 {
occurrenses := {obj_path: child_object |
walk(obj, [obj_path, child_object])
child_object.__defsec_metadata
object.subset(path, obj_path)
}

res := occurrenses[max(object.keys(occurrenses))]
} 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": {}})

0 comments on commit d1d64d1

Please sign in to comment.