2016-02-12 08:17:42 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
2016-02-20 08:59:59 -05:00
|
|
|
# Table name: todos
|
2016-02-12 08:17:42 -05:00
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
|
|
|
# project_id :integer not null
|
2016-03-16 20:02:20 -04:00
|
|
|
# target_id :integer
|
2016-02-12 08:17:42 -05:00
|
|
|
# target_type :string not null
|
|
|
|
# author_id :integer
|
2016-02-18 08:51:53 -05:00
|
|
|
# action :integer not null
|
2016-02-12 08:17:42 -05:00
|
|
|
# state :string not null
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2016-03-16 20:02:20 -04:00
|
|
|
# note_id :integer
|
|
|
|
# commit_id :string
|
2016-02-12 08:17:42 -05:00
|
|
|
#
|
|
|
|
|
2016-02-20 08:59:59 -05:00
|
|
|
class Todo < ActiveRecord::Base
|
2016-02-12 13:45:44 -05:00
|
|
|
ASSIGNED = 1
|
2016-02-17 12:46:26 -05:00
|
|
|
MENTIONED = 2
|
2016-02-12 13:45:44 -05: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-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-02-12 08:17:42 -05:00
|
|
|
end
|