personal-project/app/models/project.rb

167 lines
4.9 KiB
Ruby
Raw Normal View History

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
include Admin::PersonalProjectsHelper
2014-07-04 06:14:37 +00:00
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
2015-12-08 08:31:49 +00:00
field :year, type: Integer
2014-07-04 06:14:37 +00:00
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
2017-01-11 06:34:50 +00:00
# paginates_per 10
2014-07-04 06:14:37 +00:00
has_many :project_files, :autosave => true, :dependent => :destroy
accepts_nested_attributes_for :project_files, :allow_destroy => true
before_validation :add_http
2015-12-02 10:29:49 +00:00
scope :sort_for_frontend, ->{ where(:is_hidden=>false).order_by(:year=>'desc', :period_start_date=>'desc') }
2014-07-04 06:14:37 +00:00
def duration
2016-03-30 08:20:51 +00:00
if !self.send('period_start_date').nil? or !self.send('period_end_date').nil?
2017-06-28 06:27:37 +00:00
date = (self.send('period_start_date').strftime('%Y.%m') rescue "")+' ~ '+(self.send('period_end_date').strftime('%Y.%m') rescue I18n.t('personal_project.up_to_today'))
2016-03-30 08:20:51 +00:00
else
date = ""
end
2014-08-01 11:49:10 +00:00
end
2015-01-09 07:40:06 +00:00
def self.get_plugin_datas_to_member(datas)
2016-03-18 18:06:06 +00:00
page = Page.where(:module => "personal_project").first rescue nil
if !page.nil? && !page.custom_array_field.blank?
fields_to_show = page.custom_array_field
else
fields_to_show = [
"project_type",
"year",
"project_title",
"participator",
"job_title",
"period",
"unit"
]
end
2015-01-09 07:40:06 +00:00
2016-01-12 12:32:01 +00:00
fields_to_remove = []
pd_title = []
fields_to_show.each do |t|
2016-02-15 10:18:17 +00:00
if (self.fields[t].type.to_s == "String" rescue false)
2016-02-15 10:53:02 +00:00
fields_to_remove << t if (datas.where(t.to_sym.ne => nil).or(t.to_sym.ne => "").count == 0 rescue false)
2016-01-13 10:46:02 +00:00
else
2016-03-30 08:11:34 +00:00
t = "period_start_date" if t == "period"
2016-01-13 10:46:02 +00:00
fields_to_remove << t if (datas.where(t.to_sym.ne => nil).count == 0 rescue false)
2016-03-30 08:14:04 +00:00
t = "period" if t == "period_start_date"
2016-01-13 10:46:02 +00:00
end
2016-01-12 12:32:01 +00:00
pd_title << {
"plugin_data_title" => I18n.t("personal_project.#{t}")
} if !fields_to_remove.include?(t)
2015-01-09 07:40:06 +00:00
end
2016-01-12 12:32:01 +00:00
fields_to_show = fields_to_show - fields_to_remove
2015-12-09 08:28:34 +00:00
plugin_datas = datas.sort_for_frontend.collect.with_index do |p,index|
2015-01-09 07:40:06 +00:00
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"
date = p.duration
2015-01-09 07:40:06 +00:00
pd_data << { "data_title" => date }
2015-12-02 10:29:49 +00:00
elsif t == "project_type"
pd_data << {"data_title" => (p.project_type.title rescue "")}
2015-01-09 07:40:06 +00:00
else
pd_data << { "data_title" => p.send(t) }
end
end
{
2015-12-02 10:29:49 +00:00
"pd_datas" => pd_data,
2015-12-09 08:28:34 +00:00
"type-sort" => (p.project_type.sort_position.to_i rescue 1000),
"sort-index" => index
2015-01-09 07:40:06 +00:00
}
end
2015-12-09 08:28:34 +00:00
plugin_datas = plugin_datas.sort_by{|pd| [pd["type-sort"], pd["sort-index"]]}
2015-01-09 07:40:06 +00:00
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"
2016-04-06 05:55:21 +00:00
value = I18n.t(self.language) if !self.language.nil? rescue ""
2014-08-01 11:49:10 +00:00
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
2019-08-19 08:51:29 +00:00
title = ((project_file.title.blank? ? File.basename(project_file.file.path) : project_file.title) rescue "")
files << (url.nil? ? "" : "<li><a href='#{url}'' target='_blank'>#{title}</li>")
2014-08-01 11:49:10 +00:00
end
value = files.join("")
when "url"
value = self.url.to_s.blank? ? "" : "<a href='#{self.url}'>#{self.url}</a>"
when "participator"
value = get_authors_show(self)
2014-08-01 11:49:10 +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,
"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