Module: OnTheSpot::ControllerExtension::ClassMethods

Defined in:
lib/on_the_spot/controller_extension.rb

Overview

if this method is called inside a controller, the edit-on-the-spot controller action is added that will allow to edit fields in place

Instance Method Summary collapse

Instance Method Details

#can_edit_on_the_spot(check_acces_method = nil) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/on_the_spot/controller_extension.rb', line 11

def can_edit_on_the_spot(check_acces_method=nil)
  define_method :update_attribute_on_the_spot do
    klass_name, field, id = params[:id].split('__')
    select_data = params[:select_array]
    display_method = params[:display_method]

    klass = klass_name.camelize.constantize
    object = klass.find(id)

    is_allowed = check_acces_method.present? ? self.send(check_acces_method, object, field) : true

    if is_allowed
      saved = if klass.attribute_names.include?(field)
                object.update_attributes(field => params[:value])
              else
                # calculated attribute?
                object.send("#{field}=", params[:value])
                object.save
              end
      if saved
        if select_data.nil?
          field_or_method = if display_method.present?
                              object.send(display_method)
                            else
                              value = object.send(field).to_s
                              params[:raw] ? value : CGI::escapeHTML(value)
                            end
          render :plain => field_or_method
        else
          parsed_data = JSON.parse(select_data.gsub("'", '"').gsub('\"', "'"))
          render :plain => parsed_data[object.send(field).to_s]
        end
      else
        render :plain => object.errors.full_messages.join("\n"), :status => 422
      end
    else
      render :plain => t('on_the_spot.access_not_allowed'), :status => 422
    end
  end

  define_method :get_attribute_on_the_spot do
    klass_name, field, id = params[:id].split('__')

    object = klass_name.camelize.constantize.find(id)

    is_allowed = check_acces_method.present? ? self.send(check_acces_method, object, field) : true

    if is_allowed
      render :plain => object.send(field)
    else
      render :plain => t('on_the_spot.access_not_allowed'), :status => 422
    end
  end
end