2014-12-10 18:26:38 +08:00
|
|
|
|
#coding=utf-8
|
2014-11-27 19:43:04 +08:00
|
|
|
|
module Mobile
|
2014-12-09 15:16:47 +08:00
|
|
|
|
module Apis
|
2014-12-09 16:36:43 +08:00
|
|
|
|
class Courses < Grape::API
|
|
|
|
|
resource :courses do
|
2014-12-10 16:23:56 +08:00
|
|
|
|
desc "获取所有课程"
|
2014-12-09 16:36:43 +08:00
|
|
|
|
params do
|
2014-12-10 16:23:56 +08:00
|
|
|
|
optional :school_id, type: Integer, desc: '传入学校id,返回该学校课程列表'
|
|
|
|
|
requires :per_page_count, type: Integer, desc: '每页总数'
|
|
|
|
|
requires :page, type: Integer, desc: '当前页码'
|
2015-02-10 17:03:59 +08:00
|
|
|
|
optional :token, type: String
|
2014-12-08 16:51:21 +08:00
|
|
|
|
end
|
2014-11-27 19:43:04 +08:00
|
|
|
|
get do
|
2014-12-09 16:36:43 +08:00
|
|
|
|
cs = CoursesService.new
|
2015-02-10 17:03:59 +08:00
|
|
|
|
courses = cs.course_list(params,current_user.nil? ? User.find(2):current_user)
|
2014-12-09 16:36:43 +08:00
|
|
|
|
present :data, courses, with: Mobile::Entities::Course
|
|
|
|
|
present :status, 0
|
2014-11-27 19:43:04 +08:00
|
|
|
|
end
|
|
|
|
|
|
2015-01-20 15:17:02 +08:00
|
|
|
|
desc "新建课程"
|
2015-01-04 11:53:16 +08:00
|
|
|
|
#current_user当前用户对象(不是id)
|
|
|
|
|
# params[:course][:name]:课程名称
|
|
|
|
|
#params[:course][:password]:密码
|
|
|
|
|
#params[:course][:description]:描述
|
|
|
|
|
#params[:course][:is_public]:是否公开1公开,0私有
|
|
|
|
|
#params[:course][:open_student]:是否公开学生列表1公开,0不公开,不公开时非课程成员无法看到学生列表
|
|
|
|
|
#params[:course][:course_type]:暂时默认给1值。
|
|
|
|
|
#params[:term]:学期(秋季学期或春季学期)
|
|
|
|
|
#params[:time]: 年份(例:2014)
|
|
|
|
|
#params[:setup_time]:暂不传(貌似已经没用了)
|
|
|
|
|
#params[:endup_time]: 暂不传(貌似已经没用了)
|
|
|
|
|
#params[:class_period]:学时总数
|
2014-12-13 21:52:26 +08:00
|
|
|
|
params do
|
2015-01-04 11:53:16 +08:00
|
|
|
|
requires :token, type: String
|
|
|
|
|
requires :name, type: String, desc: '课程名称'
|
|
|
|
|
requires :password, type: String, desc: '密码'
|
|
|
|
|
requires :description, type: String, desc: '描述'
|
|
|
|
|
requires :is_public, type: Integer, desc: '是否公开 1公开 0私有'
|
|
|
|
|
requires :open_student, type: Integer, desc: '是否公开学生列表1公开,0不公开,不公开时非课程成员无法看到学生列表'
|
|
|
|
|
requires :course_type, type:Integer, desc: '暂时传1'
|
2015-01-05 10:15:14 +08:00
|
|
|
|
requires :term, type: String, desc: '学期(秋季学期或春季学期)'
|
2015-01-04 11:53:16 +08:00
|
|
|
|
requires :time, type: String, desc: '年份'
|
|
|
|
|
requires :class_period, type: String, desc: '学时总数'
|
2014-12-13 21:52:26 +08:00
|
|
|
|
end
|
|
|
|
|
post do
|
2015-01-04 11:53:16 +08:00
|
|
|
|
authenticate!
|
|
|
|
|
cs = CoursesService.new
|
|
|
|
|
cs_params = {
|
|
|
|
|
course: params.reject{|k,v| [:term,:time,:class_period].include?(k)},
|
|
|
|
|
term: params[:term],
|
|
|
|
|
time: params[:time],
|
|
|
|
|
class_period: params[:class_period]
|
|
|
|
|
}
|
|
|
|
|
courses = cs.create_course(cs_params, current_user)
|
|
|
|
|
present :data, courses, with: Mobile::Entities::Course
|
|
|
|
|
present :status, 0
|
2014-12-13 21:52:26 +08:00
|
|
|
|
end
|
|
|
|
|
|
2015-01-20 15:17:02 +08:00
|
|
|
|
desc "编辑课程"
|
2014-12-13 21:52:26 +08:00
|
|
|
|
params do
|
2015-01-04 11:53:16 +08:00
|
|
|
|
requires :token, type: String
|
|
|
|
|
requires :course_id, type: Integer, desc: '课程id'
|
|
|
|
|
requires :name, type: String, desc: '课程名称'
|
|
|
|
|
requires :password, type: String, desc: '密码'
|
|
|
|
|
requires :description, type: String, desc: '描述'
|
|
|
|
|
requires :is_public, type: Integer, desc: '是否公开 1公开 0私有'
|
|
|
|
|
requires :open_student, type: Integer, desc: '是否公开学生列表1公开,0不公开,不公开时非课程成员无法看到学生列表'
|
|
|
|
|
requires :course_type, type:Integer, desc: '暂时传1'
|
2015-01-05 17:47:04 +08:00
|
|
|
|
requires :term, type: String, desc: '学期(秋季学期或春季学期)'
|
2015-01-04 11:53:16 +08:00
|
|
|
|
requires :time, type: String, desc: '年份'
|
|
|
|
|
requires :class_period, type: String, desc: '学时总数'
|
|
|
|
|
end
|
2015-01-05 17:45:47 +08:00
|
|
|
|
put do
|
2015-01-04 11:53:16 +08:00
|
|
|
|
authenticate!
|
2015-01-05 17:47:04 +08:00
|
|
|
|
cs = CoursesService.new
|
2015-01-04 11:53:16 +08:00
|
|
|
|
cs_params = {
|
|
|
|
|
course: params.reject{|k,v| [:term,:time,:class_period].include?(k)},
|
|
|
|
|
term: params[:term],
|
|
|
|
|
time: params[:time],
|
|
|
|
|
class_period: params[:class_period]
|
|
|
|
|
}
|
|
|
|
|
course = ::Course.find(params[:course_id])
|
2015-04-09 16:05:51 +08:00
|
|
|
|
# 如果没有传密码过来,那就把原来的密码给上,不然会不更新
|
|
|
|
|
if params[:password].nil? || params[:password].blank?
|
|
|
|
|
cs_params[:course][:password] = course[:password]
|
|
|
|
|
end
|
2015-01-04 11:53:16 +08:00
|
|
|
|
cs.edit_course_authorize(current_user,course)
|
2015-01-05 17:47:04 +08:00
|
|
|
|
course = cs.edit_course(cs_params, course,current_user)
|
2015-01-04 11:53:16 +08:00
|
|
|
|
present :data, course, with: Mobile::Entities::Course
|
|
|
|
|
present :status, 0
|
2014-12-13 21:52:26 +08:00
|
|
|
|
end
|
|
|
|
|
post do
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
desc "加入课程"
|
|
|
|
|
params do
|
2015-01-04 11:53:16 +08:00
|
|
|
|
requires :token, type: String
|
2015-01-07 11:20:27 +08:00
|
|
|
|
requires :course_password, type: String
|
2014-12-13 21:52:26 +08:00
|
|
|
|
end
|
|
|
|
|
post ":id" do
|
|
|
|
|
authenticate!
|
|
|
|
|
cs = CoursesService.new
|
2015-01-07 11:20:27 +08:00
|
|
|
|
status = cs.join_course({:object_id => params[:id],:course_password => params[:course_password]},current_user)
|
|
|
|
|
out = {status: status[:state]}
|
|
|
|
|
message = case status[:state]
|
2014-12-13 21:52:26 +08:00
|
|
|
|
when 0; "加入成功"
|
|
|
|
|
when 1; "密码错误"
|
|
|
|
|
when 2; "课程已过期 请联系课程管理员重启课程。(在配置课程处)"
|
|
|
|
|
when 3; "您已经加入了课程"
|
|
|
|
|
when 4; "您加入的课程不存在"
|
|
|
|
|
when 5; "您还未登录"
|
|
|
|
|
else; "未知错误,请稍后再试"
|
|
|
|
|
end
|
|
|
|
|
out.merge(message: message)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
desc "退出课程"
|
|
|
|
|
params do
|
2015-01-04 11:53:16 +08:00
|
|
|
|
requires :token, type: String
|
2014-12-13 21:52:26 +08:00
|
|
|
|
end
|
|
|
|
|
delete ":id" do
|
|
|
|
|
authenticate!
|
|
|
|
|
cs = CoursesService.new
|
2015-01-07 11:37:48 +08:00
|
|
|
|
status = cs.exit_course({:object_id => params[:id]}, current_user)
|
|
|
|
|
out = {status: status}
|
|
|
|
|
message = case status
|
|
|
|
|
when 0; "退出成功"
|
|
|
|
|
when 1; "您不在课程中"
|
|
|
|
|
when 2; "您还未登录"
|
|
|
|
|
else; "未知错误,请稍后再试"
|
|
|
|
|
end
|
|
|
|
|
out.merge(message: message)
|
2014-12-13 21:52:26 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
desc "搜索课程"
|
|
|
|
|
params do
|
|
|
|
|
requires :name, type: String, desc: "课程名"
|
2015-02-10 16:36:29 +08:00
|
|
|
|
optional :token, type: String
|
2014-12-13 21:52:26 +08:00
|
|
|
|
end
|
|
|
|
|
get 'search' do
|
|
|
|
|
cs = CoursesService.new
|
2015-02-10 16:36:29 +08:00
|
|
|
|
courses = cs.search_course(params,current_user.nil? ? User.find(2):current_user)
|
2014-12-13 21:52:26 +08:00
|
|
|
|
present :data, courses, with: Mobile::Entities::Course
|
|
|
|
|
present :status, 0
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
desc "课程老师列表"
|
|
|
|
|
params do
|
2015-01-07 15:24:43 +08:00
|
|
|
|
requires :token, type: String
|
2014-12-13 21:52:26 +08:00
|
|
|
|
requires :course_id, type: Integer, desc: "课程id"
|
|
|
|
|
end
|
|
|
|
|
get 'teachers' do
|
|
|
|
|
cs = CoursesService.new
|
2015-01-07 15:24:43 +08:00
|
|
|
|
teachers = cs.course_teacher_or_student_list({role: '1'}, params[:course_id],current_user)
|
|
|
|
|
present :data, teachers, with: Mobile::Entities::User
|
|
|
|
|
present :status, 0
|
2014-12-13 21:52:26 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
desc "课程学生列表"
|
|
|
|
|
params do
|
2015-01-07 15:24:43 +08:00
|
|
|
|
requires :token, type: String
|
2014-12-13 21:52:26 +08:00
|
|
|
|
requires :course_id, type: Integer, desc: "课程id"
|
|
|
|
|
end
|
2015-01-07 15:24:43 +08:00
|
|
|
|
get 'students' do
|
2014-12-13 21:52:26 +08:00
|
|
|
|
cs = CoursesService.new
|
2015-01-07 15:24:43 +08:00
|
|
|
|
students = cs.course_teacher_or_student_list({role: '2'}, params[:course_id],current_user)
|
|
|
|
|
present :data, students, with: Mobile::Entities::User
|
|
|
|
|
present :status, 0
|
2014-12-13 21:52:26 +08:00
|
|
|
|
end
|
|
|
|
|
|
2014-12-10 16:23:56 +08:00
|
|
|
|
desc "返回单个课程"
|
2014-12-09 16:36:43 +08:00
|
|
|
|
params do
|
|
|
|
|
requires :id, type: Integer
|
2015-02-10 17:03:59 +08:00
|
|
|
|
optional :token, type: String
|
2014-12-09 16:36:43 +08:00
|
|
|
|
end
|
|
|
|
|
route_param :id do
|
|
|
|
|
get do
|
2014-12-15 16:53:20 +08:00
|
|
|
|
cs = CoursesService.new
|
2015-01-20 17:42:18 +08:00
|
|
|
|
course = cs.show_course(params,(current_user.nil? ? User.find(2):current_user))
|
2014-12-15 16:53:20 +08:00
|
|
|
|
#course = Course.find(params[:id])
|
2015-02-10 17:03:59 +08:00
|
|
|
|
present :data, course, with: Mobile::Entities::Course
|
|
|
|
|
present :status, 0
|
2014-12-09 16:36:43 +08:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2015-01-20 15:17:02 +08:00
|
|
|
|
desc "课程作业列表"
|
|
|
|
|
params do
|
|
|
|
|
requires :token, type: String
|
|
|
|
|
end
|
|
|
|
|
get "homeworks/:id" do
|
|
|
|
|
cs = CoursesService.new
|
|
|
|
|
homeworks = cs.homework_list params,current_user
|
|
|
|
|
present :data, homeworks, with: Mobile::Entities::Homework
|
|
|
|
|
present :status, 0
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
desc "课程通知列表"
|
|
|
|
|
params do
|
2015-02-04 11:57:37 +08:00
|
|
|
|
optional :token, type: String
|
2015-01-20 15:17:02 +08:00
|
|
|
|
end
|
|
|
|
|
get ":course_id/news" do
|
|
|
|
|
cs = CoursesService.new
|
2015-02-04 11:57:37 +08:00
|
|
|
|
news = cs.course_news_list params,current_user.nil? ? User.find(2):current_user
|
2015-01-20 15:17:02 +08:00
|
|
|
|
present :data, news, with: Mobile::Entities::News
|
|
|
|
|
present :status, 0
|
|
|
|
|
end
|
|
|
|
|
|
2015-01-20 17:42:18 +08:00
|
|
|
|
desc "显示课程通知"
|
|
|
|
|
params do
|
2015-02-04 14:07:00 +08:00
|
|
|
|
optional :token, type: String
|
2015-01-20 17:42:18 +08:00
|
|
|
|
end
|
|
|
|
|
get "news/:id" do
|
|
|
|
|
cs = CoursesService.new
|
|
|
|
|
cs.show_course_news_authorize(current_user.nil? ? User.find(2):current_user)
|
|
|
|
|
news = cs.show_course_news params,current_user.nil? ? User.find(2):current_user
|
|
|
|
|
present :data, news, with: Mobile::Entities::News
|
|
|
|
|
present :status, 0
|
|
|
|
|
end
|
|
|
|
|
|
2015-03-03 09:11:47 +08:00
|
|
|
|
desc '用户课程动态'
|
2015-02-06 14:29:42 +08:00
|
|
|
|
params do
|
|
|
|
|
requires :token, type: String
|
|
|
|
|
end
|
|
|
|
|
get "course_dynamic/:id" do
|
|
|
|
|
cs = CoursesService.new
|
|
|
|
|
count = cs.course_dynamic(params,current_user)
|
2015-02-06 15:52:34 +08:00
|
|
|
|
present :data, count, with: Mobile::Entities::CourseDynamic
|
2015-02-06 14:29:42 +08:00
|
|
|
|
present :status, 0
|
|
|
|
|
end
|
2015-01-20 15:17:02 +08:00
|
|
|
|
|
2015-04-29 17:46:39 +08:00
|
|
|
|
desc '课程课件'
|
|
|
|
|
params do
|
|
|
|
|
requires :token, type: String
|
|
|
|
|
requires :course_id,type: Integer,desc: '课程id'
|
|
|
|
|
end
|
|
|
|
|
get ":course_id/attachments" do
|
|
|
|
|
cs = CoursesService.new
|
|
|
|
|
count = cs.course_attachments params
|
|
|
|
|
present :data, count, with: Mobile::Entities::Attachment
|
|
|
|
|
present :status, 0
|
|
|
|
|
end
|
|
|
|
|
|
2014-12-09 16:36:43 +08:00
|
|
|
|
end
|
2014-11-27 19:43:04 +08:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|