personal-patent/app/controllers/personal_patents_controller.rb

122 lines
3.5 KiB
Ruby

class PersonalPatentsController < ApplicationController
def index
params = OrbitHelper.params
patents = Patent.where(:is_hidden=>false).order_by(:year=>'desc').page(OrbitHelper.params[:page_no]).per(OrbitHelper.page_data_count)
fields_to_show = Page.where(:page_id => params[:page_id]).first.custom_array_field rescue []
if fields_to_show.blank?
fields_to_show = [
"publish_date",
"patent_title",
"patent_no",
"patent_country",
"authors"
]
end
patent_list = []
patents.each do |patent|
t = []
fields_to_show.each do |fs|
case fs
when "patent_title"
t << {"value" => "<a href='#{OrbitHelper.url_to_show(patent.to_param)}'>" + (patent.send(fs) rescue "") + "</a>"}
when "publish_date"
t << {"value" => (patent.publish_date.strftime("%Y/%m/%d") rescue "")}
when "application_date"
t << {"value" => (patent.application_date.strftime("%Y/%m/%d") rescue "")}
when "end_date"
t << {"value" => (patent.end_date.strftime("%Y/%m/%d") rescue "")}
when "patent_category"
t << {"value" => (patent.patent_types.collect{|pt| pt.title}.join(", ") rescue "")}
when "author_type"
t << {"value" => (patent.patent_author_types.collect{|pt| pt.title}.join(", ") rescue "")}
else
t << {"value" => patent.send(fs)}
end
end
patent_list << {"patent_list" => t}
end
headers = []
fields_to_show.each do |fs|
col = 2
col = 3 if fs == "patent_title"
header = fs == "authors" ? t("users.name") : t("personal_patent.#{fs}")
headers << {
"head-title" => header,
"col" => col
}
end
{
"patents" => patent_list,
"extras" => { "widget-title" => t("module_name.personal_patent") },
"headers" => headers,
"total_pages" => patents.total_pages
}
end
def show
params = OrbitHelper.params
plugin = Patent.where(:is_hidden=>false).find_by(uid: params[:uid])
fields_to_show = [
"patent_title",
"patent_no",
"patent_category",
"patent_country",
"progress_status",
"author_type",
"application_date",
"publish_date",
"end_date",
"patent_organization",
"year",
"authors",
"url",
"language",
"keywords",
"note",
"file"
]
{"plugin_datas"=>plugin.get_plugin_data(fields_to_show)}
end
def get_fields_for_index
@page = Page.find(params[:page_id]) rescue nil
@fields_to_show = [
"patent_category",
"year",
"publish_date",
"patent_title",
"patent_no",
"patent_organization",
"progress_status",
"application_date",
"end_date",
"publish_date",
"author_type",
"patent_country",
"authors",
"url",
"language",
"keywords",
"note"
]
@fields_to_show = @fields_to_show.map{|fs| [(fs == "authors" ? t("users.name") : t("personal_patent.#{fs}")), fs]}
@default_fields_to_show = [
"publish_date",
"patent_title",
"patent_no",
"patent_country",
"authors"
]
render :layout => false
end
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
end