socialforge/app/api/mobile/entities/blog_comment.rb

57 lines
1.7 KiB
Ruby
Raw Normal View History

2016-03-30 15:51:27 +08:00
module Mobile
module Entities
class BlogComment < Grape::Entity
include ApplicationHelper
include ApiHelper
def self.blog_comment_expose(f)
expose f do |u,opt|
if u.is_a?(Hash) && u.key?(f)
u[f]
elsif u.is_a?(::BlogComment)
if u.respond_to?(f)
if f == :created_at
format_time( u.send(f))
else
u.send(f)
end
else
2016-03-30 17:49:05 +08:00
case f
when :blog_praise_count
get_activity_praise_num(u)
when :lasted_comment
time_from_now(u.created_at)
end
2016-03-30 15:51:27 +08:00
end
end
end
end
expose :user, using: Mobile::Entities::User do |c, opt|
if c.is_a?(::BlogComment)
c.author
end
end
blog_comment_expose :blog_id
blog_comment_expose :title
blog_comment_expose :content
blog_comment_expose :comments_count
blog_comment_expose :created_at
2016-03-30 17:49:05 +08:00
blog_comment_expose :lasted_comment
2016-03-30 15:51:27 +08:00
blog_comment_expose :id
2016-03-30 17:49:05 +08:00
blog_comment_expose :blog_praise_count
2016-03-30 15:51:27 +08:00
expose :blog_comment_children, using:Mobile::Entities::BlogComment do |c,opt|
if c.is_a? (::BlogComment)
c.children
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
2016-03-30 15:51:27 +08:00
end
end
end