133 lines
4.1 KiB
Ruby
133 lines
4.1 KiB
Ruby
class UserExerciseFeedbacksController < ApplicationController
|
|
include CommonBehavior
|
|
|
|
before_action :set_user_exercise_feedback, only: [:edit, :update]
|
|
before_action :set_user_exercise_feedback_by_id, only: [:show, :destroy]
|
|
|
|
def comment_presets
|
|
[[0,t('user_exercise_feedback.difficulty_easy')],
|
|
[1,t('user_exercise_feedback.difficulty_some_what_easy')],
|
|
[2,t('user_exercise_feedback.difficulty_ok')],
|
|
[3,t('user_exercise_feedback.difficulty_some_what_difficult')],
|
|
[4,t('user_exercise_feedback.difficult_too_difficult')]]
|
|
end
|
|
|
|
def time_presets
|
|
[[0,t('user_exercise_feedback.estimated_time_less_5')],
|
|
[1,t('user_exercise_feedback.estimated_time_5_to_10')],
|
|
[2,t('user_exercise_feedback.estimated_time_10_to_20')],
|
|
[3,t('user_exercise_feedback.estimated_time_20_to_30')],
|
|
[4,t('user_exercise_feedback.estimated_time_more_30')]]
|
|
end
|
|
|
|
def index
|
|
@search = UserExerciseFeedback.all.search params[:q]
|
|
@uefs = @search.result.includes(:execution_environment).order(:id).paginate(page: params[:page])
|
|
authorize!
|
|
end
|
|
|
|
def show
|
|
authorize!
|
|
end
|
|
|
|
def create
|
|
@exercise = Exercise.find(uef_params[:exercise_id])
|
|
rfc = RequestForComment.unsolved.where(exercise_id: @exercise.id, user_id: current_user.id).first
|
|
submission = current_user.submissions.where(exercise_id: @exercise.id).order('created_at DESC').first rescue nil
|
|
|
|
if @exercise
|
|
@uef = UserExerciseFeedback.new(uef_params)
|
|
if validate_inputs(uef_params)
|
|
authorize!
|
|
path =
|
|
if rfc && submission && submission.normalized_score == 1.0
|
|
request_for_comment_path(rfc)
|
|
else
|
|
implement_exercise_path(@exercise)
|
|
end
|
|
create_and_respond(object: @uef, path: proc{path})
|
|
else
|
|
flash[:danger] = t('shared.message_failure')
|
|
redirect_to(:back, id: uef_params[:exercise_id])
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
def destroy
|
|
authorize!
|
|
destroy_and_respond(object: @uef)
|
|
end
|
|
|
|
def edit
|
|
@texts = comment_presets.to_a
|
|
@times = time_presets.to_a
|
|
authorize!
|
|
end
|
|
|
|
def new
|
|
@texts = comment_presets.to_a
|
|
@times = time_presets.to_a
|
|
@uef = UserExerciseFeedback.new
|
|
exercise_id = if params[:user_exercise_feedback].nil? then params[:exercise_id] else params[:user_exercise_feedback][:exercise_id] end
|
|
@exercise = Exercise.find(exercise_id)
|
|
authorize!
|
|
end
|
|
|
|
def update
|
|
submission = current_user.submissions.where(exercise_id: @exercise.id).order('created_at DESC').first rescue nil
|
|
rfc = RequestForComment.unsolved.where(exercise_id: @exercise.id, user_id: current_user.id).first
|
|
authorize!
|
|
if @exercise && validate_inputs(uef_params)
|
|
path =
|
|
if rfc && submission && submission.normalized_score == 1.0
|
|
request_for_comment_path(rfc)
|
|
else
|
|
implement_exercise_path(@exercise)
|
|
end
|
|
update_and_respond(object: @uef, params: uef_params, path: path)
|
|
else
|
|
flash[:danger] = t('shared.message_failure')
|
|
redirect_to(:back, id: uef_params[:exercise_id])
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def authorize!
|
|
authorize(@uef || @uefs)
|
|
end
|
|
|
|
def to_s
|
|
name
|
|
end
|
|
|
|
def set_user_exercise_feedback
|
|
@exercise = Exercise.find(params[:user_exercise_feedback][:exercise_id])
|
|
@uef = UserExerciseFeedback.find_by(exercise_id: params[:user_exercise_feedback][:exercise_id], user: current_user)
|
|
end
|
|
|
|
def set_user_exercise_feedback_by_id
|
|
@uef = UserExerciseFeedback.find(params[:id])
|
|
end
|
|
|
|
def uef_params
|
|
params[:user_exercise_feedback].permit(:feedback_text, :difficulty, :exercise_id, :user_estimated_worktime).merge(user_id: current_user.id, user_type: current_user.class.name) if params[:user_exercise_feedback].present?
|
|
end
|
|
|
|
def validate_inputs(uef_params)
|
|
begin
|
|
if uef_params[:difficulty].to_i < 0 || uef_params[:difficulty].to_i >= comment_presets.size
|
|
return false
|
|
elsif uef_params[:user_estimated_worktime].to_i < 0 || uef_params[:user_estimated_worktime].to_i >= time_presets.size
|
|
return false
|
|
else
|
|
return true
|
|
end
|
|
rescue
|
|
return false
|
|
end
|
|
end
|
|
|
|
end
|