Sha256: 997045d4c1652407a9fc1e87005d67ffbf6aa6645ea61d3df76335c2ea6b0313

Contents?: true

Size: 1.46 KB

Versions: 4

Compression:

Stored size: 1.46 KB

Contents

module CanTango::Rails::Helpers::RestHelper
  CanTango.config.models.available_models.each do |model|
    class_eval %{
      def delete_#{model}_path obj, options = {}
        #{model}_path obj, {:method => 'delete'}.merge(options)
      end
    }
  end

  def link_to_new obj, user_type, options = {}
    return unless can_perform_action?(user_type, :create, obj)
    # use i18n translation on label
    link_to t(".create"), send(action_method obj, :new, options)
  end

  def link_to_delete obj, user_type, options = {}
    return unless can_perform_action?(user_type, :delete, obj)
    # use i18n translation on label
    link_to t(".delete"), rest_obj_action(obj, :delete, options)
  end

  def link_to_edit obj, user_type, options = {}
    return unless can_perform_action?(user_type, :edit, obj)
    # use i18n translation on label
    link_to t(".edit"), rest_obj_action(obj, :edit, options)
  end

  def link_to_view obj, user_type, options = {}
    return unless can_perform_action?(user_type, :view, obj)
    # use i18n translation on label
    link_to t(".view"), send(view_method(obj), obj, options)
  end

  protected

  def can_perform_action? user_type, action, obj
    send(:"#{user_type}_can?", action, obj)
  end

  def view_method obj
    "#{obj.class.to_s.underscore}_path"
  end

  def rest_obj_action obj, action, options
    send action_method(obj, :edit), obj, options
  end

  def action_method obj, action
    "#{action}_#{obj.class.to_s.underscore}_path"
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cantango-0.8.9.5 lib/cantango/rails/helpers/rest_helper.rb
cantango-0.8.9.4 lib/cantango/rails/helpers/rest_helper.rb
cantango-0.8.9.3 lib/cantango/rails/helpers/rest_helper.rb
cantango-0.8.9.2 lib/cantango/rails/helpers/rest_helper.rb