2017-04-04 18:27:23 -04:00
|
|
|
# A non-diff discussion on an issue, merge request, commit, or snippet, consisting of `DiscussionNote` notes.
|
2017-04-06 11:05:57 -04:00
|
|
|
#
|
|
|
|
# A discussion of this type can be resolvable.
|
2016-07-20 18:18:18 -04:00
|
|
|
class Discussion
|
2017-03-30 20:38:21 -04:00
|
|
|
include ResolvableDiscussion
|
2016-07-20 18:18:18 -04:00
|
|
|
|
2017-04-07 12:29:29 -04:00
|
|
|
attr_reader :notes, :context_noteable
|
2016-07-20 18:18:18 -04:00
|
|
|
|
|
|
|
delegate :created_at,
|
|
|
|
:project,
|
|
|
|
:author,
|
|
|
|
|
|
|
|
:noteable,
|
|
|
|
:for_commit?,
|
|
|
|
:for_merge_request?,
|
|
|
|
|
|
|
|
to: :first_note
|
|
|
|
|
2017-04-07 12:29:29 -04:00
|
|
|
def self.build(notes, context_noteable = nil)
|
|
|
|
notes.first.discussion_class(context_noteable).new(notes, context_noteable)
|
2017-03-09 20:29:11 -05:00
|
|
|
end
|
Change diff highlight/truncate for reusability
Previously the `truncated_diff_lines` method for outputting a discussion diff took in already highlighted lines, which meant it wasn't reuseable for truncating ANY lines. In the way it was used, it also meant that for any email truncation, the whole diff was being highlighted before being truncated, meaning wasted time highlighting lines that wouldn't even be used (granted, they were being memoized, so perhaps this wasn't that great of an issue). I refactored truncation away from highlighting, in order to truncate formatted diffs for text templates in email, using `>`s to designate each line, but otherwise retaining the parsing already done to create `diff_lines`.
Additionally, while notes on merge requests or commits had already been tested, there was no existing test for notes on a diff on an MR or commit. Added mailer tests for such, and a unit test for truncating diff lines.
2016-08-25 12:38:07 -04:00
|
|
|
|
2017-04-07 12:29:29 -04:00
|
|
|
def self.build_collection(notes, context_noteable = nil)
|
|
|
|
notes.group_by { |n| n.discussion_id(context_noteable) }.values.map { |notes| build(notes, context_noteable) }
|
2017-03-09 20:29:11 -05:00
|
|
|
end
|
2016-07-20 18:18:18 -04:00
|
|
|
|
2017-04-04 18:27:23 -04:00
|
|
|
# Returns an alphanumeric discussion ID based on `build_discussion_id`
|
2017-03-09 20:29:11 -05:00
|
|
|
def self.discussion_id(note)
|
|
|
|
Digest::SHA1.hexdigest(build_discussion_id(note).join("-"))
|
2016-07-20 18:18:18 -04:00
|
|
|
end
|
|
|
|
|
2017-04-04 18:27:23 -04:00
|
|
|
# Returns an array of discussion ID components
|
|
|
|
def self.build_discussion_id(note)
|
|
|
|
[*base_discussion_id(note), SecureRandom.hex]
|
2016-07-20 18:18:18 -04:00
|
|
|
end
|
|
|
|
|
2017-04-04 18:27:23 -04:00
|
|
|
def self.base_discussion_id(note)
|
2017-03-09 20:29:11 -05:00
|
|
|
noteable_id = note.noteable_id || note.commit_id
|
|
|
|
[:discussion, note.noteable_type.try(:underscore), noteable_id]
|
2016-07-20 18:18:18 -04:00
|
|
|
end
|
|
|
|
|
2017-04-04 18:27:23 -04:00
|
|
|
# When notes on a commit are displayed in context of a merge request that contains that commit,
|
|
|
|
# these notes are to be displayed as if they were part of one discussion, even though they were actually
|
|
|
|
# individual notes on the commit with different discussion IDs, so that it's clear that these are not
|
|
|
|
# notes on the merge request itself.
|
2017-04-04 19:20:08 -04:00
|
|
|
#
|
|
|
|
# To turn a list of notes into a list of discussions, they are grouped by discussion ID, so to
|
|
|
|
# get these out-of-context notes to end up in the same discussion, we need to get them to return the same
|
2017-04-04 18:27:23 -04:00
|
|
|
# `discussion_id` when this grouping happens. To enable this, `Note#discussion_id` calls out
|
|
|
|
# to the `override_discussion_id` method on the appropriate `Discussion` subclass, as determined by
|
|
|
|
# the `discussion_class` method on `Note` or a subclass of `Note`.
|
2017-04-04 19:20:08 -04:00
|
|
|
#
|
2017-04-04 18:27:23 -04:00
|
|
|
# If no override is necessary, return `nil`.
|
|
|
|
# For the case described above, see `OutOfContextDiscussion.override_discussion_id`.
|
|
|
|
def self.override_discussion_id(note)
|
|
|
|
nil
|
2017-03-09 20:29:11 -05:00
|
|
|
end
|
|
|
|
|
2017-04-06 11:05:57 -04:00
|
|
|
def self.note_class
|
|
|
|
DiscussionNote
|
|
|
|
end
|
|
|
|
|
2017-04-07 12:29:29 -04:00
|
|
|
def initialize(notes, context_noteable = nil)
|
2017-03-09 20:29:11 -05:00
|
|
|
@notes = notes
|
2017-04-07 12:29:29 -04:00
|
|
|
@context_noteable = context_noteable
|
2016-07-28 23:14:45 -04:00
|
|
|
end
|
|
|
|
|
2017-03-17 15:25:52 -04:00
|
|
|
def ==(other)
|
|
|
|
other.class == self.class &&
|
2017-04-07 12:29:29 -04:00
|
|
|
other.context_noteable == self.context_noteable &&
|
2017-03-17 15:25:52 -04:00
|
|
|
other.id == self.id &&
|
|
|
|
other.notes == self.notes
|
|
|
|
end
|
|
|
|
|
2016-07-26 00:49:21 -04:00
|
|
|
def last_updated_at
|
|
|
|
last_note.created_at
|
|
|
|
end
|
|
|
|
|
|
|
|
def last_updated_by
|
|
|
|
last_note.author
|
|
|
|
end
|
|
|
|
|
2016-07-20 18:18:18 -04:00
|
|
|
def id
|
2017-04-07 12:29:29 -04:00
|
|
|
first_note.discussion_id(context_noteable)
|
2016-07-20 18:18:18 -04:00
|
|
|
end
|
2016-08-17 13:14:44 -04:00
|
|
|
|
2016-08-15 19:45:23 -04:00
|
|
|
alias_method :to_param, :id
|
2016-07-20 18:18:18 -04:00
|
|
|
|
|
|
|
def diff_discussion?
|
2017-03-09 20:29:11 -05:00
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2017-03-17 15:25:52 -04:00
|
|
|
def individual_note?
|
2017-03-09 20:29:11 -05:00
|
|
|
false
|
2016-07-20 18:18:18 -04:00
|
|
|
end
|
|
|
|
|
2017-03-15 20:14:58 -04:00
|
|
|
def new_discussion?
|
|
|
|
notes.length == 1
|
|
|
|
end
|
|
|
|
|
2016-09-02 16:29:47 -04:00
|
|
|
def last_note
|
2017-03-09 20:29:11 -05:00
|
|
|
@last_note ||= notes.last
|
2016-09-02 16:29:47 -04:00
|
|
|
end
|
2016-07-26 00:37:22 -04:00
|
|
|
|
2016-07-26 00:46:13 -04:00
|
|
|
def collapsed?
|
2017-03-17 15:25:52 -04:00
|
|
|
resolved?
|
2016-07-26 00:46:13 -04:00
|
|
|
end
|
|
|
|
|
2016-07-20 18:18:18 -04:00
|
|
|
def expanded?
|
2016-07-26 00:46:13 -04:00
|
|
|
!collapsed?
|
2016-07-20 18:18:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def reply_attributes
|
2017-03-30 21:33:45 -04:00
|
|
|
first_note.slice(:type, :noteable_type, :noteable_id, :commit_id, :discussion_id)
|
2016-07-20 18:18:18 -04:00
|
|
|
end
|
|
|
|
end
|