The question is very simple, does update_attributes validates every possible validation of the model, even if I don't want to update some of the attributes?

I have a edit view, where the user might change his password, but only if he passes it, i.e., if it's blank the password would not change.

So I do the following in the controller:

def update
    params[resource_name].delete(:password) if params[resource_name][:password].blank?
    params[resource_name].delete(:password_confirmation) if params[resource_name][:password_confirmation].blank?
    params[resource_name].delete(:current_password) if params[resource_name][:current_password].blank?
    if resource.update_attributes(params[resource_name])
        ...
    end
end

I defined the following validation on the model:

validates :password,
          :length => { :within => 6..40 }

So whenever i use call the update I get an error saying that the password is too short

Ps.: I'm using Devise to deal it this.

EDIT: Do any of you know if Devise already have any validation on the password? Cause, I removed the validation and it worked in the right way, but if I put a short password it still show a validation, saying it's too short.

link|improve this question

50% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Yes, Devise does provide validations on password if you've passed :validatable to the devise method in your model. The default configuration for password length is 6..128. You can override this in config/initializers/devise.rb (around line 101).

You can remove :validatable from your model and write your own validations if you prefer. If you do this and don't want the validation to run if the password isn't passed to update_attributes, then do something like this:

validates :password, :presence => true, :if => lambda { new_record? || !password.nil? }
link|improve this answer
You're right. I had the :validatable enabled in my model. The only thing a needed to do to fix it was remove the validation on my model. Then it worked correctly. – Raphael Melo Aug 20 '11 at 11:44
I'm not sure if this last part would work, the second condition isn't itself the same thing defined in :presence => true? – Raphael Melo Aug 20 '11 at 11:51
Actually, I believe that the second condition verifies that the password isn't blank. nil here represents no change. – dogenpunk Sep 7 '11 at 1:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.