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