Sha256: 8b7615c1b5f964c58b7f18cb728462007b6925b31c9e35d3547d51cf0c544931

Contents?: true

Size: 1.29 KB

Versions: 5

Compression:

Stored size: 1.29 KB

Contents

class LocSearchController < ApplicationController
  before_filter :authenticate_user!
  before_filter :check_librarian

  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_librarian
    unless current_user.try(:has_role?, 'Librarian')
      access_denied
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
enju_loc-0.1.1 app/controllers/loc_search_controller.rb
enju_loc-0.1.0 app/controllers/loc_search_controller.rb
enju_loc-0.1.0.pre5 app/controllers/loc_search_controller.rb
enju_loc-0.1.0.pre4 app/controllers/loc_search_controller.rb
enju_loc-0.1.0.pre3 app/controllers/loc_search_controller.rb