Sha256: e7e73ce40750c1bb4ee86ed736331fa3f82519b15c38995107d36de0a936be5c

Contents?: true

Size: 1.51 KB

Versions: 1

Compression:

Stored size: 1.51 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 = {}
    clazz = obj.kind_of?(Class) ? obj : obj.class
    return unless can_perform_action?(user_type, :create, clazz)
    # use i18n translation on label
    link_to t(".create"), send(action_method clazz, :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

1 entries across 1 versions & 1 rubygems

Version Path
cantango-0.9.3.2 lib/cantango/rails/helpers/rest_helper.rb