personal-experience/app/models/experience.rb

150 lines
4.8 KiB
Ruby
Raw Permalink Normal View History

2014-07-02 06:25:50 +00:00
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
2014-07-14 13:28:55 +00:00
field :rss2_id
2014-07-02 06:25:50 +00:00
field :create_user_id, :type => BSON::ObjectId
field :update_user_id, :type => BSON::ObjectId
# paginates_per 10
2014-07-02 06:25:50 +00:00
before_validation :add_http
2022-07-26 11:08:29 +00:00
index({start_date: -1, :end_date => -1, _id: -1}, { unique: false, background: false })
scope :sort_date, ->{ order_by(:start_date => "desc", :end_date => "desc", :id => "desc") }
scope :sort_for_frontend, ->{ where(:is_hidden=>false).order_by(:start_date => "desc", :end_date => "desc", :id => "desc")}
2015-12-02 10:31:53 +00:00
2014-07-02 06:25:50 +00:00
def duration
if !self.start_date.nil? or !self.end_date.nil?
2015-01-09 07:43:19 +00:00
(self.start_date.strftime('%Y.%m') rescue "")+' ~ '+(self.end_date.strftime('%Y.%m') rescue I18n.t('personal_experience.up_to_today'))
else
""
end
2014-07-02 06:25:50 +00:00
end
def slug_title
2014-07-30 06:19:50 +00:00
[self.organizationt_title,self.department,self.job_title].join(' ')
2014-07-02 06:25:50 +00:00
end
2015-01-09 07:43:19 +00:00
def self.get_plugin_datas_to_member(datas)
fields_to_show = [
2015-12-02 10:31:53 +00:00
"experience_type",
2015-01-09 07:43:19 +00:00
"organizationt_title",
"department",
"job_title",
"duration"
]
2016-01-12 12:32:59 +00:00
fields_to_remove = []
pd_title = []
fields_to_show.each do |t|
2016-01-13 10:48:17 +00:00
if (self.fields[t].type.to_s == "String" || self.fields[t].type.to_s == "Object" rescue false)
2017-12-22 08:09:27 +00:00
fields_to_remove << t if (datas.where(t.to_sym.ne => nil).or(t.to_sym.ne => "").count == 0 rescue false)
2017-12-22 07:56:15 +00:00
elsif t == "duration"
fields_to_remove << t if (datas.where(:start_date.ne => nil).count == 0 rescue false)
2016-01-13 10:48:17 +00:00
else
fields_to_remove << t if (datas.where(t.to_sym.ne => nil).count == 0 rescue false)
end
2016-01-12 12:32:59 +00:00
pd_title << {
"plugin_data_title" => I18n.t("personal_experience.#{t}")
} if !fields_to_remove.include?(t)
2015-01-09 07:43:19 +00:00
end
2016-01-12 12:32:59 +00:00
fields_to_show = fields_to_show - fields_to_remove
2022-07-26 11:08:29 +00:00
plugin_datas = datas.sort_for_frontend.collect.with_index do |p,idx|
2015-01-09 07:43:19 +00:00
pd_data = []
fields_to_show.collect do |t|
if t == "organizationt_title"
2022-12-15 09:35:42 +00:00
link = OrbitHelper.url_to_plugin_show(p.to_param,'personal_experience')
url_to_plugin_show_blank = OrbitHelper.instance_variable_get(:@url_to_plugin_show_blank)
tmp_title = p.organizationt_title
2022-12-15 10:17:17 +00:00
pd_data << { "data_title" => (url_to_plugin_show_blank ? tmp_title : "<a title=\"#{tmp_title}\" href=\"#{link}\" target=\"_blank\">#{tmp_title}</a>") }
2015-01-09 07:43:19 +00:00
elsif t == "duration"
if !p.send('start_date').nil? or !p.send('end_date').nil?
2020-05-07 01:56:48 +00:00
start_date = ((p.send('start_date').blank?) ? "" : p.send('start_date').strftime('%Y.%m')) rescue ""
end_date = ((p.send('end_date').blank? || p.send('end_date').to_s == "0000-01-01" ) ? I18n.t('personal_experience.up_to_today') : p.send('end_date').strftime('%Y.%m')) rescue I18n.t('personal_experience.up_to_today')
date = start_date+' ~ '+end_date
2015-01-09 07:43:19 +00:00
else
date = ""
end
pd_data << { "data_title" => date }
2015-12-01 13:31:47 +00:00
elsif t == "experience_type"
2015-12-02 10:31:53 +00:00
pd_data << {"data_title" => (p.experience_type.title rescue "")}
2015-01-09 07:43:19 +00:00
else
pd_data << { "data_title" => p.send(t) }
end
end
{
"honor_type"=>"",
2015-12-01 13:31:47 +00:00
"pd_datas" => pd_data,
2015-12-08 11:18:42 +00:00
"type-sort" => (p.experience_type.sort_position.to_i rescue 1000),
2022-07-26 11:08:29 +00:00
"sort-index" => idx
2015-01-09 07:43:19 +00:00
}
end
2015-12-08 11:08:29 +00:00
plugin_datas = plugin_datas.sort_by{|pd| [pd["type-sort"], pd["sort-index"]]}
2015-01-09 07:43:19 +00:00
return [pd_title,plugin_datas]
end
2014-08-01 11:47:16 +00:00
def get_plugin_data(fields_to_show)
plugin_datas = []
fields_to_show.each do |field|
2014-10-03 06:14:59 +00:00
plugin_data = self.get_plugin_field_data(field) rescue nil
2014-08-01 11:47:16 +00:00
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
2020-11-27 06:46:35 +00:00
value = (value =~ /\A#{URI::regexp(['http', 'https'])}\z/) ? "<a href=\"#{value}\" target='blank'>#{value}</a>" : value
2014-08-01 11:47:16 +00:00
{
"key"=>field,
"title_class"=>"experience-#{field.gsub('_','-')}-field",
"value_class"=>"experience-#{field.gsub('_','-')}-value",
"title"=>I18n.t('personal_experience.'+field),
"value"=>value
}
end
2014-07-02 06:25:50 +00:00
protected
def add_http
unless self.url.blank? || self.url[/^http:\/\//] || self.url[/^https:\/\//]
self.url = 'http://' + self.url
end
end
end