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

Issue #91: Add improved event validator API #94

Merged
merged 7 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM elixir:1.16.2-alpine as builder
ARG elixir_image=elixir:1.17.0-alpine

FROM ${elixir_image} as builder

# prepare build dir
WORKDIR /app
Expand Down Expand Up @@ -38,7 +40,7 @@ RUN mix release

# start a new build stage so that the final image will only contain
# the compiled release and other runtime necessities
FROM elixir:1.16.2-alpine
FROM ${elixir_image}

# Set the locale
# RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen
Expand Down
2 changes: 1 addition & 1 deletion config/config.exs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ config :logger, :console,
handle_otp_reports: true,
handle_sasl_reports: true,
format: "$date $time [$level] $metadata $message\n",
metadata: [:request_id]
metadata: [:request_id, :mfa, :line]

# Use Jason for JSON parsing in Phoenix
config :phoenix, :json_library, Jason
Expand Down
36 changes: 34 additions & 2 deletions lib/schema.ex
Original file line number Diff line number Diff line change
Expand Up @@ -556,12 +556,44 @@ defmodule Schema do
defp reduce_attributes(data) do
reduce_data(data)
|> Map.update(:attributes, [], fn attributes ->
Enum.into(attributes, %{}, fn {name, attribute} ->
{name, reduce_data(attribute)}
Enum.into(attributes, %{}, fn {attribute_name, attribute_details} ->
{attribute_name, reduce_attribute(attribute_details)}
end)
end)
end

defp reduce_attribute(attribute_details) do
attribute_details
|> filter_internal()
|> reduce_enum()
end

defp filter_internal(m) do
Map.filter(m, fn {key, _} ->
s = Atom.to_string(key)
not String.starts_with?(s, "_")
end)
end

defp reduce_enum(attribute_details) do
if Map.has_key?(attribute_details, :enum) do
Map.update!(attribute_details, :enum, fn enum ->
Enum.map(
enum,
fn {enum_value_key, enum_value_details} ->
{
enum_value_key,
filter_internal(enum_value_details)
}
end
)
|> Enum.into(%{})
end)
else
attribute_details
end
end

@spec reduce_class(map) :: map
def reduce_class(data) do
delete_attributes(data) |> delete_associations()
Expand Down
43 changes: 26 additions & 17 deletions lib/schema/cache.ex
Original file line number Diff line number Diff line change
Expand Up @@ -492,14 +492,16 @@ defmodule Schema.Cache do

observable_type_id_map
else
observable_kind = "#{kind}-Specific Attribute"

Map.put(
observable_type_id_map,
observable_type_id,
%{
caption: "#{caption} #{kind}: #{attribute_key} (#{kind}-Specific Attribute)",
description:
"#{kind}-specific attribute \"#{attribute_key}\" for the #{caption} #{kind}."
}
make_observable_enum_entry(
"#{caption} #{kind}: #{attribute_key}",
"#{kind}-specific attribute \"#{attribute_key}\" for the #{caption} #{kind}.",
observable_kind
)
)
end
else
Expand Down Expand Up @@ -534,16 +536,16 @@ defmodule Schema.Cache do

observable_type_id_map
else
observable_kind = "#{kind}-Specific Attribute"

Map.put(
observable_type_id_map,
observable_type_id,
%{
caption:
"#{caption} #{kind}: #{attribute_path} (#{kind}-Specific Attribute Path)",
description:
"#{kind}-specific attribute on path \"#{attribute_path}\"" <>
" for the #{caption} #{kind}."
}
make_observable_enum_entry(
"#{caption} #{kind}: #{attribute_path}",
"#{kind}-specific attribute \"#{attribute_path}\" for the #{caption} #{kind}.",
observable_kind
)
)
end
end
Expand Down Expand Up @@ -636,7 +638,7 @@ defmodule Schema.Cache do
Map.put(
observable_type_id_map,
observable_type_id,
%{caption: "#{caption} (Object)", description: description}
make_observable_enum_entry(caption, description, "Object")
)
end
else
Expand Down Expand Up @@ -673,10 +675,7 @@ defmodule Schema.Cache do
Map.put(
observable_type_id_map,
observable_type_id,
%{
caption: "#{item[:caption]} (#{kind})",
description: item[:description]
}
make_observable_enum_entry(item[:caption], item[:description], kind)
)
end
else
Expand All @@ -689,6 +688,16 @@ defmodule Schema.Cache do
end
end

# make an observable type_id enum entry
@spec make_observable_enum_entry(String.t(), String.t(), String.t()) :: map()
defp make_observable_enum_entry(caption, description, observable_kind) do
%{
caption: caption,
description: "Observable by #{observable_kind}.<br>#{description}",
_observable_kind: observable_kind
}
end

@spec find_item_caption_and_description(map(), atom(), map() | nil) :: {String.t(), String.t()}
defp find_item_caption_and_description(items, item_key, item)
when is_map(items) and is_atom(item_key) do
Expand Down
4 changes: 2 additions & 2 deletions lib/schema/inspector.ex → lib/schema/validator.ex
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
defmodule Schema.Inspector do
defmodule Schema.Validator do
@moduledoc """
OCSF Event data inspector.
OCSF Event validator.
"""

require Logger
Expand Down
Loading
Loading