2014-07-04 03:48:33 +00:00
|
|
|
class Patent
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
include OrbitModel::Status
|
|
|
|
include Slug
|
|
|
|
|
2014-07-14 13:30:11 +00:00
|
|
|
has_and_belongs_to_many :patent_types
|
2016-04-06 09:58:50 +00:00
|
|
|
has_and_belongs_to_many :patent_author_types
|
2014-07-04 03:48:33 +00:00
|
|
|
belongs_to :member_profile
|
|
|
|
|
|
|
|
field :patent_title, as: :slug_title, localize: true
|
|
|
|
field :authors, localize: true
|
2014-07-04 07:08:46 +00:00
|
|
|
field :patent_country, localize: true
|
2016-04-06 09:58:50 +00:00
|
|
|
field :patent_organization, localize: true
|
2014-07-04 03:48:33 +00:00
|
|
|
|
|
|
|
field :year
|
|
|
|
field :language
|
|
|
|
field :keywords
|
|
|
|
field :patent_no
|
2016-04-06 09:58:50 +00:00
|
|
|
field :progress_status
|
|
|
|
field :application_date, type: DateTime
|
|
|
|
field :end_date, type: DateTime
|
2014-07-04 03:48:33 +00:00
|
|
|
field :publish_date , :type => Date
|
|
|
|
field :url
|
|
|
|
field :note
|
2014-07-14 13:30:11 +00:00
|
|
|
field :rss2_id
|
2014-07-04 03:48:33 +00:00
|
|
|
field :create_user_id, :type => BSON::ObjectId
|
|
|
|
field :update_user_id, :type => BSON::ObjectId
|
|
|
|
|
|
|
|
paginates_per 10
|
|
|
|
|
|
|
|
has_many :patent_files, :autosave => true, :dependent => :destroy
|
|
|
|
accepts_nested_attributes_for :patent_files, :allow_destroy => true
|
|
|
|
|
|
|
|
before_validation :add_http
|
|
|
|
|
2016-04-13 07:30:32 +00:00
|
|
|
scope :sort_for_frontend, ->{ where(:is_hidden=>false).order_by(:year => "desc", :publish_date => "desc", :application_date => "desc") }
|
2015-12-02 10:35:15 +00:00
|
|
|
|
2014-08-01 11:48:52 +00:00
|
|
|
def get_plugin_data(fields_to_show)
|
|
|
|
plugin_datas = []
|
|
|
|
fields_to_show.each do |field|
|
2014-10-03 06:16:14 +00:00
|
|
|
plugin_data = self.get_plugin_field_data(field) rescue nil
|
2014-08-01 11:48:52 +00:00
|
|
|
next if plugin_data.blank? or plugin_data['value'].blank?
|
|
|
|
plugin_datas << plugin_data
|
|
|
|
end
|
|
|
|
plugin_datas
|
|
|
|
end
|
|
|
|
|
2015-01-09 07:41:08 +00:00
|
|
|
def self.get_plugin_datas_to_member(datas)
|
2016-04-06 10:52:57 +00:00
|
|
|
page = Page.where(:module => "personal_patent").first rescue nil
|
|
|
|
|
|
|
|
if !page.nil? && !page.custom_array_field.blank?
|
|
|
|
fields_to_show = page.custom_array_field
|
|
|
|
else
|
|
|
|
fields_to_show = [
|
|
|
|
"publish_date",
|
|
|
|
"patent_title",
|
|
|
|
"patent_no",
|
|
|
|
"patent_country",
|
|
|
|
"authors"
|
|
|
|
]
|
|
|
|
end
|
2015-01-09 07:41:08 +00:00
|
|
|
|
2016-02-15 10:24:01 +00:00
|
|
|
fields_to_remove = []
|
|
|
|
|
|
|
|
pd_title = []
|
|
|
|
|
|
|
|
fields_to_show.each do |t|
|
|
|
|
if (self.fields[t].type.to_s == "String" rescue false)
|
2016-02-15 10:53:30 +00:00
|
|
|
fields_to_remove << t if (datas.where(t.to_sym.ne => nil).or(t.to_sym.ne => "").count == 0 rescue false)
|
2016-02-15 10:24:01 +00:00
|
|
|
else
|
2016-04-06 10:52:57 +00:00
|
|
|
t = "patent_types" if t == "patent_category"
|
|
|
|
t = "patent_author_types" if t == "author_type"
|
2016-02-15 10:24:01 +00:00
|
|
|
fields_to_remove << t if (datas.where(t.to_sym.ne => nil).count == 0 rescue false)
|
2016-04-06 10:52:57 +00:00
|
|
|
t = "patent_category" if t == "patent_types"
|
|
|
|
t = "author_type" if t == "patent_author_types"
|
2016-02-15 10:24:01 +00:00
|
|
|
end
|
|
|
|
pd_title << {
|
2016-02-15 10:25:49 +00:00
|
|
|
"plugin_data_title" => I18n.t("personal_patent.#{t}")
|
2016-02-15 10:24:01 +00:00
|
|
|
} if !fields_to_remove.include?(t)
|
2015-01-09 07:41:08 +00:00
|
|
|
end
|
|
|
|
|
2016-02-15 10:24:01 +00:00
|
|
|
fields_to_show = fields_to_show - fields_to_remove
|
|
|
|
|
2015-12-02 10:35:15 +00:00
|
|
|
plugin_datas = datas.sort_for_frontend.collect do |p|
|
2015-01-09 07:41:08 +00:00
|
|
|
|
|
|
|
pd_data = []
|
|
|
|
fields_to_show.collect do |t|
|
2016-04-06 10:52:57 +00:00
|
|
|
case t
|
2016-04-06 11:06:30 +00:00
|
|
|
when "patent_title"
|
2016-04-13 07:30:32 +00:00
|
|
|
pd_data << {"data_title" => "<a href='#{OrbitHelper.url_to_plugin_show(p.to_param,'personal_patent')}' taget='_blank'>" + (p.send(t) rescue "") + "</a>"}
|
2016-04-06 10:52:57 +00:00
|
|
|
when "publish_date"
|
|
|
|
pd_data << {"data_title" => (p.publish_date.strftime("%Y/%m/%d") rescue "")}
|
|
|
|
when "application_date"
|
|
|
|
pd_data << {"data_title" => (p.application_date.strftime("%Y/%m/%d") rescue "")}
|
|
|
|
when "end_date"
|
|
|
|
pd_data << {"data_title" => (p.end_date.strftime("%Y/%m/%d") rescue "")}
|
|
|
|
when "patent_category"
|
|
|
|
pd_data << {"data_title" => (p.patent_types.collect{|pt| pt.title}.join(", ") rescue "")}
|
|
|
|
when "author_type"
|
|
|
|
pd_data << {"data_title" => (p.patent_author_types.collect{|pt| pt.title}.join(", ") rescue "")}
|
|
|
|
else
|
|
|
|
pd_data << {"data_title" => p.send(t)}
|
2015-01-09 07:41:08 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
{
|
|
|
|
"pd_datas" => pd_data
|
|
|
|
}
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
return [pd_title,plugin_datas]
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2014-08-01 11:48:52 +00:00
|
|
|
def get_plugin_field_data(field)
|
|
|
|
case field
|
2014-08-11 12:08:29 +00:00
|
|
|
when "patent_category"
|
|
|
|
value = self.patent_types.collect{|patent_type| patent_type.title}.join(',') rescue ""
|
2015-01-09 07:41:08 +00:00
|
|
|
when "language"
|
2016-04-06 09:58:50 +00:00
|
|
|
value = I18n.t(self.language) if !self.language.nil? rescue ""
|
2016-04-06 10:52:57 +00:00
|
|
|
when "publish_date"
|
|
|
|
value = self.publish_date.strftime("%Y/%m/%d") rescue ""
|
|
|
|
when "application_date"
|
|
|
|
value = self.application_date.strftime("%Y/%m/%d") rescue ""
|
|
|
|
when "end_date"
|
|
|
|
value = self.end_date.strftime("%Y/%m/%d") rescue ""
|
|
|
|
when "author_type"
|
|
|
|
value = self.patent_author_types.collect{|pt| pt.title}.join(", ") rescue ""
|
2014-08-01 11:48:52 +00:00
|
|
|
when "file"
|
|
|
|
files = []
|
|
|
|
self.patent_files.each do |patent_file|
|
|
|
|
url = patent_file.file.url
|
|
|
|
title = (patent_file.title.blank? ? File.basename(patent_file.file.path) : patent_file.title)
|
|
|
|
files << "<li><a href='#{url}'' target='_blank'>#{title}</li>"
|
|
|
|
end
|
|
|
|
value = files.join("")
|
|
|
|
else
|
|
|
|
value = self.send(field) rescue ""
|
|
|
|
end
|
|
|
|
|
2016-04-08 06:35:58 +00:00
|
|
|
value = (value =~ /\A#{URI::regexp(['http', 'https'])}\z/) ? "<a href='#{value}' target='_blank'>#{value}</a>" : value
|
2014-08-01 11:48:52 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
"key"=>field,
|
|
|
|
"title_class"=>"patent-#{field.gsub('_','-')}-field",
|
|
|
|
"value_class"=>"patent-#{field.gsub('_','-')}-value",
|
|
|
|
"title"=>I18n.t('personal_patent.'+field),
|
|
|
|
"value"=>value
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2014-07-04 03:48:33 +00:00
|
|
|
protected
|
|
|
|
|
|
|
|
def add_http
|
|
|
|
unless self.url.blank? || self.url[/^http:\/\//] || self.url[/^https:\/\//]
|
|
|
|
self.url = 'http://' + self.url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|