gitlabhq/app/models/issue.rb

90 lines
2 KiB
Ruby
Raw Normal View History

2011-10-08 23:36:38 +02:00
class Issue < ActiveRecord::Base
include Upvote
2011-10-08 23:36:38 +02:00
belongs_to :project
2012-04-08 23:28:58 +02:00
belongs_to :milestone
2011-10-08 23:36:38 +02:00
belongs_to :author, :class_name => "User"
belongs_to :assignee, :class_name => "User"
has_many :notes, :as => :noteable, :dependent => :destroy
2011-10-08 23:36:38 +02:00
attr_protected :author, :author_id, :project, :project_id
attr_accessor :author_id_of_changes
2011-10-08 23:36:38 +02:00
validates_presence_of :project_id
validates_presence_of :assignee_id
validates_presence_of :author_id
delegate :name,
2011-11-15 09:34:30 +01:00
:email,
:to => :author,
:prefix => true
2011-11-24 14:08:20 +01:00
delegate :name,
:email,
:to => :assignee,
:prefix => true
2011-10-08 23:36:38 +02:00
validates :title,
:presence => true,
:length => { :within => 0..255 }
2012-03-17 04:24:40 +01:00
validates :description,
:length => { :within => 0..2000 }
2011-10-25 06:34:02 +02:00
scope :critical, where(:critical => true)
scope :non_critical, where(:critical => false)
2011-10-08 23:36:38 +02:00
scope :opened, where(:closed => false)
scope :closed, where(:closed => true)
scope :assigned, lambda { |u| where(:assignee_id => u.id)}
2011-10-15 18:56:53 +02:00
acts_as_list
2011-10-25 06:34:02 +02:00
2011-11-28 22:34:24 +01:00
def self.open_for(user)
opened.assigned(user)
end
2012-04-14 10:16:11 +02:00
def self.search query
where("title like :query", :query => "%#{query}%")
end
2011-10-25 06:34:02 +02:00
def today?
Date.today == created_at.to_date
end
2011-10-25 06:34:02 +02:00
def new?
today? && created_at == updated_at
end
# Return the number of +1 comments (upvotes)
def upvotes
notes.select(&:upvote?).size
end
def is_being_reassigned?
assignee_id_changed?
end
def is_being_closed?
closed_changed? && closed
end
2011-10-08 23:36:38 +02:00
end
# == Schema Information
#
# Table name: issues
#
# id :integer not null, primary key
# title :string(255)
2012-03-17 04:24:40 +01:00
# description :text
2011-10-08 23:36:38 +02:00
# assignee_id :integer
# author_id :integer
# project_id :integer
# created_at :datetime
# updated_at :datetime
# closed :boolean default(FALSE), not null
2011-10-17 17:31:21 +02:00
# position :integer default(0)
2011-11-10 23:08:20 +01:00
# critical :boolean default(FALSE), not null
2011-12-18 15:09:16 +01:00
# branch_name :string(255)
2011-10-08 23:36:38 +02:00
#