2016-07-29 09:46:47 -05:00
|
|
|
class CandidateQuiz
|
|
|
|
attr_reader :candidate_id
|
|
|
|
|
2016-08-03 08:55:30 -05:00
|
|
|
def initialize candidate
|
|
|
|
@candidate_id = candidate.to_i
|
2016-07-29 09:46:47 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def fetch_question qid
|
|
|
|
raw_quiz(qid).each_with_object([]) { |row, quiz| quiz << CandidateQuizQuestion.new(row) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_my_quiz
|
|
|
|
raw_quiz.each_with_object([]) { |row, quiz| quiz << CandidateQuizQuestion.new(row) }
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def raw_quiz qid = nil
|
|
|
|
question = qid.nil? ? "" : " and q.id = #{qid} "
|
|
|
|
sql = "select c.id candidate_id, q.quiz_id, q.id question_id, a.id answer_id, q.sort
|
2016-08-03 08:55:30 -05:00
|
|
|
, q.question, q.attachment, q.category, q.input_type, q.input_options, a.answer
|
2016-07-29 09:46:47 -05:00
|
|
|
, ifnull(a.saved, false) saved, ifnull(a.submitted, false) submitted , a.updated_at
|
|
|
|
from candidates c
|
|
|
|
inner join questions q on q.quiz_id = c.quiz_id
|
|
|
|
left join answers a on a.candidate_id = c.id AND a.question_id = q.id
|
|
|
|
where q.active = true and c.id = #{candidate_id} #{question}
|
2016-07-29 13:34:23 -05:00
|
|
|
order by q.sort;"
|
2016-07-29 09:46:47 -05:00
|
|
|
ActiveRecord::Base.connection.exec_query(sql)
|
|
|
|
end
|
|
|
|
end
|