AndrewDryga
Hey guys. I know this is an old topic, but as I write more and more complex application with Elixir and Ecto I feel like we really need a way to let developers use dynamic embeds.
Few words about our use case, we have a Transport schema which stores various common fields and settings of a transport. But depending on transport type (eg. Twillio and Facebook Messenger) settings can be very different and also there are DB constraints that should be in place for those settings.
We do work around this issue with an application logic which takes params for the embedded schema (which defined as :map type on parent changeset) and validates/casts them if embedded changeset is valid or properly adds errors to the parent otherwise. Here are some code:
A function that shows how dynamic changeset works in our case:
defp cast_provider_settings(changeset, provider_field, provider_settings_field) do
with {:ok, provider} <- fetch_change(changeset, provider_field),
{:ok, settings} <- fetch_change(changeset, provider_settings_field),
provider_settings_changeset = Provider.settings_changeset(provider, settings),
{:ok, valid_settings} <- Validator.fetch_valid_attrs(provider_settings_changeset) do
put_change(changeset, provider_settings_field, valid_settings)
else
:error ->
changeset
{:error, :not_found} ->
changeset
{:error, %{valid?: false} = settings_changeset} ->
put_embedded_error(changeset, provider_settings_field, settings_changeset)
end
end
Here is how you can add an error to an embedded changeset defined as map:
defp put_embedded_error(changeset, embed_field, embedded_changeset) do
embedded_type =
{:embed,
%Ecto.Embedded{
cardinality: :one,
field: embed_field,
on_cast: nil,
on_replace: :raise,
owner: %{},
related: Transport,
unique: true
}}
%{
changeset
| changes: Map.put(changeset.changes, embed_field, embedded_changeset),
types: Map.put(changeset.types, embed_field, embedded_type),
valid?: false
}
end
(Notice that you can’t override types and leave embedded changeset in Ecto Schema where :map type was defined because you would get a cast error. Ecto.Changeset does use pre-compiled type information when insert happens so overriding only helps when you use functions like traverse_errors/2.)
And even if you do that, there is a lot of issues that persist here. The main one right now for us is constraints - they are lost when embedded schema turned into a map and moving them manually to parent doesn’t make sense (error field would point to a wrong direction).
Other ways to hack around:
- Define multiple schemas per database entity (or even combine that with PostgreSQL table inheritance). This one looks weird for me because when I fetch data back from DB I do want to see only one kind of schema. Data that I want to put there should be exactly what I get back.
- Do not use dynamic embeds. This option looks poor because there is sooo many use cases where dynamic embed makes perfect sense.
As a very raw suggestion how we can deal with that:
- We might add a
:changesettype for Ecto.Schema. - It’s application responsibility to actually implement logic how embedded changeset gets there, on which fields it’s resolved, etc. (I don’t think that Ecto needs to add any kind of magic here.)
- Repo operations should take care of changesets in
:changesetfields in a same way as they would do with usual embedded schema.
OR
- Make Ecto use type information from changeset (removing the calls to
Schema.__*__functions) which is not straightforward and would make changesets structs much bigger. (See this issue.)
Trending in Discussions
Other Trending Topics
Chat & Discussions>Discussions
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 10 of 24 Posts
wojtekmach
Can you talk a bit more about your use case; on the DB level is it e.g.
transportstable with a few columns, including e.g.provider_type(string) andprovider_settings(json) columns?What types of constraints, like
CHECKconstraints?AndrewDryga
@wojtekmach I guess migration would answer both questions. In short - yes, it’s 2 columns. Constraints can be very different, I can’t tell which we will use in future. Currently it’s unique index and CHECK’s.
wojtekmach
Hey @AndrewDryga, the migration is very helpful, thanks. The DB design looks good.
What do you think about validating provider settings with schemaless changesets and copying the errors to the parent? This would be similar to how constraint validations are handled, they’re used in the parent changeset and end up in parent changeset errors.
AndrewDryga
@wojtekmach this is definitely possible, we do as you said: validate dynamic embed with changeset (it’s not schemaless but it doesn’t matter) and put errors to the parent if any. But now we also need to copy constraints and in the view layer add a hack that would map constraint error to look like it occurred in the structure from
provider_settingsembed.Mapping is required because we want error for a client to appear where it’s logically should be and point to a correct field, in case front-end maps that errors back. Correct me if I’m wrong, but changeset struct after constraint violation would point to a field in the embed, not to field in the parent struct.
The question is should we do something and make Ecto support dynamic embeds without a lot of hacking and mapping everything back and forth? Because resulting code is pretty complex, duplicated and error prone.
blatyo
The core team tends to prefer building an extendable core and allowing the community to provide extensions. Is there something here that might prevent a library and require this to be in Ecto? What would Ecto support for dynamic embeds look like?
AndrewDryga
Unfortunately, I don’t know a way to write a library that would change the fact that you can’t use
Ecto.Changesetyou built by yourself withEcto.Repooperations. If you have ideas - I’m all ears. Maybe provide your own Repo implementation, but for a library it would be very hard to keep it up to date.To support dynamic embeds (as far as I know):
Ecto.Reposhould thread dynamic embeds like any other embeds and in case of errors return them in proper structure (errors occurred in embed should be in embedded changeset).drapermd
@AndrewDryga Do you have an open source tree that you can share to solve this problem?
AndrewDryga
We have code that we use internally but noting ready for open source yet. Without Ecto support it’s just hacks.
Adzz
Forgive me if I’m not understanding the problem correctly, but can you solve this problem with a custom ecto type?
Similar to the approach used here: https://medium.com/@ItizAdz/creating-a-has-one-of-association-in-ecto-with-ectomorph-3932adb996d9
Essentially the custom type decides how to build which struct based on the shape of the params it gets.
AndrewDryga
Currently, this is not possible because a type implementation only has access to data inside one field, but our use case is when type is actually a separate field in a schema. If we can, somehow, make type to know about other field values - it would work.