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

85 lines
1.6 KiB
Ruby
Raw Normal View History

2016-02-20 13:59:59 +00:00
class Todo < ActiveRecord::Base
ASSIGNED = 1
MENTIONED = 2
BUILD_FAILED = 3
MARKED = 4
2016-02-12 18:45:44 +00:00
2016-06-15 11:20:30 +00:00
ACTION_NAMES = {
ASSIGNED => :assigned,
MENTIONED => :mentioned,
BUILD_FAILED => :build_failed,
MARKED => :marked
}
2016-02-12 13:17:42 +00:00
belongs_to :author, class_name: "User"
belongs_to :note
2016-02-12 13:17:42 +00:00
belongs_to :project
belongs_to :target, polymorphic: true, touch: true
belongs_to :user
2016-02-12 18:45:44 +00:00
delegate :name, :email, to: :author, prefix: true, allow_nil: true
validates :action, :project, :target_type, :user, presence: true
validates :target_id, presence: true, unless: :for_commit?
validates :commit_id, presence: true, if: :for_commit?
2016-02-12 13:17:42 +00:00
2016-02-12 18:45:44 +00:00
default_scope { reorder(id: :desc) }
scope :pending, -> { with_state(:pending) }
scope :done, -> { with_state(:done) }
2016-02-12 13:17:42 +00:00
state_machine :state, initial: :pending do
event :done do
transition [:pending] => :done
end
2016-02-12 13:17:42 +00:00
state :pending
state :done
end
2016-02-12 18:45:44 +00:00
after_save :keep_around_commit
def build_failed?
action == BUILD_FAILED
end
2016-06-15 11:20:30 +00:00
def action_name
ACTION_NAMES[action]
end
2016-02-18 19:16:39 +00:00
def body
if note.present?
note.note
else
target.title
end
end
def for_commit?
target_type == "Commit"
end
# override to return commits, which are not active record
def target
if for_commit?
2016-03-18 16:27:27 +00:00
project.commit(commit_id) rescue nil
else
super
end
end
def target_reference
if for_commit?
target.short_id
else
target.to_reference
end
end
private
def keep_around_commit
project.repository.keep_around(self.commit_id)
end
2016-02-12 13:17:42 +00:00
end