You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
5.0 KiB
117 lines
5.0 KiB
class ExerciseAnswersController < ApplicationController
|
|
before_action :require_login
|
|
before_action :get_exercise_question
|
|
|
|
def create #每一次答案的点击,请求一次,实训题不在这里回答
|
|
ActiveRecord::Base.transaction do
|
|
begin
|
|
q_type = @exercise_question.question_type #试卷的类型
|
|
choice_id = params[:exercise_choice_id].present? ? params[:exercise_choice_id] : ""
|
|
answer_text = params[:answer_text].present? ? params[:answer_text] : "" #为字符串
|
|
if q_type < 4 && choice_id.blank?
|
|
normal_status(-1,"请选择序号")
|
|
else
|
|
ea = @exercise_question.exercise_answers.search_answer_users("user_id",current_user.id) #试卷的当前用户的答案
|
|
if q_type == 0 || q_type == 2 #选择题(单选)/判断题
|
|
ea_choice = ea.search_exercise_answer("exercise_choice_id",choice_id).first
|
|
answer_option = {
|
|
:user_id => current_user.id,
|
|
:exercise_question_id => @exercise_question.id,
|
|
:exercise_choice_id => choice_id,
|
|
:answer_text => ""
|
|
}
|
|
if ea_choice.present? #如果当前用户的答案存在,再次点击,即为删除
|
|
ea_choice.destroy
|
|
else
|
|
if @exercise_question.exercise_standard_answers.count <= 1 #单选题的时候
|
|
ea.first.destroy if ea.present?
|
|
end
|
|
ex_a = ExerciseAnswer.new(answer_option)
|
|
ex_a.save!
|
|
end
|
|
elsif q_type == 1 #多选题的
|
|
choice_ids = params[:exercise_choice_id].present? ? params[:exercise_choice_id] : []
|
|
ea_ids = ea.pluck(:exercise_choice_id)
|
|
common_answer_ids = choice_ids & ea_ids #已经存在的试卷选项id
|
|
new_ids = choice_ids - common_answer_ids # 新增的id
|
|
old_ids = ea_ids - common_answer_ids #没有选择的,则删掉
|
|
if new_ids.size > 0
|
|
new_ids.each do |e|
|
|
answer_option = {
|
|
:user_id => current_user.id,
|
|
:exercise_question_id => @exercise_question.id,
|
|
:exercise_choice_id => e,
|
|
:answer_text => ""
|
|
}
|
|
ex_a = ExerciseAnswer.new(answer_option)
|
|
ex_a.save!
|
|
end
|
|
end
|
|
if old_ids.size > 0
|
|
ea_answer = ea.search_answer_users("exercise_choice_id",old_ids)
|
|
ea_answer.destroy_all
|
|
end
|
|
elsif q_type == 3 #填空题
|
|
answer_option = {
|
|
:user_id => current_user.id,
|
|
:exercise_question_id => @exercise_question.id,
|
|
:exercise_choice_id => choice_id,
|
|
:answer_text => answer_text
|
|
}
|
|
ea_answer = ea.search_answer_users("exercise_choice_id",choice_id)
|
|
if ea.present? && ea_answer.present?
|
|
ea_answer.update(answer_option)
|
|
else
|
|
ex_new = ExerciseAnswer.new(answer_option)
|
|
ex_new.save!
|
|
end
|
|
elsif q_type == 4 #简答题
|
|
answer_option = {
|
|
:user_id => current_user.id,
|
|
:exercise_question_id => @exercise_question.id
|
|
}
|
|
if ea.present? #已经回答了的,
|
|
ea.first.update_attribute("answer_text",answer_text)
|
|
else
|
|
answer_option.merge!(answer_text:answer_text)
|
|
ex_a = ExerciseAnswer.new(answer_option)
|
|
ex_a.save!
|
|
end
|
|
end
|
|
normal_status(0,"回答成功")
|
|
end
|
|
rescue Exception => e
|
|
uid_logger_error(e.message)
|
|
tip_exception("页面调用失败!")
|
|
raise ActiveRecord::Rollback
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def get_exercise_question
|
|
@exercise_question = ExerciseQuestion.find_by_id(params[:exercise_question_id])
|
|
@exercise = @exercise_question.exercise
|
|
@course = @exercise.course
|
|
@exercise_user = @exercise.exercise_users.exercise_commit_users(current_user.id).first #当前用户
|
|
|
|
if @exercise_question.blank?
|
|
normal_status(-1,"试卷问题不存在!")
|
|
elsif @exercise.blank?
|
|
normal_status(-1,"试卷不存在!")
|
|
elsif @course.blank?
|
|
normal_status(-1,"该课堂不存在!")
|
|
elsif (@exercise_user.present? && @exercise_user.commit_status == 1) || (@exercise.end_time.present? && @exercise.end_time < Time.now) #已提交答案的/时间已结束的试卷不允许再修改
|
|
normal_status(-1,"已提交/已结束的试卷不允许修改!")
|
|
elsif @exercise.time > 0
|
|
user_start_at = @exercise.exercise_users.exercise_commit_users(current_user.id).first.start_at
|
|
exercise_time = @exercise.time.to_i
|
|
if (user_start_at + exercise_time.minutes) < Time.now
|
|
normal_status(-1,"限时试卷已结束!")
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|