mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-07 23:47:53 +08:00
64dad900d7
Closes #2216.
36 lines
927 B
Elixir
36 lines
927 B
Elixir
defmodule LivebookProto do
|
|
alias LivebookProto.{
|
|
Event,
|
|
FileSystemCreated,
|
|
FileSystemDeleted,
|
|
FileSystemUpdated,
|
|
SecretCreated,
|
|
SecretDeleted,
|
|
SecretUpdated,
|
|
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 ::
|
|
FileSystemCreated.t()
|
|
| FileSystemDeleted.t()
|
|
| FileSystemUpdated.t()
|
|
| SecretCreated.t()
|
|
| SecretDeleted.t()
|
|
| SecretUpdated.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
|