Sha256: eb26c89176d1936e3bb31c2daf1bc282e620fd6be45510923a3029aaa165c881

Contents?: true

Size: 1.03 KB

Versions: 8

Compression:

Stored size: 1.03 KB

Contents

class NdlBooksController < ApplicationController
  before_filter :authenticate_user!
  before_filter :check_librarian

  def index
    if params[:page].to_i == 0
      page = 1
    else
      page = params[:page]
    end
    @query = params[:query].to_s.strip
    books = NdlBook.search(params[:query], page)
    @books = WillPaginate::Collection.create(page, NdlBook.per_page, books[:total_entries]) do |pager|
      pager.replace books[:items]
    end
  end

  def create
    if params[:book]
      @manifestation = NdlBook.import_from_sru_response(params[:book][:nbn])
      if @manifestation
        flash[:notice] = t('controller.successfully_created', :model => t('activerecord.models.manifestation'))
        flash[:porta_import] == true
        redirect_to manifestation_items_url(@manifestation)
      else
        flash[:notice] = t('page.record_not_found')
        redirect_to ndl_books_url
      end
    end
  end

  private
  def check_librarian
    unless current_user.try(:has_role?, 'Librarian')
      access_denied
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
enju_ndl-0.0.10 app/controllers/ndl_books_controller.rb
enju_ndl-0.0.9 app/controllers/ndl_books_controller.rb
enju_ndl-0.0.8 app/controllers/ndl_books_controller.rb
enju_ndl-0.0.7 app/controllers/ndl_books_controller.rb
enju_ndl-0.0.6 app/controllers/ndl_books_controller.rb
enju_ndl-0.0.5 app/controllers/ndl_books_controller.rb
enju_ndl-0.0.4 app/controllers/ndl_books_controller.rb
enju_ndl-0.0.3 app/controllers/ndl_books_controller.rb