Merge branch 'dev_aliyun' of https://bdgit.educoder.net/Hjqreturn/educoder into dev_aliyun

dev_forum
jingquan huang 5 years ago
commit db54e26895

@ -31,7 +31,7 @@ class AccountsController < ApplicationController
phone = nil phone = nil
verifi_code = VerificationCode.where(email: email, code: code, code_type: 8).last verifi_code = VerificationCode.where(email: email, code: code, code_type: 8).last
end end
uid_logger("start register: verifi_code is #{verifi_code}, code is #{code}, time is #{Time.now.to_i - verifi_code.created_at.to_i}") uid_logger("start register: verifi_code is #{verifi_code}, code is #{code}, time is #{Time.now.to_i - verifi_code.try(:created_at).to_i}")
check_code = (verifi_code.try(:code) == code.strip && (Time.now.to_i - verifi_code.created_at.to_i) <= 10*60) check_code = (verifi_code.try(:code) == code.strip && (Time.now.to_i - verifi_code.created_at.to_i) <= 10*60)
unless check_code unless check_code
tip_exception("验证码无效") tip_exception("验证码无效")
@ -45,6 +45,8 @@ class AccountsController < ApplicationController
@user.activate @user.activate
# 必须要用save操作密码的保存是在users中 # 必须要用save操作密码的保存是在users中
if @user.save! if @user.save!
# todo user_extension
UserExtension.create!(user_id: @user.id)
# 注册完成手机号或邮箱想可以奖励500金币 # 注册完成手机号或邮箱想可以奖励500金币
RewardGradeService.call( RewardGradeService.call(
@user, @user,

@ -48,7 +48,7 @@ class ApplicationController < ActionController::Base
# 考虑到安全参数问题多一次查询去掉Union # 考虑到安全参数问题多一次查询去掉Union
user = User.where(phone: login).first || User.where(mail: login).first user = User.where(phone: login).first || User.where(mail: login).first
if type.to_i == 1 && !user.nil? if type.to_i == 1 && !user.nil?
tip_exception("该手机号码或邮箱已被注册") tip_exception(-2, "该手机号码或邮箱已被注册")
elsif type.to_i == 2 && user.nil? elsif type.to_i == 2 && user.nil?
tip_exception("该手机号码或邮箱未注册") tip_exception("该手机号码或邮箱未注册")
end end

@ -203,13 +203,13 @@ class ExercisesController < ApplicationController
else else
@is_teacher_or = 1 @is_teacher_or = 1
@user_exercise_answer = 3 #教师页面 @user_exercise_answer = 3 #教师页面
@user_commit_counts = @exercise.exercise_users.where(commit_status:1).count #已提交的用户数 @user_commit_counts = @exercise.exercise_users.where(commit_status:1).size #已提交的用户数
end end
@ex_status = @exercise.get_exercise_status(current_user) @ex_status = @exercise.get_exercise_status(current_user)
exercise_id_array = [@exercise.id] exercise_id_array = [@exercise.id]
@exercise_publish_count = get_user_permission_course(exercise_id_array,2).count #是否存在已发布的 @exercise_publish_count = get_user_permission_course(exercise_id_array,2).size #是否存在已发布的
@exercise_unpublish_count = get_user_permission_course(exercise_id_array,1).count #是否存在未发布的 @exercise_unpublish_count = get_user_permission_course(exercise_id_array,1).size #是否存在未发布的
if (@exercise_publish_count == 0) && (@exercise_unpublish_count == 0) #即表示没有分班 if (@exercise_publish_count == 0) && (@exercise_unpublish_count == 0) #即表示没有分班
if @ex_status == 1 if @ex_status == 1
@ -1204,7 +1204,7 @@ class ExercisesController < ApplicationController
#筛选/分类,排序 #筛选/分类,排序
order = params[:order] order = params[:order]
if @exercise_users_list.exists? && @exercise_users_list.size > 0 if @exercise_users_list.present? && @exercise_users_list.size > 0
@exercise_users_count = @exercise_users_list.size #当前显示的全部成员数量 @exercise_users_count = @exercise_users_list.size #当前显示的全部成员数量
teacher_reviews = @exercise_users_list.exercise_review teacher_reviews = @exercise_users_list.exercise_review
teacher_unreviews = @exercise_users_list.exercise_unreview teacher_unreviews = @exercise_users_list.exercise_unreview
@ -1385,7 +1385,7 @@ class ExercisesController < ApplicationController
@paging_type = params[:sort].to_s @paging_type = params[:sort].to_s
end end
ques_result_all = exercise_commit_result(@exercise_questions,@exercise_commit_user_ids) ques_result_all = exercise_commit_result(@exercise_questions,@exercise_commit_user_ids,@exercise_commit_users)
if @paging_type == "percent" if @paging_type == "percent"
@question_result_hash = ques_result_all.sort_by{|s| s[:percent]} @question_result_hash = ques_result_all.sort_by{|s| s[:percent]}

@ -662,8 +662,8 @@ class ShixunsController < ApplicationController
school_name = "%#{params[:school_name].to_s.strip}%" school_name = "%#{params[:school_name].to_s.strip}%"
if user_name.present? || school_name.present? if user_name.present? || school_name.present?
@users = User.joins(user_extension: :school).where("users.id not in #{member_ids} AND users.status = 1 AND @users = User.joins(user_extension: :school).where("users.id not in #{member_ids} AND users.status = 1 AND
LOWER(users.lastname) LIKE '#{user_name}' AND LOWER(schools.name) LIKE (LOWER(users.lastname) LIKE ? or users.phone like ?) AND LOWER(schools.name) LIKE
'#{school_name}'") ?", user_name, user_name, school_name)
else else
@users = User.none @users = User.none
end end

@ -84,12 +84,12 @@ module ExercisesHelper
end end
#试卷的统计结果页面计算各题的 #试卷的统计结果页面计算各题的
def exercise_commit_result(questions,user_ids) def exercise_commit_result(questions,user_ids,commit_users)
question_infos = [] question_infos = []
percent = 0.0
questions.each do |ex| questions.each do |ex|
ex_total_score = user_ids.count * ex&.question_score #该试卷的已回答的总分 ex_total_score = user_ids.count * ex&.question_score #该试卷的已回答的总分
ex_answers = ex.exercise_answers ex_answers = ex.exercise_answers
if ex.question_type != Exercise::PRACTICAL if ex.question_type != Exercise::PRACTICAL
ques_title = ex.question_title ques_title = ex.question_title
ques_less_title = nil ques_less_title = nil
@ -103,19 +103,31 @@ module ExercisesHelper
effictive_users_count = effictive_users.size #有效回答数可能有重复的用户id这里仅统计是否回答这个问题的全部人数 effictive_users_count = effictive_users.size #有效回答数可能有重复的用户id这里仅统计是否回答这个问题的全部人数
ex_answered_scores = effictive_users.score_reviewed.pluck(:score).sum #该问题的全部得分 ex_answered_scores = effictive_users.score_reviewed.pluck(:score).sum #该问题的全部得分
if ex_total_score == 0.0 if ex.question_type > Exercise::COMPLETION #当为主观题和实训题时,
percent = 0.0 if ex_total_score != 0.0
else percent = (ex_answered_scores / ex_total_score.to_f).round(3) * 100 #正确率
percent = (ex_answered_scores / ex_total_score.to_f).round(3) * 100 #正确率 end
end end
question_answer_infos = [] question_answer_infos = []
if ex.question_type <= Exercise::JUDGMENT #单选题 if ex.question_type <= Exercise::JUDGMENT #选择题和判断题
standard_answer = ex.exercise_standard_answers.pluck(:exercise_choice_id) #标准答案的位置 standard_answer = ex.exercise_standard_answers.pluck(:exercise_choice_id).sort #标准答案的位置
right_users_count = 0 #该问题的回答正确的人数
#计算每个问题的答案人数
commit_users.transaction do
commit_users.each do |user|
answer_choice_array = effictive_users.select(:user_id,:exercise_choice_id).where(user_id:user.user_id)&.map {|s| s.exercise_choice.choice_position}.uniq
if answer_choice_array.sort == standard_answer
right_users_count += 1
end
end
end
percent = effictive_users_count > 0 ? (right_users_count / effictive_users_count.to_f).round(3)*100 : 0.0
ex.exercise_choices.each do |c| ex.exercise_choices.each do |c|
right_answer = standard_answer.include?(c.choice_position) #选项的标准答案为选项的位置 right_answer = standard_answer.include?(c.choice_position) #选项的标准答案为选项的位置
answer_this_choice = effictive_users.search_exercise_answer("exercise_choice_id",c.id) answer_this_choice = effictive_users.search_exercise_answer("exercise_choice_id",c.id)
answer_users_count = answer_this_choice.count answer_users_count = answer_this_choice.size
if effictive_users_count == 0 if effictive_users_count == 0
answer_percent = 0.0 answer_percent = 0.0
else else
@ -125,7 +137,7 @@ module ExercisesHelper
:choice_position => c.choice_position, :choice_position => c.choice_position,
:choice_text => c.choice_text, :choice_text => c.choice_text,
:choice_users_count => answer_users_count, :choice_users_count => answer_users_count,
:choice_percent => answer_percent.round(1), :choice_percent => answer_percent.round(1).to_s,
:right_answer => right_answer :right_answer => right_answer
} }
question_answer_infos.push(answer_option) question_answer_infos.push(answer_option)
@ -156,18 +168,18 @@ module ExercisesHelper
else else
answer_percent = (user_count / effictive_users_count.to_f ).round(3) answer_percent = (user_count / effictive_users_count.to_f ).round(3)
end end
answer_option = { answer_option = {
:choice_position => index+1, :choice_position => index+1,
:choice_text => s_choice_text, :choice_text => s_choice_text,
:choice_users_count => user_count, :choice_users_count => user_count,
:choice_percent => answer_percent.round(1), :choice_percent => answer_percent.round(1).to_s,
:right_answer => true :right_answer => true
} }
question_answer_infos.push(answer_option) question_answer_infos.push(answer_option)
all_user_count += user_count all_user_count += user_count
standard_answer_count += 1 standard_answer_count += 1
end end
percent = effictive_users_count > 0 ? (all_user_count / effictive_users_count.to_f).round(3)*100 : 0.0
user_wrong_count = (effictive_users_count - all_user_count ) user_wrong_count = (effictive_users_count - all_user_count )
if effictive_users_count > 0 && user_wrong_count >= 0 if effictive_users_count > 0 && user_wrong_count >= 0
@ -179,21 +191,19 @@ module ExercisesHelper
:choice_position => (standard_answer_count + 1), :choice_position => (standard_answer_count + 1),
:choice_text => "wrong", :choice_text => "wrong",
:choice_users_count => user_wrong_count, :choice_users_count => user_wrong_count,
:choice_percent => wrong_percent.round(1), :choice_percent => wrong_percent.round(1).to_s,
:right_answer => false :right_answer => false
} }
question_answer_infos.push(wrong_answer_position) question_answer_infos.push(wrong_answer_position)
elsif ex.question_type == Exercise::SUBJECTIVE #主观题 elsif ex.question_type == Exercise::SUBJECTIVE #主观题
ex_score = ex&.question_score ex_score = ex&.question_score
full_scores = effictive_users.search_exercise_answer("score",ex_score).count #满分人数 full_scores = effictive_users.search_exercise_answer("score",ex_score).size #满分人数
no_full_scores = effictive_users.exercise_no_full_scores(ex_score).count #部分分数人数 no_full_scores = effictive_users.exercise_no_full_scores(ex_score).size #部分分数人数
zero_scores = effictive_users.search_exercise_answer("score",0.0).count #包含为0分的及未评阅的 zero_scores = effictive_users.search_exercise_answer("score",0.0).size #包含为0分的及未评阅的
# review_scores = ex.exercise_answer_comments.count #主观题的评阅数量
un_review_scores = effictive_users_count - full_scores - no_full_scores - zero_scores #未评阅数 un_review_scores = effictive_users_count - full_scores - no_full_scores - zero_scores #未评阅数
if un_review_scores < 0 if un_review_scores < 0
un_review_scores = 0 un_review_scores = 0
end end
# zero_scores = all_zero_scores - un_review_scores #已评阅且答案未0分的人数
main_scores_array = [full_scores,no_full_scores,zero_scores,un_review_scores] main_scores_array = [full_scores,no_full_scores,zero_scores,un_review_scores]
main_scores_array.each_with_index do |s,index| main_scores_array.each_with_index do |s,index|
right_answer = (index == 0) right_answer = (index == 0)
@ -207,7 +217,7 @@ module ExercisesHelper
:choice_position => index+1, :choice_position => index+1,
:choice_text => index+1, :choice_text => index+1,
:choice_users_count => s, :choice_users_count => s,
:choice_percent => score_percent.round(1), :choice_percent => score_percent.round(1).to_s,
:right_answer => right_answer :right_answer => right_answer
} }
question_answer_infos.push(answer_option) question_answer_infos.push(answer_option)
@ -224,7 +234,7 @@ module ExercisesHelper
shixun_answered_scores = cha_shixun_answer.score_reviewed.pluck(:score).sum #该问题的全部得分 shixun_answered_scores = cha_shixun_answer.score_reviewed.pluck(:score).sum #该问题的全部得分
if shixun_answered_scores == 0.0 if shixun_answered_scores == 0.0
game_percent = "0.0" game_percent = 0.0
else else
game_percent = (shixun_answered_scores / shixun_scores.to_f).round(3) * 100 #正确率 game_percent = (shixun_answered_scores / shixun_scores.to_f).round(3) * 100 #正确率
end end
@ -242,7 +252,7 @@ module ExercisesHelper
:choice_position => index+1, :choice_position => index+1,
:choice_text => index+1, :choice_text => index+1,
:choice_users_count => s, :choice_users_count => s,
:choice_percent => score_percent.round(1), :choice_percent => score_percent.round(1).to_s,
:right_answer => right_answer :right_answer => right_answer
} }
shixun_chas.push(answer_option) shixun_chas.push(answer_option)
@ -252,7 +262,7 @@ module ExercisesHelper
:cha_name => c.challenge.subject, :cha_name => c.challenge.subject,
:cha_position => c.position, :cha_position => c.position,
:cha_details => shixun_chas, :cha_details => shixun_chas,
:cha_percent => game_percent :cha_percent => game_percent.round(1).to_s
} }
question_answer_infos.push(shixun_new_chas) question_answer_infos.push(shixun_new_chas)
end end
@ -402,7 +412,7 @@ module ExercisesHelper
user_answer_content = answer_choice_array.sort user_answer_content = answer_choice_array.sort
standard_answer = q.exercise_standard_answers.pluck(:exercise_choice_id).sort #该问题的标准答案,可能有多个 standard_answer = q.exercise_standard_answers.pluck(:exercise_choice_id).sort #该问题的标准答案,可能有多个
if user_answer_content == standard_answer #答案一致,多选或单选才给分,答案不对不给分 if user_answer_content == standard_answer #答案一致,多选或单选才给分,答案不对不给分
if standard_answer.count > 0 if standard_answer.size > 0
q_score_1 = q.question_score q_score_1 = q.question_score
# q_score_1 = (q.question_score.to_f / standard_answer.count) #当多选答案正确时每个answer的分数均摊。 # q_score_1 = (q.question_score.to_f / standard_answer.count) #当多选答案正确时每个answer的分数均摊。
else else

@ -178,13 +178,12 @@ class Exercise < ApplicationRecord
ex_answer_user = exercise_users.where(user_id: user.id).select(:start_at,:end_at,:commit_status) ex_answer_user = exercise_users.where(user_id: user.id).select(:start_at,:end_at,:commit_status)
user_ex_status = get_exercise_status(user) user_ex_status = get_exercise_status(user)
user_status = 2 user_status = 2
if ex_answer_user.exists? && (ex_answer_user.first&.start_at.present? || ex_answer_user.first&.end_at.present?) #学生有过答题的,或者立即截止,但学生未做试卷的 if ex_answer_user.present? && (ex_answer_user.first&.start_at.present? || ex_answer_user.first&.end_at.present?) #学生有过答题的,或者立即截止,但学生未做试卷的
user_status = ex_answer_user.first.commit_status user_status = ex_answer_user.first.commit_status
end end
if ex_answer_user.exists? && ex_answer_user.first&.start_at.blank? && user_ex_status == 3 if ex_answer_user.present? && ex_answer_user.first&.start_at.blank? && user_ex_status == 3
user_status = 4 user_status = 4
end end
user_status user_status
end end

Loading…
Cancel
Save