2016-03-30 17:47:44 +08:00
|
|
|
#coding=utf-8
|
|
|
|
|
|
|
|
module Mobile
|
|
|
|
module Apis
|
|
|
|
class Newss< Grape::API
|
|
|
|
resources :newss do
|
|
|
|
|
|
|
|
desc "get special news"
|
2016-07-20 13:34:58 +08:00
|
|
|
post ':id' do
|
2016-08-09 10:55:16 +08:00
|
|
|
begin
|
|
|
|
# authenticate!
|
|
|
|
user = current_user
|
2016-07-20 13:34:58 +08:00
|
|
|
|
2016-08-09 10:55:16 +08:00
|
|
|
#0一级回复的更多 1 二级回复的更多
|
|
|
|
type = params[:type] || 0
|
|
|
|
page = params[:page] || 0
|
2016-08-09 17:01:06 +08:00
|
|
|
|
|
|
|
is_public = 1
|
|
|
|
|
2016-08-25 09:45:23 +08:00
|
|
|
if type == 0
|
|
|
|
news = News.find params[:id]
|
|
|
|
|
|
|
|
if news.project
|
|
|
|
is_public = news.project.is_public
|
|
|
|
elsif news.course
|
|
|
|
is_public = news.course.is_public
|
|
|
|
end
|
|
|
|
else
|
|
|
|
news = Comment.find params[:id]
|
2016-08-09 17:01:06 +08:00
|
|
|
end
|
|
|
|
|
2016-08-09 10:55:16 +08:00
|
|
|
present :data, news, with: Mobile::Entities::News,user: user,type: type,page: page
|
|
|
|
present :type, type
|
|
|
|
present :page, page
|
2016-08-09 17:01:06 +08:00
|
|
|
present :is_public, is_public
|
2016-08-09 10:55:16 +08:00
|
|
|
present :status, 0
|
|
|
|
rescue Exception=>e
|
|
|
|
present :status, -1
|
|
|
|
present :message, e.message
|
|
|
|
end
|
2016-03-30 17:47:44 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|