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

Database column defaults are not replacing empty string or nil values #517

Open
whysthatso opened this issue Mar 4, 2019 · 4 comments
Open
Labels

Comments

@whysthatso
Copy link

When invoking ObjectRepository.new.create, a new Object is indeed persisted with the default values as defined in the migration.

When invoking `ObjectRepository.new.create( Object.new( attribute1: '', attribute2:'foobar', attribute3:nil )
an Object with all these attributes set is persisted, but neither empty string nor nil is set to the default value.

Possibly unimportant context:
The attribute values are received from a form object that is handled inside an interactor.
The model is part of an has_one association: ThisObject.has_one OtherObject.

Any more info needed?

@whysthatso
Copy link
Author

class Client < Hanami::Entity
end
class ClientRepository < Hanami::Repository
  associations do
    has_one :contact_point
    has_many :invoices
  end

  def create_with_contact_point(data)
    assoc(:contact_point).create(data)
  end

  def find_with_contact_point(id)
    aggregate(:contact_point).where(id: id).map_to(Client).one
  end

  def find_all_with_contact_point
    aggregate(:contact_points)
  end
end
Hanami::Model.migration do
  change do
    create_table :clients do
      primary_key :id

      foreign_key :tax_id, :taxes

      column :city, String, default: 'n/a'
      column :name, String, default: 'n/a'
      column :country, String, default: 'n/a'
      column :email, String, default: 'n/a'
      column :form_of_adressing, String, default: 'n/a'
      column :street, String, default: 'n/a'
      column :street_nr, String, default: 'n/a'
      column :vat_id, String, default: 'n/a'
      column :vat_id_country, String, default: 'n/a'
      column :zip_code, String, default: 'n/a'

      column :created_at, DateTime, null: false
      column :updated_at, DateTime, null: false
    end
  end
end

@cllns
Copy link
Member

cllns commented Mar 5, 2019

Can you handle the default values at the model layer instead? A "Custom schema" might get you what you want.

Semantically, the city is nil (or null in SQL lingo): it wasn't provided. That you want to present it as "n/a" shouldn't affect how you store it.

Honestly, I'd probably go higher than the model and handle this in a Presenter.

I know this might not be the answer you want, and there might be some underlying issue here that we need to fix, it just seems like there's a better way to accomplish what you're trying to do. (Maybe this DB interacts with another app and that's why you have to do it this way, I don't know.)

@kaikuchn
Copy link
Member

kaikuchn commented Mar 6, 2019

I guess a work-around would be to convert the entity into a hash and compact it. Then all keys where the value is nil would be removed (empty strings would still be around though!) and defaults of the database should be filled in.

A better approach would be to have defaults specified in the entity. In that case one needs to create a custom schema... @cllns Couldn't the auto-discovery of the schema also consider defaults?

@cllns cllns changed the title Databasecolumn defaults are not replacing empty string or nil values Database column defaults are not replacing empty string or nil values Mar 7, 2019
@mereghost
Copy link
Member

If the column allows NULLs and you send a nil, this one will get persisted as this was what you asked for (or so the underlying layers think).

Same goes with the empty string. @whysthatso You can probably properly handle these with a validator either on the Action or Interactor level.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants