academic_advising/app/models/advising.rb

155 lines
5.1 KiB
Ruby
Raw Normal View History

2021-02-07 14:56:22 +00:00
class Advising
2014-07-02 09:37:34 +00:00
include Mongoid::Document
include Mongoid::Timestamps
include OrbitModel::Status
include Slug
2021-03-04 11:09:06 +00:00
belongs_to :advising_type
2014-07-02 09:37:34 +00:00
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
2016-04-05 18:09:04 +00:00
field :award_date, type: DateTime
2014-07-02 09:37:34 +00:00
field :language
field :keywords
field :url
field :note
field :rss2_id
2021-02-07 14:56:22 +00:00
field :requirement, localize: true
2014-07-02 09:37:34 +00:00
field :create_user_id, :type => BSON::ObjectId
field :update_user_id, :type => BSON::ObjectId
2021-02-07 14:56:22 +00:00
field :advising_student_ids, :type => Array, default: []
2017-01-11 06:32:40 +00:00
# paginates_per 10
2014-07-02 09:37:34 +00:00
before_validation :add_http
2016-04-11 09:56:13 +00:00
scope :sort_for_frontend, ->{ where(:is_hidden=>false).order_by(:year => "desc",:award_date => "desc") }
def display_year
(I18n.locale.to_s == "zh_tw" ? (self.year > 1911 ? (self.year - 1911) : self.year ) : self.year)
end
def display_advising_type
(self.advising_type ? self.advising_type.title : "")
end
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
2021-02-07 14:56:22 +00:00
def advising_students
MemberProfile.where(:id.in => self.advising_student_ids)
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
2021-02-07 14:56:22 +00:00
def advising_students_front_data
self.advising_students.collect{|member| "<a href='#{OrbitHelper.url_to_plugin_show(member.to_param,'member')}' title='#{member.name}'>#{member.name}</a>"}.join('、')
end
2015-01-09 07:44:32 +00:00
def self.get_plugin_datas_to_member(datas)
2021-02-07 14:56:22 +00:00
page = Page.where(:module => "academic_advising").first rescue nil
2016-03-21 11:02:08 +00:00
if !page.nil? && !page.custom_array_field.blank?
fields_to_show = page.custom_array_field
else
fields_to_show = [
"year",
"academic_advising_type",
2016-03-21 11:02:08 +00:00
"award_name",
2021-02-07 14:56:22 +00:00
"awarding_unit",
"advising_students"
2016-03-21 11:02:08 +00:00
]
end
2015-01-09 07:44:32 +00:00
2016-01-12 12:32:40 +00:00
fields_to_remove = []
pd_title = []
fields_to_show.each do |t|
2016-01-13 10:04:11 +00:00
if (self.fields[t].type.to_s == "String" || self.fields[t].type.to_s == "Object" rescue false)
2016-01-13 09:54:54 +00:00
fields_to_remove << t if (datas.where(t.to_sym.ne => nil, t.to_sym.ne => "").count == 0 rescue false)
2021-02-07 14:56:22 +00:00
elsif t=='advising_students'
fields_to_remove << t if (datas.where(:advising_student_ids.ne => []).count == 0 rescue false)
elsif t == "academic_advising_type"
fields_to_remove << t if (datas.where(:advising_type.ne => nil).count == 0 rescue false)
2016-01-13 09:54:54 +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:40 +00:00
pd_title << {
2021-02-07 14:56:22 +00:00
"plugin_data_title" => I18n.t("academic_advising.#{t}")
2016-01-12 12:32:40 +00:00
} if !fields_to_remove.include?(t)
2015-01-09 07:44:32 +00:00
end
puts fields_to_remove
2016-01-12 12:32:40 +00:00
fields_to_show = fields_to_show - fields_to_remove
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"
2021-02-07 14:56:22 +00:00
pd_data << { "data_title" => "<a href='#{OrbitHelper.url_to_plugin_show(p.to_param,'academic_advising')}' title='#{p.send(t)}' target='_blank'>#{p.send(t)}</a>" }
elsif t == "academic_advising_type"
pd_data << {"data_title" => p.display_advising_type}
2016-04-06 05:27:58 +00:00
elsif t == "award_date"
2021-02-07 14:56:22 +00:00
pd_data << {"data_title" => (p.send(t).strftime("%Y/%m/%d") rescue "")}
elsif t == "advising_students"
pd_data << {"data_title" => p.advising_students_front_data}
elsif t == "year"
pd_data << { "data_title" => p.display_year }
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,
2021-02-07 14:56:22 +00:00
"type-sort" => (p.academic_advising_type.sort_position.to_i rescue 1000),
2015-12-09 07:26:55 +00:00
"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
2021-02-07 14:56:22 +00:00
when "academic_advisingee"
2019-12-31 08:11:19 +00:00
path = OrbitHelper.url_to_plugin_show(self.member_profile.to_param, 'member') rescue '#'
value = "<a href='#{path}'>" + self.member_profile.name + "</a>"
2014-08-01 11:47:43 +00:00
when "language"
value = I18n.t(self.language) rescue ""
2021-02-07 14:56:22 +00:00
when "academic_advising_type"
value = self.display_advising_type
2016-04-06 06:52:31 +00:00
when "award_date"
value = self.award_date.strftime("%Y/%m/%d") rescue ""
2021-02-07 14:56:22 +00:00
when "advising_students"
value = self.advising_students_front_data
when "year"
value = self.display_year
2014-08-01 11:47:43 +00:00
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,
2021-02-07 14:56:22 +00:00
"title_class"=>"academic_advising-#{field.gsub('_','-')}-field",
"value_class"=>"academic_advising-#{field.gsub('_','-')}-value",
"title"=>I18n.t('academic_advising.'+field),
2014-08-01 11:47:43 +00:00
"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