# File lib/active_scaffold/actions/update.rb, line 3 def self.included(base) base.before_filter :update_authorized_filter, :only => [:edit, :update] base.helper_method :update_refresh_list? end
# File lib/active_scaffold/actions/update.rb, line 8 def edit do_edit respond_to_action(:edit) end
# File lib/active_scaffold/actions/update.rb, line 13 def update do_update respond_to_action(:update) end
for inline (inlist) editing
# File lib/active_scaffold/actions/update.rb, line 19 def update_column do_update_column @column_span_id = params.delete(:editor_id) || params.delete(:editorId) end
override this method if you want to do something after the save
# File lib/active_scaffold/actions/update.rb, line 151 def after_update_save(record); end
override this method if you want to inject data in the record (or its associated objects) before the save
# File lib/active_scaffold/actions/update.rb, line 148 def before_update_save(record); end
A simple method to find and prepare a record for editing May be overridden to customize the record (set default values, etc.)
# File lib/active_scaffold/actions/update.rb, line 76 def do_edit @record = find_if_allowed(params[:id], :update) end
A complex method to update a record. The complexity comes from the support
for subforms, and saving associated records. If you want to customize this
algorithm, consider using the before_update_save
callback
# File lib/active_scaffold/actions/update.rb, line 82 def do_update do_edit update_save end
# File lib/active_scaffold/actions/update.rb, line 115 def do_update_column # delete from params so update :table won't break urls, also they shouldn't be used in sort links too value = params.delete(:value) column = params.delete(:column).to_sym params.delete(:original_html) params.delete(:original_value) @record = find_if_allowed(params[:id], :read) if @record.authorized_for?(:crud_type => :update, :column => column) @column = active_scaffold_config.columns[column] value ||= unless @column.column.nil? || @column.column.null @column.column.default == true ? false : @column.column.default end unless @column.nil? value = column_value_from_param_value(@record, @column, value) value = [] if value.nil? && @column.form_ui && @column.plural_association? end @record.send("#{@column.name}=", value) before_update_save(@record) self.successful = @record.save if self.successful? && active_scaffold_config.actions.include?(:list) if @column.inplace_edit_update == :table params.delete(:id) do_list elsif @column.inplace_edit_update get_row end end after_update_save(@record) end end
# File lib/active_scaffold/actions/update.rb, line 25 def edit_respond_to_html if successful? render(:action => 'update') else return_to_main end end
# File lib/active_scaffold/actions/update.rb, line 32 def edit_respond_to_js render(:partial => 'update_form') end
# File lib/active_scaffold/actions/update.rb, line 163 def update_ignore?(record = nil) !self.authorized_for?(:crud_type => :update) end
should we refresh whole list after update operation
# File lib/active_scaffold/actions/update.rb, line 154 def update_refresh_list? active_scaffold_config.update.refresh_list end
# File lib/active_scaffold/actions/update.rb, line 35 def update_respond_to_html if params[:iframe]=='true' # was this an iframe post ? do_refresh_list if successful? && active_scaffold_config.create.refresh_list && !render_parent? responds_to_parent do render :action => 'on_update', :formats => [:js], :layout => false end else # just a regular post if successful? flash[:info] = as_(:updated_model, :model => @record.to_label) return_to_main else render(:action => 'update') end end end
# File lib/active_scaffold/actions/update.rb, line 50 def update_respond_to_js if successful? if !render_parent? && active_scaffold_config.actions.include?(:list) if update_refresh_list? do_refresh_list else # get_row so associations are cached like in list action @record = get_row rescue nil # if record doesn't fullfil current conditions remove it from list end end flash.now[:info] = as_(:updated_model, :model => @record.to_label) if active_scaffold_config.update.persistent end render :action => 'on_update' end
# File lib/active_scaffold/actions/update.rb, line 67 def update_respond_to_json render :text => response_object.to_json(:only => active_scaffold_config.update.columns.names), :content_type => Mime::JSON, :status => response_status end
# File lib/active_scaffold/actions/update.rb, line 64 def update_respond_to_xml render :xml => response_object.to_xml(:only => active_scaffold_config.update.columns.names), :content_type => Mime::XML, :status => response_status end
# File lib/active_scaffold/actions/update.rb, line 70 def update_respond_to_yaml render :text => Hash.from_xml(response_object.to_xml(:only => active_scaffold_config.update.columns.names)).to_yaml, :content_type => Mime::YAML, :status => response_status end
# File lib/active_scaffold/actions/update.rb, line 87 def update_save(options = {}) attributes = options[:attributes] || params[:record] begin active_scaffold_config.model.transaction do @record = update_record_from_params(@record, active_scaffold_config.update.columns, attributes) unless options[:no_record_param_update] before_update_save(@record) self.successful = [@record.valid?, @record.associated_valid?].all? # this syntax avoids a short-circuit if successful? @record.save! and @record.save_associated! after_update_save(@record) else # some associations such as habtm are saved before saved is called on parent object # we have to revert these changes if validation fails raise ActiveRecord::Rollback, "don't save habtm associations unless record is valid" end end rescue ActiveRecord::StaleObjectError @record.errors.add(:base, as_(:version_inconsistency)) self.successful = false rescue ActiveRecord::RecordNotSaved @record.errors.add(:base, as_(:record_not_saved)) if @record.errors.empty? self.successful = false rescue ActiveRecord::ActiveRecordError => ex flash[:error] = ex.message self.successful = false end end