class PersonalBooksController < ApplicationController def index params = OrbitHelper.params books = Book.where(:is_hidden=>false).order_by(:year=>'desc').page(OrbitHelper.params[:page_no]).per(OrbitHelper.page_data_count) page = Page.where(:page_id => params[:page_id]).first rescue nil if page.custom_string_field == "table" fields_to_show = [ "authors", "book_title", "extracted_chapters", "publisher", "isbn", "publish_date" ] else fields_to_show = [ "year", "book_title" ] end book_list = [] books.each do |book| t = [] fields_to_show.each do |fs| case fs when "book_title" if page.custom_string_field == "table" t << {"value" => "#{book.book_title}"} else t << {"value" => "#{book.create_link}"} end when "publish_date" pd = "" if !book.publish_date.nil? pd = book.publish_date.strftime("%Y-%m-%d").split('-') pd = pd[0]+"/"+pd[1] end t << {"value" => pd} else t << {"value" => book.send(fs)} end end book_list << {"books" => t} end headers = [] fields_to_show.each do |fs| col = 2 col = 3 if fs == "paper_title" headers << { "head-title" => t("personal_book.#{fs}"), "col" => col } end { "book_list" => book_list, "extras" => {"widget-title" => t("module_name.book")}, "headers" => headers, "total_pages" => books.total_pages } end def show params = OrbitHelper.params plugin = Book.where(:is_hidden=>false).find_by(uid: params[:uid]) fields_to_show = [ "year", "book_title", "authors", "book_paper_type", "extracted_chapters", "publisher", "publish_date", "pages", "editor", "author_type", "number_of_authors", "isbn", "url", "file", "publication_date", "language" ] {"plugin_datas"=>plugin.get_plugin_data(fields_to_show)} # publication_date = book.publication_date.to_date.strftime("%Y/%m/%d") rescue nil # publish_date = book.publish_date.to_date.strftime("%Y/%m/%d") rescue nil # files = book.book_files.map{|file| { "file_url" => file.member_book_file.url, "file_title" => (file.title.blank? ? File.basename(file.file.path) : file.title) } } rescue [] # { # "book_files" => files, # "data" => { # "title" => book.book_title, # "year" => book.year, # "authors" => book.authors, # "isbn" => book.isbn, # "language" => book.language, # "pages" => book.pages, # "keywords" => book.keywords, # "publication_date" => publication_date , # "url" => book.url, # "note" => book.note, # "extracted_chapters" => book.extracted_chapters, # "publish_date" => publish_date, # "publisher" => book.publisher, # "editor" => book.editor # } # } end end