summaryrefslogtreecommitdiff
path: root/app/models/repository_language.rb
blob: 2816aa4cc5be886e881fd6793ac373e15b4e56a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

class RepositoryLanguage < ApplicationRecord
  extend SuppressCompositePrimaryKeyWarning

  belongs_to :project
  belongs_to :programming_language

  default_scope { includes(:programming_language) } # rubocop:disable Cop/DefaultScope

  scope :with_programming_language, ->(name) do
    joins(:programming_language).merge(ProgrammingLanguage.with_name_case_insensitive(name))
  end

  validates :project, presence: true
  validates :share, inclusion: { in: 0..100, message: "The share of a language is between 0 and 100" }
  validates :programming_language, uniqueness: { scope: :project_id }

  delegate :name, :color, to: :programming_language
end