Sha256: 4ffefa77486ae2daaf8cd496ba7b9cba90dcb0254ea5c76dfa7697c0e1a6e7f1

Contents?: true

Size: 1.21 KB

Versions: 4

Compression:

Stored size: 1.21 KB

Contents

class LocSearchController < ApplicationController
  before_action :check_policy, only: [:index, :create]

  def index
    if params[:page].to_i <= 0
      page = 1
    else
      page = params[:page].to_i
    end
    @query = params[ :query ].to_s.strip
    books = LocSearch.search( @query, { :page => page } )
    @books = Kaminari.paginate_array(
      books[:items],
      :total_count => books[ :total_entries ],
      :page => page
    ).page( page ).per( 10 )
    respond_to do |format|
      format.html
    end
  end

  def create
    begin
      @manifestation = LocSearch.import_from_sru_response(params[:book][:lccn])
    rescue EnjuLoc::RecordNotFound
    end
    respond_to do |format|
      if @manifestation.try(:save)
        flash[:notice] = t('controller.successfully_created', :model => t('activerecord.models.manifestation'))
        format.html { redirect_to manifestation_url(@manifestation) }
      else
	if @manifestation and not @manifestation.valid? 
	  flash[:notice] = @manifestation.errors.messages
	else
          flash[:notice] = t('enju_loc.record_not_found')
	end
        format.html { redirect_to loc_search_index_url }
      end
    end
  end

  private
  def check_policy
    authorize LocSearch
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
enju_loc-0.2.0 app/controllers/loc_search_controller.rb
enju_loc-0.2.0.beta.3 app/controllers/loc_search_controller.rb
enju_loc-0.2.0.beta.2 app/controllers/loc_search_controller.rb
enju_loc-0.2.0.beta.1 app/controllers/loc_search_controller.rb