I want to alter the data and save it then to the database when using the new / create function of the app.

link|improve this question

Do you want to do it app-wide or model-specific? – Bohdan Jul 6 '11 at 8:49
should be just in the model like in the answers – Daniel Ruf Jul 6 '11 at 9:06
feedback

4 Answers

up vote 3 down vote accepted

You should use active callbacks, as the two other answers stated. The *before_create* is definitely the one you are looking for. Always do that kind of logic in the model, and not in the controller. Rails mantra (one of many) is "thin controller, fat model", which enable code reuse more easily.

You can check the active callbacks documentation at :

http://api.rubyonrails.org/classes/ActiveRecord/Callbacks.html

Also, here is an example of what you want to achieve

class MyClass < ActiveRecord::Base
    before_create :alter_my_data

    def alter_my_data
        # any manipulation you want to do here before saving
    end
end
link|improve this answer
thanks also for the link (but they should fix the tpyo there, some text parts are hard to read because the text size is too small) – Daniel Ruf Jul 6 '11 at 9:09
I agree! ctrl + mousewheel up to upsize text ;-) – Dominic Goulet Jul 6 '11 at 9:14
feedback
before_create :myfunction

def myfunction
  # Edit data
end

Should do the trick.

link|improve this answer
thanks, the whole big ruby on rails documentation is really huge but ruby on rails itself with scaffolding is easy =) – Daniel Ruf Jul 6 '11 at 9:04
feedback
class User < ActiveRecord::Base
  before_create :validate_username

  def validate_username
    raise "blank error" if username.blank?
    #....your code
  end
end
link|improve this answer
feedback

Your question has already been answered above, but I really recommend you check out the official Ruby on Rails guides:

http://guides.rubyonrails.org/

The guides are easy to comprehend and cover many parts of Rails. Your question is answered in the 'Active Record Validations and Callbacks' section.

link|improve this answer
i checked them out but did you work with ruby on rails the first time and scaffolding and had there a huuuuuuuge documentation for ruby (on rails) and no plan what to do next while you have to write a whole app from scratch new in a few days? how should i know that this is there at active record validations and call backs? i already know active record and all the other stuff but didnt know where to search, for what to search and how to do it. – Daniel Ruf Jul 6 '11 at 11:23
feedback

Your Answer

 
or
required, but never shown

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