2014-07-04 06:14:37 +00:00
|
|
|
class Project
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
include OrbitModel::Status
|
|
|
|
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
|
2014-07-14 13:31:55 +00:00
|
|
|
field :note, localize: true
|
2014-07-04 06:14:37 +00:00
|
|
|
|
|
|
|
field :year
|
|
|
|
field :language
|
|
|
|
field :keywords
|
|
|
|
field :abstract
|
|
|
|
field :period_start_date, :type => Date
|
|
|
|
field :period_end_date, :type => Date
|
|
|
|
field :url
|
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
|
|
|
|
|
|
|
|
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 "project_type"
|
|
|
|
value = self.project_type.title rescue ""
|
|
|
|
when "period"
|
|
|
|
value = self.duration
|
|
|
|
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
|