class Honor include Mongoid::Document include Mongoid::Timestamps include OrbitModel::Status include Slug belongs_to :honor_type belongs_to :member_profile field :year field :award_name, localize: true field :awarding_unit, localize: true field :language field :keywords field :url field :note field :rss2_id field :create_user_id, :type => BSON::ObjectId field :update_user_id, :type => BSON::ObjectId paginates_per 10 before_validation :add_http def slug_title self.award_name+' '+self.awarding_unit rescue "" 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 self.get_plugin_datas_to_member(datas) fields_to_show = [ "year", "award_name", "awarding_unit" ] pd_title = fields_to_show.collect do |t| { "plugin_data_title" => I18n.t("personal_honor.#{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 == "award_name" 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 "honoree" value = self.member_profile.name when "language" value = I18n.t(self.language) rescue "" when "honor_type" value = self.honor_type.title rescue "" else value = self.send(field) rescue "" end value = (value =~ /\A#{URI::regexp(['http', 'https'])}\z/) ? "#{value}" : value { "key"=>field, "title_class"=>"honor-#{field.gsub('_','-')}-field", "value_class"=>"honor-#{field.gsub('_','-')}-value", "title"=>I18n.t('personal_honor.'+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