2014-07-04 06:14:37 +00:00
|
|
|
class Project
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
include OrbitModel::Status
|
2015-01-09 07:40:06 +00:00
|
|
|
include MemberHelper
|
2014-07-04 06:14:37 +00:00
|
|
|
include Slug
|
|
|
|
|
|
|
|
belongs_to :project_type
|
|
|
|
belongs_to :member_profile
|
|
|
|
|
|
|
|
field :project_title, as: :slug_title, localize: true
|
|
|
|
field :job_title, localize: true
|
|
|
|
field :participator, localize: true
|
|
|
|
field :unit, localize: true
|
|
|
|
|
|
|
|
field :year
|
|
|
|
field :language
|
|
|
|
field :keywords
|
|
|
|
field :abstract
|
|
|
|
field :period_start_date, :type => Date
|
|
|
|
field :period_end_date, :type => Date
|
|
|
|
field :url
|
2015-01-09 07:40:06 +00:00
|
|
|
field :note
|
2014-07-14 13:31:55 +00:00
|
|
|
|
|
|
|
field :rss2_id
|
2014-07-04 06:14:37 +00:00
|
|
|
field :create_user_id, :type => BSON::ObjectId
|
|
|
|
field :update_user_id, :type => BSON::ObjectId
|
|
|
|
|
|
|
|
paginates_per 10
|
|
|
|
|
|
|
|
has_many :project_files, :autosave => true, :dependent => :destroy
|
|
|
|
|
|
|
|
accepts_nested_attributes_for :project_files, :allow_destroy => true
|
|
|
|
|
|
|
|
before_validation :add_http
|
|
|
|
|
|
|
|
def duration
|
2014-08-01 11:49:10 +00:00
|
|
|
"#{self.period_start_date.strftime("%Y.%m") rescue ""} ~ #{self.period_end_date.strftime("%Y.%m") rescue ""}"
|
|
|
|
end
|
|
|
|
|
2015-01-09 07:40:06 +00:00
|
|
|
def self.get_plugin_datas_to_member(datas)
|
|
|
|
|
|
|
|
fields_to_show = [
|
|
|
|
"year",
|
|
|
|
"project_title",
|
|
|
|
"participator",
|
|
|
|
"job_title",
|
|
|
|
"period",
|
|
|
|
"unit"
|
|
|
|
]
|
|
|
|
|
|
|
|
pd_title = fields_to_show.collect do |t|
|
|
|
|
{
|
|
|
|
"plugin_data_title" => I18n.t("personal_project.#{t}")
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
plugin_datas = datas.where(:is_hidden=>false).order_by(:period_start_date=>'desc',:year=>'desc').collect do |p|
|
|
|
|
|
|
|
|
pd_data = []
|
|
|
|
fields_to_show.collect do |t|
|
|
|
|
if t == "project_title"
|
2015-01-20 06:47:03 +00:00
|
|
|
pd_data << { "data_title" => "<a href='#{OrbitHelper.url_to_plugin_show(p.to_param,'personal_project')}' target='_blank'>#{p.send(t)}" }
|
2015-01-09 07:40:06 +00:00
|
|
|
elsif t == "period"
|
|
|
|
|
|
|
|
if !p.send('period_start_date').nil? or !p.send('period_end_date').nil?
|
|
|
|
date = (p.send('period_start_date').strftime('%Y.%m') rescue "")+' ~ '+(p.send('period_end_date').strftime('%Y.%m') rescue I18n.t('personal_project.up_to_today'))
|
|
|
|
else
|
|
|
|
date = ""
|
|
|
|
end
|
|
|
|
|
|
|
|
pd_data << { "data_title" => date }
|
|
|
|
else
|
|
|
|
pd_data << { "data_title" => p.send(t) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
{
|
|
|
|
"pd_datas" => pd_data
|
|
|
|
}
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
return [pd_title,plugin_datas]
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2014-08-01 11:49:10 +00:00
|
|
|
def get_plugin_data(fields_to_show)
|
|
|
|
plugin_datas = []
|
|
|
|
fields_to_show.each do |field|
|
2014-10-03 06:13:52 +00:00
|
|
|
plugin_data = self.get_plugin_field_data(field) rescue nil
|
2014-08-01 11:49:10 +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 "project_type"
|
|
|
|
value = self.project_type.title rescue ""
|
|
|
|
when "period"
|
|
|
|
value = self.duration
|
2015-01-09 07:40:06 +00:00
|
|
|
when "abstract"
|
|
|
|
value = nl2br(self.abstract)
|
2014-08-01 11:49:10 +00:00
|
|
|
when "file"
|
|
|
|
files = []
|
|
|
|
self.project_files.each do |project_file|
|
|
|
|
url = project_file.file.url
|
|
|
|
title = (project_file.title.blank? ? File.basename(project_file.file.path) : project_file.title)
|
|
|
|
files << "<li><a href='#{url}'' target='_blank'>#{title}</li>"
|
|
|
|
end
|
|
|
|
value = files.join("")
|
|
|
|
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"=>"project-#{field.gsub('_','-')}-field",
|
|
|
|
"value_class"=>"project-#{field.gsub('_','-')}-value",
|
|
|
|
"title"=>I18n.t('personal_project.'+field),
|
|
|
|
"value"=>value
|
|
|
|
}
|
2014-07-04 06:14:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def add_http
|
|
|
|
unless self.url.blank? || self.url[/^http:\/\//] || self.url[/^https:\/\//]
|
|
|
|
self.url = 'http://' + self.url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|