2013-01-03 02:06:07 -05:00
|
|
|
# == Issuable concern
|
2012-12-30 09:19:31 -05:00
|
|
|
#
|
2012-10-09 15:09:46 -04:00
|
|
|
# Contains common functionality shared between Issues and MergeRequests
|
2012-12-30 09:19:31 -05:00
|
|
|
#
|
|
|
|
# Used by Issue, MergeRequest
|
|
|
|
#
|
2013-01-03 02:06:07 -05:00
|
|
|
module Issuable
|
2012-08-08 21:40:57 -04:00
|
|
|
extend ActiveSupport::Concern
|
2013-05-09 19:37:47 -04:00
|
|
|
include Mentionable
|
2012-08-08 21:40:57 -04:00
|
|
|
|
|
|
|
included do
|
2012-08-10 18:07:50 -04:00
|
|
|
belongs_to :author, class_name: "User"
|
|
|
|
belongs_to :assignee, class_name: "User"
|
2012-10-30 03:22:24 -04:00
|
|
|
belongs_to :milestone
|
2012-08-10 18:07:50 -04:00
|
|
|
has_many :notes, as: :noteable, dependent: :destroy
|
2012-08-08 21:40:57 -04:00
|
|
|
|
2012-10-08 20:10:04 -04:00
|
|
|
validates :author, presence: true
|
|
|
|
validates :title, presence: true, length: { within: 0..255 }
|
2012-08-08 21:40:57 -04:00
|
|
|
|
2013-08-10 13:25:53 -04:00
|
|
|
scope :authored, ->(user) { where(author_id: user) }
|
2013-06-17 04:57:37 -04:00
|
|
|
scope :assigned_to, ->(u) { where(assignee_id: u.id)}
|
2013-02-12 02:16:45 -05:00
|
|
|
scope :recent, -> { order("created_at DESC") }
|
2013-06-17 04:57:37 -04:00
|
|
|
scope :assigned, -> { where("assignee_id IS NOT NULL") }
|
|
|
|
scope :unassigned, -> { where("assignee_id IS NULL") }
|
2013-08-08 10:29:31 -04:00
|
|
|
scope :of_projects, ->(ids) { where(project_id: ids) }
|
2012-08-08 21:40:57 -04:00
|
|
|
|
|
|
|
delegate :name,
|
|
|
|
:email,
|
2012-08-10 18:07:50 -04:00
|
|
|
to: :author,
|
|
|
|
prefix: true
|
2012-08-08 21:40:57 -04:00
|
|
|
|
|
|
|
delegate :name,
|
|
|
|
:email,
|
2012-08-10 18:07:50 -04:00
|
|
|
to: :assignee,
|
|
|
|
allow_nil: true,
|
|
|
|
prefix: true
|
2012-08-08 21:40:57 -04:00
|
|
|
|
|
|
|
attr_accessor :author_id_of_changes
|
|
|
|
end
|
|
|
|
|
2012-08-09 13:45:12 -04:00
|
|
|
module ClassMethods
|
|
|
|
def search(query)
|
2012-08-10 18:07:50 -04:00
|
|
|
where("title like :query", query: "%#{query}%")
|
2012-08-09 13:45:12 -04:00
|
|
|
end
|
2012-08-08 21:40:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def today?
|
|
|
|
Date.today == created_at.to_date
|
|
|
|
end
|
|
|
|
|
|
|
|
def new?
|
|
|
|
today? && created_at == updated_at
|
|
|
|
end
|
2012-10-09 18:25:29 -04:00
|
|
|
|
|
|
|
def is_assigned?
|
|
|
|
!!assignee_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def is_being_reassigned?
|
|
|
|
assignee_id_changed?
|
|
|
|
end
|
|
|
|
|
2013-01-14 18:52:25 -05:00
|
|
|
#
|
|
|
|
# Votes
|
|
|
|
#
|
|
|
|
|
|
|
|
# Return the number of -1 comments (downvotes)
|
|
|
|
def downvotes
|
|
|
|
notes.select(&:downvote?).size
|
2013-01-03 02:06:07 -05:00
|
|
|
end
|
|
|
|
|
2013-01-14 18:52:25 -05:00
|
|
|
def downvotes_in_percent
|
2013-01-03 02:06:07 -05:00
|
|
|
if votes_count.zero?
|
|
|
|
0
|
|
|
|
else
|
2013-01-14 18:52:25 -05:00
|
|
|
100.0 - upvotes_in_percent
|
2013-01-03 02:06:07 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-01-14 18:52:25 -05:00
|
|
|
# Return the number of +1 comments (upvotes)
|
|
|
|
def upvotes
|
|
|
|
notes.select(&:upvote?).size
|
2013-01-03 02:06:07 -05:00
|
|
|
end
|
|
|
|
|
2013-01-14 18:52:25 -05:00
|
|
|
def upvotes_in_percent
|
2013-01-03 02:06:07 -05:00
|
|
|
if votes_count.zero?
|
|
|
|
0
|
|
|
|
else
|
2013-01-14 18:52:25 -05:00
|
|
|
100.0 / votes_count * upvotes
|
2013-01-03 02:06:07 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Return the total number of votes
|
|
|
|
def votes_count
|
|
|
|
upvotes + downvotes
|
|
|
|
end
|
2013-05-09 19:37:47 -04:00
|
|
|
|
|
|
|
# Return all users participating on the discussion
|
|
|
|
def participants
|
|
|
|
users = []
|
|
|
|
users << author
|
|
|
|
users << assignee if is_assigned?
|
|
|
|
mentions = []
|
|
|
|
mentions << self.mentioned_users
|
|
|
|
notes.each do |note|
|
|
|
|
users << note.author
|
|
|
|
mentions << note.mentioned_users
|
|
|
|
end
|
|
|
|
users.concat(mentions.reduce([], :|)).uniq
|
|
|
|
end
|
2012-08-08 21:26:56 -04:00
|
|
|
end
|