mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-13 03:06:06 +08:00
32 lines
776 B
Elixir
32 lines
776 B
Elixir
defmodule LivebookProto do
|
|
@moduledoc false
|
|
|
|
alias LivebookProto.{
|
|
Event,
|
|
SecretCreated,
|
|
SecretUpdated,
|
|
SecretDeleted,
|
|
UserSynchronized
|
|
}
|
|
|
|
@event_mapping (for {_id, field_prop} <- Event.__message_props__().field_props,
|
|
into: %{} do
|
|
{field_prop.type, field_prop.name_atom}
|
|
end)
|
|
|
|
@type event_proto ::
|
|
SecretCreated.t()
|
|
| SecretUpdated.t()
|
|
| SecretDeleted.t()
|
|
| UserSynchronized.t()
|
|
|
|
@doc """
|
|
Builds an event with given data.
|
|
"""
|
|
@spec build_event(event_proto()) :: Event.t()
|
|
def build_event(%struct{} = data) do
|
|
Event.new!(type: {event_type(struct), data})
|
|
end
|
|
|
|
defp event_type(module), do: Map.fetch!(@event_mapping, module)
|
|
end
|