2014-07-04 03:48:33 +00:00
|
|
|
class PersonalPatentsController < ApplicationController
|
2019-11-16 05:43:37 +00:00
|
|
|
include Admin::PersonalPatentsHelper
|
2014-07-04 03:48:33 +00:00
|
|
|
def index
|
2016-04-06 10:52:57 +00:00
|
|
|
params = OrbitHelper.params
|
2019-08-19 08:43:30 +00:00
|
|
|
page_data_count = OrbitHelper.page_data_count
|
2019-08-20 04:19:33 +00:00
|
|
|
patents = Patent.where(is_hidden: false).sort_for_frontend.page(OrbitHelper.params[:page_no]).per(page_data_count)
|
|
|
|
fields_to_show = Page.where(page_id: params[:page_id]).first.custom_array_field rescue []
|
2016-04-06 10:52:57 +00:00
|
|
|
if fields_to_show.blank?
|
2019-08-20 04:19:33 +00:00
|
|
|
fields_to_show = %w[
|
|
|
|
publish_date
|
|
|
|
patent_title
|
|
|
|
patent_no
|
|
|
|
patent_country
|
|
|
|
authors
|
2016-04-06 10:52:57 +00:00
|
|
|
]
|
2019-08-20 04:19:33 +00:00
|
|
|
end
|
|
|
|
if !params[:selectbox].nil?
|
|
|
|
patents_temp = Patent.where(is_hidden: false).sort_by { |tp| [-tp[:year].to_i, -tp[:publication_date].to_i] }
|
2019-08-16 01:27:54 +00:00
|
|
|
case params[:selectbox]
|
2019-08-20 04:19:33 +00:00
|
|
|
when 'patent_title', 'default'
|
|
|
|
patents_show = patents_temp.select { |value| search_all_words((value.patent_title rescue ''), params[:keywords]) }
|
|
|
|
when 'publish_date', 'application_date', 'end_date'
|
|
|
|
patents_show = patents_temp.select { |value| search_all_words((value.send(params[:selectbox]).strftime('%Y/%m/%d') rescue ''), params[:keywords]) }
|
|
|
|
when 'patent_category'
|
|
|
|
patents_show = patents_temp.select { |value| search_all_words((value.patent_types.collect(&:title).join(', ').to_s rescue ''), params[:keywords]) }
|
|
|
|
when 'author_type'
|
|
|
|
patents_show = patents_temp.select { |value| search_all_words(value.patent_author_types.collect(&:title).join(', '), params[:keywords]) }
|
|
|
|
when 'language'
|
|
|
|
patents_show = patents_temp.select { |value| search_all_words((!value.language.nil? ? t(value.language.to_s) : ''), params[:keywords]) }
|
2019-11-16 05:43:37 +00:00
|
|
|
when 'authors'
|
|
|
|
patents_show = patents_temp.select { |value| search_all_words(get_authors_text(value), params[:keywords]) }
|
|
|
|
when 'keywords'
|
|
|
|
patents_show = patents_temp.select { |value| search_all_words(Nokogiri::HTML(value.keywords).text, params[:keywords]) }
|
|
|
|
when 'note'
|
|
|
|
patents_show = patents_temp.select { |value| search_all_words(Nokogiri::HTML(value.note).text, params[:keywords]) }
|
2019-08-16 01:27:54 +00:00
|
|
|
else
|
2019-08-20 04:19:33 +00:00
|
|
|
patents_show = patents_temp.select { |value| search_all_words((value.send(params[:selectbox]).to_s rescue ''), params[:keywords]) }
|
2019-08-16 01:27:54 +00:00
|
|
|
end
|
2019-08-20 06:16:40 +00:00
|
|
|
page_to_show = params[:page_no].nil? ? 1 : params[:page_no].to_i
|
2019-08-20 04:19:33 +00:00
|
|
|
patents = patents_show[(page_to_show - 1) * page_data_count...page_to_show * page_data_count]
|
|
|
|
patents_total_pages = (patents_show.length / page_data_count.to_f).ceil
|
2019-08-16 01:27:54 +00:00
|
|
|
else
|
|
|
|
patents_total_pages = patents.total_pages
|
|
|
|
end
|
2016-04-06 10:52:57 +00:00
|
|
|
patent_list = []
|
|
|
|
patents.each do |patent|
|
|
|
|
t = []
|
|
|
|
fields_to_show.each do |fs|
|
|
|
|
case fs
|
2019-08-20 04:19:33 +00:00
|
|
|
when 'patent_title'
|
|
|
|
t << { 'value' => "<a href='#{OrbitHelper.url_to_show(patent.to_param)}' target='_blank'>" + (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(&:title).join(', ') rescue '') }
|
|
|
|
when 'author_type'
|
|
|
|
t << { 'value' => (patent.patent_author_types.collect(&:title).join(', ') rescue '') }
|
|
|
|
when 'language'
|
|
|
|
t << { 'value' => (!patent.language.nil? ? t(patent.language.to_s) : '') }
|
2019-11-16 05:43:37 +00:00
|
|
|
when 'url'
|
|
|
|
t << { 'value' => patent.url.to_s.blank? ? "" : "<a href='#{patent.url}'>#{patent.url}</a>"}
|
|
|
|
when 'authors'
|
|
|
|
t << { 'value' => get_authors_show(patent) }
|
2019-08-20 04:19:33 +00:00
|
|
|
else
|
|
|
|
t << { 'value' => patent.send(fs) }
|
2016-04-06 10:52:57 +00:00
|
|
|
end
|
|
|
|
end
|
2019-08-20 04:19:33 +00:00
|
|
|
patent_list << { 'patent_list' => t }
|
2016-04-06 10:52:57 +00:00
|
|
|
end
|
2019-08-16 01:27:54 +00:00
|
|
|
choice_show = []
|
|
|
|
headers = []
|
2016-04-06 10:52:57 +00:00
|
|
|
fields_to_show.each do |fs|
|
|
|
|
col = 2
|
2019-08-20 04:19:33 +00:00
|
|
|
col = 3 if fs == 'patent_title'
|
2019-11-16 05:43:37 +00:00
|
|
|
header = t("personal_patent.#{fs}")
|
2016-04-06 10:52:57 +00:00
|
|
|
headers << {
|
2019-08-20 04:19:33 +00:00
|
|
|
'head-title' => header,
|
|
|
|
'col' => col
|
2014-07-04 03:48:33 +00:00
|
|
|
}
|
2019-08-16 01:27:54 +00:00
|
|
|
choice_show << header
|
2014-07-04 03:48:33 +00:00
|
|
|
end
|
2019-08-16 01:27:54 +00:00
|
|
|
choice_value = fields_to_show
|
2019-08-20 04:19:33 +00:00
|
|
|
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_patent.select_class')
|
2019-08-16 01:27:54 +00:00
|
|
|
choice_show.unshift(choice_default)
|
2019-08-20 04:19:33 +00:00
|
|
|
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_patent.search_class')
|
|
|
|
search_text = t('personal_patent.word_to_search')
|
2020-04-25 16:26:16 +00:00
|
|
|
csrf_value = (0...46).map { ('a'..'z').to_a[rand(26)] }.join
|
2014-07-04 03:48:33 +00:00
|
|
|
{
|
2019-08-20 04:19:33 +00:00
|
|
|
'patents' => patent_list,
|
|
|
|
'extras' => { 'widget-title' => t('module_name.personal_patent'),
|
|
|
|
'url' => '/' + params[:locale] + params[:url],
|
|
|
|
'select_text' => select_text,
|
|
|
|
'search_text' => search_text,
|
2020-04-25 16:26:16 +00:00
|
|
|
'search_value' => params[:keywords],
|
|
|
|
'csrf_value' => csrf_value },
|
2019-08-20 04:19:33 +00:00
|
|
|
'headers' => headers,
|
|
|
|
'total_pages' => patents_total_pages,
|
|
|
|
'choice' => choice
|
2014-07-04 03:48:33 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
params = OrbitHelper.params
|
2019-08-20 04:19:33 +00:00
|
|
|
plugin = Patent.where(is_hidden: false).find_by(uid: params[:uid])
|
|
|
|
fields_to_show = %w[
|
|
|
|
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
|
2014-08-01 11:48:52 +00:00
|
|
|
]
|
2014-07-04 03:48:33 +00:00
|
|
|
|
2019-08-20 04:19:33 +00:00
|
|
|
{ 'plugin_datas' => plugin.get_plugin_data(fields_to_show) }
|
2014-07-04 03:48:33 +00:00
|
|
|
end
|
2016-04-06 10:52:57 +00:00
|
|
|
|
|
|
|
def get_fields_for_index
|
2019-08-20 04:19:33 +00:00
|
|
|
@page = Page.find(params[:page_id]) rescue nil
|
|
|
|
@fields_to_show = %w[
|
|
|
|
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
|
|
|
|
]
|
2019-11-16 05:43:37 +00:00
|
|
|
@fields_to_show = @fields_to_show.map { |fs| t("personal_patent.#{fs}") }
|
2019-08-20 04:19:33 +00:00
|
|
|
@default_fields_to_show = %w[
|
|
|
|
publish_date
|
|
|
|
patent_title
|
|
|
|
patent_no
|
|
|
|
patent_country
|
|
|
|
authors
|
|
|
|
]
|
|
|
|
render layout: false
|
2016-04-06 10:52:57 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def save_index_fields
|
2019-08-20 04:19:33 +00:00
|
|
|
page = Page.find(params[:page_id]) rescue nil
|
|
|
|
page.custom_array_field = params[:keys]
|
|
|
|
page.save
|
|
|
|
render json: { 'success' => true }.to_json
|
2016-04-06 10:52:57 +00:00
|
|
|
end
|
2019-08-20 04:19:33 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def search_all_words(target, word)
|
|
|
|
target = target.upcase
|
|
|
|
words = word.upcase.split(' ')
|
|
|
|
words.select { |value| target.include? value } == words
|
2019-08-19 08:43:30 +00:00
|
|
|
end
|
2014-07-04 03:48:33 +00:00
|
|
|
end
|