Skip to content
todo.rb 1.69 KiB
Newer Older
Douglas Barbosa Alexandre's avatar
Douglas Barbosa Alexandre committed
# == Schema Information
#
# Table name: todos
Douglas Barbosa Alexandre's avatar
Douglas Barbosa Alexandre committed
#
#  id          :integer          not null, primary key
#  user_id     :integer          not null
#  project_id  :integer          not null
Douglas Barbosa Alexandre's avatar
Douglas Barbosa Alexandre committed
#  target_type :string           not null
#  author_id   :integer
#  action      :integer          not null
Douglas Barbosa Alexandre's avatar
Douglas Barbosa Alexandre committed
#  state       :string           not null
#  created_at  :datetime
#  updated_at  :datetime
#  note_id     :integer
#  commit_id   :string
class Todo < ActiveRecord::Base
  ASSIGNED  = 1
Douglas Barbosa Alexandre's avatar
Douglas Barbosa Alexandre committed
  belongs_to :author, class_name: "User"
Douglas Barbosa Alexandre's avatar
Douglas Barbosa Alexandre committed
  belongs_to :project
  belongs_to :target, polymorphic: true, touch: true
  belongs_to :user

  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?
  default_scope { reorder(id: :desc) }

  scope :pending, -> { with_state(:pending) }
  scope :done, -> { with_state(:done) }

Douglas Barbosa Alexandre's avatar
Douglas Barbosa Alexandre committed
  state_machine :state, initial: :pending do
Douglas Barbosa Alexandre's avatar
Douglas Barbosa Alexandre committed
    state :pending
    state :done
  end
  def body
    if note.present?
      note.note
    else
      target.title
    end

  def for_commit?
    target_type == "Commit"
  end

  # override to return commits, which are not active record
  def target
    if for_commit?
      project.commit(commit_id)
    else
      super
    end
  # Temp fix to prevent app crash
  # if note commit id doesn't exist
  rescue
    nil
  end

  def to_reference
    if for_commit?
      Commit.truncate_sha(commit_id)
    else
      target.to_reference
    end
  end
Douglas Barbosa Alexandre's avatar
Douglas Barbosa Alexandre committed
end