class Patent include Mongoid::Document include Mongoid::Timestamps include OrbitModel::Status include Slug has_and_belongs_to_many :patent_types belongs_to :member_profile field :patent_title, as: :slug_title, localize: true field :authors, localize: true field :patent_country, localize: true field :year field :language field :keywords field :patent_no field :publish_date , :type => Date field :url field :note field :rss2_id 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 def get_plugin_data(fields_to_show) plugin_datas = [] fields_to_show.each do |field| plugin_data = self.get_plugin_field_data(field) rescue nil next if plugin_data.blank? or plugin_data['value'].blank? plugin_datas << plugin_data end plugin_datas end def self.get_plugin_datas_to_member(datas) fields_to_show = [ "publish_date", "patent_title", "patent_no", "patent_country", "authors" ] pd_title = fields_to_show.collect do |t| { "plugin_data_title" => I18n.t("personal_patent.#{t}") } end plugin_datas = datas.where(:is_hidden=>false).order_by(:year=>'desc').collect do |p| pd_data = [] fields_to_show.collect do |t| if t == "patent_title" pd_data << { "data_title" => "#{p.send(t)}" } else pd_data << { "data_title" => p.send(t) } end end { "pd_datas" => pd_data } end return [pd_title,plugin_datas] end def get_plugin_field_data(field) case field when "patent_category" value = self.patent_types.collect{|patent_type| patent_type.title}.join(',') rescue "" when "language" value = I18n.t(self.language) rescue "" 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 << "
  • #{title}
  • " end value = files.join("") else value = self.send(field) rescue "" end value = (value =~ /\A#{URI::regexp(['http', 'https'])}\z/) ? "#{value}" : value { "key"=>field, "title_class"=>"patent-#{field.gsub('_','-')}-field", "value_class"=>"patent-#{field.gsub('_','-')}-value", "title"=>I18n.t('personal_patent.'+field), "value"=>value } end protected def add_http unless self.url.blank? || self.url[/^http:\/\//] || self.url[/^https:\/\//] self.url = 'http://' + self.url end end end