class Honor include Mongoid::Document include Mongoid::Timestamps include OrbitModel::Status include MemberHelper include Admin::HonorsHelper include Slug field :year, :type => Integer, :default => DateTime.now.year field :award_date, :type => Date, :default => Date.today field :award_name, :type => String, :default => "", :localize => true, as: :slug_title field :country, :type => String, :default => "", :localize => true field :ranking, :type => String, :default => "", :localize => true field :awarding_body, :type => String, :default => "", :localize => true field :awarding_unit, :type => String, :default => "", :localize => true belongs_to :honor_type field :rss2_id belongs_to :member_profile index({:year=>-1, :award_date=>-1, :id=>-1}, { unique: false, background: false }) scope :sort_hash, ->{ order_by({:year=>-1, :award_date=>-1, :id=>-1}) } scope :sort_for_frontend, ->{ where(:is_hidden=>false).order_by({:year=>-1, :award_date=>-1, :id=>-1}) } before_save do end def parse_time(time_str) DateTime.parse("0000-01-01 " + time_str) end def self.get_plugin_datas_to_member(datas) page = Page.where(:module => "personal_honor").first rescue nil title_is_paper_format = false if !page.nil? && !page.custom_array_field.blank? fields_to_show = page.custom_array_field else fields_to_show = ["year", "award_name"] end fields_to_remove = [] pd_title = [] fields_to_show.each do |t| if t == 'authors' t_f = 'member_profile' else t_f = t end if (self.fields[t_f].type.to_s == "String" || self.fields[t_f].type.to_s == "Object" rescue false) fields_to_remove << t if (datas.where(t.to_sym.ne => nil, t.to_sym.ne => "").count == 0 rescue false) elsif (self.relations.include?(t.pluralize) rescue false) fields_to_remove << t if (datas.where(t.pluralize.to_sym.ne=>[]).count == 0 rescue false) elsif [].include?(t) fields_to_remove << t if (datas.select{|d| d.send(t) != " ~ " }.count == 0 rescue false) else fields_to_remove << t if (datas.where(t.to_sym.ne => nil).count == 0 rescue false) end pd_title << { "plugin_data_title" => I18n.t("personal_honor.#{t}") } if !fields_to_remove.include?(t) end fields_to_show = fields_to_show - fields_to_remove plugin_datas = datas.sort_for_frontend.collect.with_index do |p,idx| pd_data = [] fields_to_show.collect do |t| pd_data << { "data_title" => p.display_field(t, false, title_is_paper_format) } end { "pd_datas" => pd_data, "type-sort" => (p.honor_type.sort_position.to_i rescue 1000), "sort-index" => idx } end plugin_datas = plugin_datas.sort_by{|pd| [pd["type-sort"], pd["sort-index"]]} return [pd_title,plugin_datas] end 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 get_plugin_field_data(field) honor = self value = honor.send(field) rescue "" if field.include?(".") value = honor field.split(".").each{|f| value = value.send(f) rescue nil } end file_fields = [] link_fields = [] member_fields = [] if file_fields.include?(field) files = honor.send(field.pluralize) value = files.map do |file| url = file.file.url title = (file.title.blank? ? File.basename(file.file.path) : file.title) "