2015-01-09 07:38:49 +00:00
|
|
|
class PersonalBooksController < ApplicationController
|
2014-07-03 07:48:28 +00:00
|
|
|
def index
|
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)
|
2014-08-01 11:49:55 +00:00
|
|
|
book_list = books.collect do |book|
|
|
|
|
{
|
2015-01-09 07:38:49 +00:00
|
|
|
"book_title" => book.create_link,
|
2014-08-01 11:49:55 +00:00
|
|
|
"author" => book.authors,
|
2014-07-18 06:29:33 +00:00
|
|
|
"year" => book.year,
|
2015-01-09 07:38:49 +00:00
|
|
|
"book_paper_type" => book.book_type.title,
|
2014-08-01 11:49:55 +00:00
|
|
|
"link_to_show" => OrbitHelper.url_to_show(book.to_param)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
{
|
|
|
|
"books" => book_list,
|
|
|
|
"extras" => {
|
2014-07-18 06:29:33 +00:00
|
|
|
"widget-title" => t("module_name.book"),
|
|
|
|
"th_year" => t('personal_plugins.year'),
|
|
|
|
"th_title" => t("personal_book.book_title"),
|
2015-01-09 07:38:49 +00:00
|
|
|
"th_book_paper_type" => t("personal_book.book_paper_type"),
|
2014-08-11 11:18:35 +00:00
|
|
|
"th_author" => t('personal_book.authors')
|
2014-07-18 06:29:33 +00:00
|
|
|
},
|
|
|
|
"total_pages" => books.total_pages
|
2014-08-01 11:49:55 +00:00
|
|
|
}
|
2014-07-03 07:48:28 +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",
|
2014-08-11 11:18:35 +00:00
|
|
|
"author_name",
|
|
|
|
"authors",
|
2015-01-09 07:38:49 +00:00
|
|
|
"book_paper_type",
|
|
|
|
"book_title",
|
|
|
|
"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
|
|
|
|
# }
|
|
|
|
# }
|
2014-07-03 07:48:28 +00:00
|
|
|
end
|
|
|
|
end
|