academic_advising/app/models/honor.rb

112 lines
2.8 KiB
Ruby
Raw Normal View History

2014-07-02 09:37:34 +00:00
class Honor
include Mongoid::Document
include Mongoid::Timestamps
include OrbitModel::Status
include Slug
belongs_to :honor_type
belongs_to :member_profile
2015-12-04 06:53:31 +00:00
field :year, type: Integer
field :award_name, localize: true
field :awarding_unit, localize: true
2014-07-02 09:37:34 +00:00
field :language
field :keywords
field :url
field :note
field :rss2_id
2014-07-02 09:37:34 +00:00
field :create_user_id, :type => BSON::ObjectId
field :update_user_id, :type => BSON::ObjectId
paginates_per 10
before_validation :add_http
2015-12-02 10:29:00 +00:00
scope :sort_for_frontend, ->{ where(:is_hidden=>false).order_by(:year => "desc") }
2014-07-02 09:37:34 +00:00
def slug_title
2015-04-29 10:05:37 +00:00
self.award_name+' '+self.awarding_unit rescue ""
2014-07-02 09:37:34 +00:00
end
2014-08-01 11:47:43 +00:00
def get_plugin_data(fields_to_show)
plugin_datas = []
fields_to_show.each do |field|
2014-10-03 06:13:07 +00:00
plugin_data = self.get_plugin_field_data(field) rescue nil
2014-08-01 11:47:43 +00:00
next if plugin_data.blank? or plugin_data['value'].blank?
plugin_datas << plugin_data
end
plugin_datas
end
2015-01-09 07:44:32 +00:00
def self.get_plugin_datas_to_member(datas)
fields_to_show = [
2015-12-02 10:29:00 +00:00
"honor_type",
2015-01-09 07:44:32 +00:00
"year",
"award_name",
"awarding_unit"
]
pd_title = fields_to_show.collect do |t|
{
"plugin_data_title" => I18n.t("personal_honor.#{t}")
}
end
2015-12-09 07:26:55 +00:00
plugin_datas = datas.sort_for_frontend.collect.with_index do |p,index|
2015-01-09 07:44:32 +00:00
pd_data = []
fields_to_show.collect do |t|
if t == "award_name"
2015-01-20 06:44:40 +00:00
pd_data << { "data_title" => "<a href='#{OrbitHelper.url_to_plugin_show(p.to_param,'personal_honor')}' target='_blank'>#{p.send(t)}" }
2015-12-02 10:29:00 +00:00
elsif t == "honor_type"
pd_data << {"data_title" => (p.honor_type.title rescue "")}
2015-01-09 07:44:32 +00:00
else
pd_data << { "data_title" => p.send(t) }
end
end
{
2015-12-02 10:29:00 +00:00
"pd_datas" => pd_data,
2015-12-09 07:26:55 +00:00
"type-sort" => (p.honor_type.sort_position.to_i rescue 1000),
"sort-index" => index
2015-01-09 07:44:32 +00:00
}
end
2015-12-09 07:26:55 +00:00
plugin_datas = plugin_datas.sort_by{|pd| [pd["type-sort"], pd["sort-index"]]}
2015-01-09 07:44:32 +00:00
return [pd_title,plugin_datas]
end
2014-08-01 11:47:43 +00:00
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/) ? "<a href='#{value}' target='blank'>#{value}</a>" : value
{
"key"=>field,
"title_class"=>"honor-#{field.gsub('_','-')}-field",
"value_class"=>"honor-#{field.gsub('_','-')}-value",
"title"=>I18n.t('personal_honor.'+field),
"value"=>value
}
end
2014-07-02 09:37:34 +00:00
protected
def add_http
unless self.url.blank? || self.url[/^http:\/\//] || self.url[/^https:\/\//]
self.url = 'http://' + self.url
end
end
end