personal-book/app/controllers/personal_books_controller.rb

113 lines
3.2 KiB
Ruby
Raw Normal View History

2015-01-09 07:38:49 +00:00
class PersonalBooksController < ApplicationController
def index
2016-03-22 10:06:03 +00:00
params = OrbitHelper.params
2015-01-09 07:38:49 +00:00
books = Book.where(:is_hidden=>false).order_by(:year=>'desc').page(OrbitHelper.params[:page_no]).per(OrbitHelper.page_data_count)
2016-03-22 10:06:03 +00:00
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" => "<a href='#{OrbitHelper.url_to_show(book.to_param)}'>#{book.book_title}</a>"}
else
t << {"value" => "<a href='#{OrbitHelper.url_to_show(book.to_param)}'>#{book.create_link}</a>"}
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
2014-08-01 11:49:55 +00:00
}
end
{
2016-03-22 10:06:03 +00:00
"book_list" => book_list,
"extras" => {"widget-title" => t("module_name.book")},
"headers" => headers,
2014-07-18 06:29:33 +00:00
"total_pages" => books.total_pages
2014-08-01 11:49:55 +00:00
}
end
def show
2014-08-01 11:49:55 +00:00
params = OrbitHelper.params
2015-01-09 07:38:49 +00:00
plugin = Book.where(:is_hidden=>false).find_by(uid: params[:uid])
2014-08-01 11:49:55 +00:00
fields_to_show = [
2015-01-09 07:38:49 +00:00
"year",
2015-05-08 08:21:45 +00:00
"book_title",
2014-08-11 11:18:35 +00:00
"authors",
2015-01-09 07:38:49 +00:00
"book_paper_type",
"extracted_chapters",
2014-08-01 11:49:55 +00:00
"publisher",
"publish_date",
"pages",
2015-01-09 07:38:49 +00:00
"editor",
"author_type",
"number_of_authors",
"isbn",
2014-08-01 11:49:55 +00:00
"url",
2015-01-09 07:38:49 +00:00
"file",
"publication_date",
"language"
2014-08-01 11:49:55 +00:00
]
{"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