class Experience include Mongoid::Document include Mongoid::Timestamps include OrbitModel::Status include Slug field :organizationt_title, localize: true field :department, localize: true field :job_title, localize: true belongs_to :experience_type belongs_to :member_profile field :language field :start_date , :type => Date field :end_date , :type => Date 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 duration if !self.start_date.nil? or !self.end_date.nil? self.start_date.strftime('%Y.%m')+' ~ '+self.end_date.strftime('%Y.%m') else "" end end def slug_title [self.organizationt_title,self.department,self.job_title].join(' ') end def get_plugin_data(fields_to_show) plugin_datas = [] fields_to_show.each do |field| plugin_data = self.get_plugin_field_data(field) next if plugin_data.blank? or plugin_data['value'].blank? plugin_datas << plugin_data end plugin_datas end def get_plugin_field_data(field) case field when "language" value = I18n.t(self.language) rescue "" when "experience_type" value = self.experience_type.title rescue "" else value = self.send(field) rescue "" end value = (value =~ /\A#{URI::regexp(['http', 'https'])}\z/) ? "#{value}" : value { "key"=>field, "title_class"=>"experience-#{field.gsub('_','-')}-field", "value_class"=>"experience-#{field.gsub('_','-')}-value", "title"=>I18n.t('personal_experience.'+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