2015-01-22 17:21:15 +08:00
|
|
|
module Mobile
|
|
|
|
module Entities
|
2015-01-23 11:42:35 +08:00
|
|
|
#普通留言
|
2015-01-22 17:21:15 +08:00
|
|
|
class Jours < Grape::Entity
|
|
|
|
include Redmine::I18n
|
|
|
|
def self.jours_expose(field)
|
|
|
|
expose field do |f,opt|
|
|
|
|
if f.is_a?(Hash) && f.key?(field)
|
|
|
|
f[field]
|
|
|
|
elsif f.is_a?(::JournalsForMessage) && f.respond_to?(field)
|
|
|
|
if field == :created_on
|
|
|
|
format_time(f.send(field))
|
|
|
|
else
|
|
|
|
f.send(field)
|
|
|
|
end
|
2015-05-28 17:51:50 +08:00
|
|
|
else
|
2016-03-30 17:49:05 +08:00
|
|
|
case field
|
|
|
|
when :lasted_comment
|
|
|
|
time_from_now f.created_on
|
2016-04-01 18:23:12 +08:00
|
|
|
when :reply_count
|
|
|
|
f.children.count
|
2016-04-07 16:40:21 +08:00
|
|
|
when :praise_count
|
2016-04-06 11:40:05 +08:00
|
|
|
get_activity_praise_num(f)
|
2016-04-07 16:40:21 +08:00
|
|
|
when :act_type
|
|
|
|
'JournalsForMessage'
|
|
|
|
when :act_id
|
|
|
|
f.id
|
2015-05-28 17:51:50 +08:00
|
|
|
end
|
2015-01-22 17:21:15 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-04-07 16:40:21 +08:00
|
|
|
|
|
|
|
jours_expose :act_type
|
|
|
|
jours_expose :act_id
|
2015-01-23 11:42:35 +08:00
|
|
|
jours_expose :id
|
2015-02-05 17:32:19 +08:00
|
|
|
jours_expose :jour_type
|
|
|
|
jours_expose :jour_id
|
2015-01-22 17:21:15 +08:00
|
|
|
expose :user,using: Mobile::Entities::User do |f, opt|
|
|
|
|
f.user
|
|
|
|
end
|
|
|
|
jours_expose :created_on
|
2016-03-30 17:49:05 +08:00
|
|
|
jours_expose :lasted_comment
|
2015-01-22 17:21:15 +08:00
|
|
|
jours_expose :notes
|
2015-01-23 11:42:35 +08:00
|
|
|
jours_expose :m_reply_id
|
2015-02-05 17:32:19 +08:00
|
|
|
jours_expose :m_parent_id
|
2016-04-01 18:23:12 +08:00
|
|
|
jours_expose :reply_count
|
2016-04-07 16:40:21 +08:00
|
|
|
jours_expose :praise_count
|
2015-05-28 17:51:50 +08:00
|
|
|
expose :course,using:Mobile::Entities::Course do |f,opt|
|
|
|
|
if f.is_a?(::JournalsForMessage) && f[:jour_type] == "Course"
|
|
|
|
f.course
|
|
|
|
end
|
|
|
|
end
|
2015-01-23 11:42:35 +08:00
|
|
|
expose :reply_user,using: Mobile::Entities::User do |f, opt|
|
|
|
|
f.at_user
|
|
|
|
end
|
|
|
|
expose :child_reply,using: Mobile::Entities::Jours do |f, opt|
|
|
|
|
if f.is_a?(::JournalsForMessage)
|
2016-04-07 15:09:17 +08:00
|
|
|
f.children.reverse
|
2015-01-23 11:42:35 +08:00
|
|
|
end
|
|
|
|
end
|
2016-04-07 11:16:38 +08:00
|
|
|
expose :has_praise , if: lambda { |instance, options| options[:user] } do |instance, options|
|
|
|
|
has_praise = false
|
|
|
|
current_user = options[:user]
|
|
|
|
obj = PraiseTread.where("praise_tread_object_id=? and praise_tread_object_type=? and user_id=?",instance.id,instance.class.to_s,current_user.id)
|
|
|
|
has_praise = obj.empty? ? false : true
|
|
|
|
has_praise
|
|
|
|
end
|
2015-01-22 17:21:15 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|