personal-book/app/controllers/personal_books_controller.rb

189 lines
6.4 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
page_data_count = OrbitHelper.page_data_count
books = Book.where(:is_hidden=>false).sort_for_frontend.page(OrbitHelper.params[:page_no]).per(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"
2016-04-01 05:56:20 +00:00
fields_to_show = page.custom_array_field rescue []
2016-03-22 10:06:03 +00:00
fields_to_show = [
"authors",
"book_title",
"extracted_chapters",
"publisher",
"isbn",
"publish_date"
2016-04-01 05:56:20 +00:00
] if fields_to_show.blank?
2016-03-22 10:06:03 +00:00
else
fields_to_show = [
"year",
2019-08-14 08:06:14 +00:00
"book_title"
2016-03-22 10:06:03 +00:00
]
end
2019-08-14 06:57:08 +00:00
if params[:selectbox] !=nil
books_temp = Book.where(:is_hidden=>false).sort_by{ |tp| [-tp[:year].to_i,-tp[:publication_date].to_i] }
2019-08-14 06:57:08 +00:00
case params[:selectbox]
when "book_title", "extracted_chapters", "default"
2019-08-15 02:19:55 +00:00
if params[:selectbox] == "default"
search_temp = "book_title"
else
2019-08-15 02:03:39 +00:00
search_temp = params[:selectbox]
end
2019-08-14 06:57:08 +00:00
if page.custom_string_field == "table"
books_show = books_temp.select {|value| search_all_words(value.send(search_temp), params[:keywords])}
2019-08-14 06:57:08 +00:00
else
books_show = books_temp.select {|value| search_all_words(value.create_link, params[:keywords])}
2019-08-14 06:57:08 +00:00
end
when "publish_date", "publication_date"
2019-08-15 02:48:15 +00:00
books_show = books_temp.select {|value| search_all_words((value.send(params[:selectbox]).strftime("%Y/%m/%d") rescue ""), params[:keywords])}
2019-08-14 06:57:08 +00:00
when "author_type"
books_show = books_temp.select {|value| search_all_words(value.book_author_types.collect{|bat| bat.title}.join(", "), params[:keywords])}
when "book_paper_type"
books_show = books_temp.select {|value| search_all_words((value.book_type.title rescue ""), params[:keywords])}
2019-08-14 06:57:08 +00:00
when "language"
books_show = books_temp.select {|value| search_all_words((!value.language.nil? ? t("#{value.language}") : ""), params[:keywords])}
2019-08-14 06:57:08 +00:00
else
books_show = books_temp.select {|value| search_all_words(value.send(params[:selectbox]).to_s, params[:keywords])}
2019-08-14 06:57:08 +00:00
end
if params[:page_no].nil?
page_to_show = 1
else
page_to_show = params[:page_no].to_i
end
books = books_show[(page_to_show-1)*page_data_count...page_to_show*page_data_count]
books_total_pages = (books_show.length/page_data_count.to_f).ceil
2019-08-14 06:57:08 +00:00
else
books_total_pages = books.total_pages
end
2016-03-22 10:06:03 +00:00
book_list = []
books.each do |book|
t = []
fields_to_show.each do |fs|
case fs
2016-04-05 18:06:34 +00:00
when "book_title", "extracted_chapters"
2016-03-22 10:06:03 +00:00
if page.custom_string_field == "table"
2016-04-05 18:06:34 +00:00
t << {"value" => "<a href='#{OrbitHelper.url_to_show(book.to_param)}'>#{book.send(fs)}</a>"}
2016-03-22 10:06:03 +00:00
else
t << {"value" => "<a href='#{OrbitHelper.url_to_show(book.to_param)}'>#{book.create_link}</a>"}
end
2016-04-06 05:08:32 +00:00
when "publish_date", "publication_date"
2019-08-15 02:48:15 +00:00
t << {"value" => (!book.send(fs).nil? ? book.send(fs).strftime('%Y/%m') : "" rescue "")}
when "author_type"
t << {"value" => (book.book_author_types.collect{|bat| bat.title}.join(", ") rescue "")}
when "language"
2019-08-14 07:29:35 +00:00
t << {"value" => (!book.language.nil? ? t("#{book.language}") : "")}
when "book_paper_type"
t << {"value" => (book.book_type.title rescue "")}
2016-03-22 10:06:03 +00:00
else
t << {"value" => (book.send(fs) rescue "")}
2016-03-22 10:06:03 +00:00
end
end
book_list << {"books" => t}
end
2019-08-14 06:57:08 +00:00
choice_show = []
2016-03-22 10:06:03 +00:00
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
}
2019-08-14 06:57:08 +00:00
choice_show << t("personal_book.#{fs}")
2014-08-01 11:49:55 +00:00
end
2019-08-14 06:57:08 +00:00
choice_value = fields_to_show
choice_value.unshift("default")
choice_select=choice_value.map{|iter| iter==params[:selectbox] ? "selected" : ""}
choice_select=choice_select.map{|value| {"choice_select" => value}}
choice_value=choice_value.map{|value| {"choice_value" => value}}
choice_default = t("personal_book.select_class")
2019-08-14 06:57:08 +00:00
choice_show.unshift(choice_default)
choice_show=choice_show.map{|value| {"choice_show" => value}}
choice=choice_value.zip(choice_show,choice_select)
choice=choice.map{|value| value.inject:merge}
select_text = t("personal_book.search_class")
search_text = t("personal_book.word_to_search")
2014-08-01 11:49:55 +00:00
{
2016-03-22 10:06:03 +00:00
"book_list" => book_list,
2019-08-14 06:57:08 +00:00
"extras" => {"widget-title" => t("module_name.book"),
"url" => "/"+params[:locale]+params[:url],
"select_text" => select_text,
"search_text" => search_text,
2019-08-15 02:21:11 +00:00
"search_value" => params[:keywords] },
2016-03-22 10:06:03 +00:00
"headers" => headers,
2019-08-14 06:57:08 +00:00
"total_pages" => books_total_pages,
"choice" => choice
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",
"file",
2015-01-09 07:38:49 +00:00
"publication_date",
"language"
2014-08-01 11:49:55 +00:00
]
{"plugin_datas"=>plugin.get_plugin_data(fields_to_show)}
2016-04-01 05:56:20 +00:00
end
def get_fields_for_index
@page = Page.find(params[:page_id]) rescue nil
@fields_to_show = [
"year",
"book_title",
"authors",
"book_paper_type",
"extracted_chapters",
"publisher",
"publish_date",
"pages",
"editor",
"author_type",
"number_of_authors",
"isbn",
"url",
"publication_date",
"language"
]
@fields_to_show = @fields_to_show.map{|fs| [t("personal_book.#{fs}"), fs]}
@default_fields_to_show = [
"authors",
"book_title",
"extracted_chapters",
"publisher",
"isbn",
"publish_date"
]
render :layout => false
end
2014-08-01 11:49:55 +00:00
2016-04-01 05:56:20 +00:00
def save_index_fields
page = Page.find(params[:page_id]) rescue nil
page.custom_array_field = params[:keys]
page.save
render :json => {"success" => true}.to_json
end
private
def search_all_words(target,word)
target=target.upcase
words=word.upcase.split(' ')
return words.select{|value| target.include? value}==words
end
end