gitlab-org--gitlab-foss/app/models/label.rb

68 lines
1.6 KiB
Ruby
Raw Normal View History

# == Schema Information
#
# Table name: labels
#
# id :integer not null, primary key
# title :string(255)
# color :string(255)
# project_id :integer
# created_at :datetime
# updated_at :datetime
#
class Label < ActiveRecord::Base
include Referable
DEFAULT_COLOR = '#428BCA'
2015-04-17 15:38:31 +00:00
default_value_for :color, DEFAULT_COLOR
belongs_to :project
has_many :label_links, dependent: :destroy
has_many :issues, through: :label_links, source: :target, source_type: 'Issue'
2014-08-11 21:59:30 +00:00
validates :color,
format: { with: /\A#[0-9A-Fa-f]{6}\Z/ },
2014-08-11 21:59:30 +00:00
allow_blank: false
validates :project, presence: true
2014-08-11 21:59:30 +00:00
# Don't allow '?', '&', and ',' for label titles
2014-08-12 08:53:50 +00:00
validates :title,
presence: true,
format: { with: /\A[^&\?,]+\z/ },
2014-08-13 12:12:05 +00:00
uniqueness: { scope: :project_id }
default_scope { order(title: :asc) }
2014-08-12 12:16:25 +00:00
alias_attribute :name, :title
def self.reference_prefix
'~'
end
# Returns the String necessary to reference this Label in Markdown
#
# format - Symbol format to use (default: :id, optional: :name)
#
# Note that its argument differs from other objects implementing Referable. If
# a non-Symbol argument is given (such as a Project), it will default to :id.
#
# Examples:
#
# Label.first.to_reference # => "~1"
# Label.first.to_reference(:name) # => "~\"bug\""
#
# Returns a String
def to_reference(format = :id)
if format == :name
%(#{self.class.reference_prefix}"#{name}")
else
"#{self.class.reference_prefix}#{id}"
end
end
def open_issues_count
issues.opened.count
end
end