summaryrefslogtreecommitdiff
path: root/app/services/tartiflette_scoring_service.rb
blob: 3514eb1437301a1a71b5444775b1f0e0d7406a05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
class TartifletteScoringService
  def self.scored?(tartiflette, session)
    session[:scored_tartiflettes]&.include?(tartiflette.id)
  end

  def self.mark_as_scored(tartiflette, session)
    session[:scored_tartiflettes] ||= []
    unless scored?(tartiflette, session)
      session[:scored_tartiflettes] << tartiflette.id
    end
  end

  def self.submit_scores(tartiflette, scores, session)
    scores.each do |criterium_id, value|
      Score.create!(
        tartiflette: tartiflette,
        scoring_criterium_id: criterium_id,
        value: value[:value]
      )
    end
    mark_as_scored(tartiflette, session)
  end

  def self.average_score(tartiflette)
    tartiflette.scores.average(:value).to_f
  end

  def self.average_score_by_category(tartiflette)
    tartiflette
      .scores
      .group_by { |score| score.scoring_criterium.category }
      .transform_values do |scores|
      (scores.sum(&:value).to_f / scores.size).round(2)
    end
  end

  def self.total_score_by_category(tartiflette)
    tartiflette
      .scores
      .group_by { |score| score.scoring_criterium.category }
      .transform_values do |scores|
      (scores.sum(&:value).to_f / scores.size).round(2)
    end
  end

  def self.leaderboard
    Tartiflette
      .joins(:scores)
      .select("tartiflettes.*, SUM(scores.value) AS total_score")
      .group("tartiflettes.id")
      .order("total_score DESC")
      .map { |tartiflette| [ tartiflette, tartiflette.total_score.to_f ] }
  end
end
Copyright 2019--2025 Marius PETER