2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-06 11:05:57 -04:00
|
|
|
# A note on the root of an issue, merge request, commit, or snippet.
|
|
|
|
#
|
|
|
|
# A note of this type is never resolvable.
|
2019-03-28 09:17:42 -04:00
|
|
|
class Note < ApplicationRecord
|
2016-05-10 18:41:46 -04:00
|
|
|
extend ActiveModel::Naming
|
2021-08-18 23:10:47 -04:00
|
|
|
extend Gitlab::Utils::Override
|
|
|
|
|
2020-07-16 08:09:22 -04:00
|
|
|
include Gitlab::Utils::StrongMemoize
|
2015-04-21 09:23:20 -04:00
|
|
|
include Participable
|
2015-10-14 10:20:11 -04:00
|
|
|
include Mentionable
|
2016-05-25 15:07:36 -04:00
|
|
|
include Awardable
|
2016-06-13 07:34:36 -04:00
|
|
|
include Importable
|
2016-08-08 10:18:13 -04:00
|
|
|
include FasterCacheKeys
|
2018-09-20 10:14:46 -04:00
|
|
|
include Redactable
|
2016-10-06 17:52:44 -04:00
|
|
|
include CacheMarkdownField
|
2016-10-13 11:26:44 -04:00
|
|
|
include AfterCommitQueue
|
2017-03-09 20:29:11 -05:00
|
|
|
include ResolvableNote
|
2017-05-18 08:24:34 -04:00
|
|
|
include Editable
|
2017-11-24 05:45:19 -05:00
|
|
|
include Gitlab::SQL::Pattern
|
2017-12-01 08:52:16 -05:00
|
|
|
include ThrottledTouch
|
2018-09-11 11:31:34 -04:00
|
|
|
include FromUnion
|
2021-03-18 11:09:04 -04:00
|
|
|
include Sortable
|
2017-04-04 18:41:04 -04:00
|
|
|
|
2021-11-24 07:10:21 -05:00
|
|
|
cache_markdown_field :note, pipeline: :note, issuable_reference_expansion_enabled: true
|
2013-05-09 19:37:47 -04:00
|
|
|
|
2018-09-20 10:14:46 -04:00
|
|
|
redact_field :note
|
|
|
|
|
2022-02-11 10:14:00 -05:00
|
|
|
TYPES_RESTRICTED_BY_PROJECT_ABILITY = {
|
2019-10-25 08:46:40 -04:00
|
|
|
branch: :download_code
|
|
|
|
}.freeze
|
|
|
|
|
2022-02-11 10:14:00 -05:00
|
|
|
TYPES_RESTRICTED_BY_GROUP_ABILITY = {
|
|
|
|
contact: :read_crm_contact
|
|
|
|
}.freeze
|
|
|
|
|
2017-05-03 07:16:36 -04:00
|
|
|
# Aliases to make application_helper#edited_time_ago_with_tooltip helper work properly with notes.
|
2019-09-18 10:02:45 -04:00
|
|
|
# See https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/10392/diffs#note_28719102
|
2017-05-03 07:11:19 -04:00
|
|
|
alias_attribute :last_edited_by, :updated_by
|
|
|
|
|
2018-10-06 08:47:30 -04:00
|
|
|
# Attribute containing rendered and redacted Markdown as generated by
|
|
|
|
# Banzai::ObjectRenderer.
|
2016-10-06 17:52:44 -04:00
|
|
|
attr_accessor :redacted_note_html
|
2016-06-21 07:35:09 -04:00
|
|
|
|
2018-09-27 14:58:23 -04:00
|
|
|
# Total of all references as generated by Banzai::ObjectRenderer
|
|
|
|
attr_accessor :total_reference_count
|
|
|
|
|
2018-10-06 08:47:30 -04:00
|
|
|
# Number of user visible references as generated by Banzai::ObjectRenderer
|
2016-07-04 01:31:43 -04:00
|
|
|
attr_accessor :user_visible_reference_count
|
|
|
|
|
2017-07-29 11:04:42 -04:00
|
|
|
# Attribute used to store the attributes that have been changed by quick actions.
|
2022-02-25 19:14:54 -05:00
|
|
|
attr_writer :commands_changes
|
2016-11-24 01:32:32 -05:00
|
|
|
|
2021-08-20 02:11:03 -04:00
|
|
|
# Attribute used to determine whether keep_around_commits will be skipped for diff notes.
|
|
|
|
attr_accessor :skip_keep_around_commits
|
|
|
|
|
2014-04-09 06:36:25 -04:00
|
|
|
default_value_for :system, false
|
|
|
|
|
2016-05-26 07:38:28 -04:00
|
|
|
attr_mentionable :note, pipeline: :note
|
2015-10-14 10:20:11 -04:00
|
|
|
participant :author
|
2012-09-26 14:17:17 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
belongs_to :project
|
2017-12-01 08:52:16 -05:00
|
|
|
belongs_to :noteable, polymorphic: true # rubocop:disable Cop/PolymorphicAssociations
|
2012-09-27 02:20:36 -04:00
|
|
|
belongs_to :author, class_name: "User"
|
2015-07-30 08:45:54 -04:00
|
|
|
belongs_to :updated_by, class_name: "User"
|
2017-05-03 01:32:21 -04:00
|
|
|
belongs_to :last_edited_by, class_name: 'User'
|
2020-05-26 14:08:20 -04:00
|
|
|
belongs_to :review, inverse_of: :notes
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2018-02-05 06:26:33 -05:00
|
|
|
has_many :todos
|
2018-12-13 14:17:19 -05:00
|
|
|
|
|
|
|
# The delete_all definition is required here in order
|
|
|
|
# to generate the correct DELETE sql for
|
|
|
|
# suggestions.delete_all calls
|
|
|
|
has_many :suggestions, -> { order(:relative_order) },
|
|
|
|
inverse_of: :note, dependent: :delete_all # rubocop:disable Cop/ActiveRecordDependent
|
2019-09-06 05:54:58 -04:00
|
|
|
has_many :events, as: :target, dependent: :delete_all # rubocop:disable Cop/ActiveRecordDependent
|
2017-03-15 09:19:45 -04:00
|
|
|
has_one :system_note_metadata
|
2018-05-16 11:46:18 -04:00
|
|
|
has_one :note_diff_file, inverse_of: :diff_note, foreign_key: :diff_note_id
|
2020-04-15 08:09:18 -04:00
|
|
|
has_many :diff_note_positions
|
2016-02-17 14:45:32 -05:00
|
|
|
|
2016-03-05 20:43:12 -05:00
|
|
|
delegate :gfm_reference, :local_reference, to: :noteable
|
2012-09-27 02:20:36 -04:00
|
|
|
delegate :name, to: :project, prefix: true
|
|
|
|
delegate :name, :email, to: :author, prefix: true
|
2016-05-08 14:05:45 -04:00
|
|
|
delegate :title, to: :noteable, allow_nil: true
|
2011-11-03 06:56:26 -04:00
|
|
|
|
2017-01-05 08:36:06 -05:00
|
|
|
validates :note, presence: true
|
2019-07-17 05:54:40 -04:00
|
|
|
validates :note, length: { maximum: Gitlab::Database::MAX_TEXT_SIZE_LIMIT }
|
2017-11-01 13:35:14 -04:00
|
|
|
validates :project, presence: true, if: :for_project_noteable?
|
2016-06-01 05:23:09 -04:00
|
|
|
|
2015-03-20 08:11:12 -04:00
|
|
|
# Attachments are deprecated and are handled by Markdown uploader
|
|
|
|
validates :attachment, file_size: { maximum: :max_attachment_size }
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2016-04-29 06:16:18 -04:00
|
|
|
validates :noteable_type, presence: true
|
2016-06-13 07:34:36 -04:00
|
|
|
validates :noteable_id, presence: true, unless: [:for_commit?, :importing?]
|
2016-04-26 03:35:03 -04:00
|
|
|
validates :commit_id, presence: true, if: :for_commit?
|
2015-11-19 11:12:17 -05:00
|
|
|
validates :author, presence: true
|
2017-03-30 21:33:45 -04:00
|
|
|
validates :discussion_id, presence: true, format: { with: /\A\h{40}\z/ }
|
2012-12-18 13:02:00 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
validate unless: [:for_commit?, :importing?, :skip_project_check?] do |note|
|
2016-04-26 07:50:48 -04:00
|
|
|
unless note.noteable.try(:project) == note.project
|
2017-03-17 15:25:52 -04:00
|
|
|
errors.add(:project, 'does not match noteable project')
|
2016-04-25 08:28:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-11 17:05:59 -04:00
|
|
|
validate :does_not_exceed_notes_limit?, on: :create, unless: [:system?, :importing?]
|
|
|
|
|
2021-05-25 20:11:07 -04:00
|
|
|
# @deprecated attachments are handled by the Upload model.
|
|
|
|
#
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/issues/20830
|
2012-12-01 06:19:16 -05:00
|
|
|
mount_uploader :attachment, AttachmentUploader
|
2012-10-08 20:10:04 -04:00
|
|
|
|
|
|
|
# Scopes
|
2013-01-05 06:11:15 -05:00
|
|
|
scope :for_commit_id, ->(commit_id) { where(noteable_type: "Commit", commit_id: commit_id) }
|
2017-08-09 05:52:22 -04:00
|
|
|
scope :system, -> { where(system: true) }
|
|
|
|
scope :user, -> { where(system: false) }
|
|
|
|
scope :common, -> { where(noteable_type: ["", nil]) }
|
2021-03-18 11:09:04 -04:00
|
|
|
scope :fresh, -> { order_created_asc.with_order_id_asc }
|
2017-08-09 05:52:22 -04:00
|
|
|
scope :updated_after, ->(time) { where('updated_at > ?', time) }
|
2020-07-16 20:09:37 -04:00
|
|
|
scope :with_updated_at, ->(time) { where(updated_at: time) }
|
2021-11-16 04:13:21 -05:00
|
|
|
scope :with_discussion_ids, ->(discussion_ids) { where(discussion_id: discussion_ids) }
|
2021-05-04 08:10:04 -04:00
|
|
|
scope :with_suggestions, -> { joins(:suggestions) }
|
2017-08-09 05:52:22 -04:00
|
|
|
scope :inc_author, -> { includes(:author) }
|
2021-03-30 20:09:32 -04:00
|
|
|
scope :with_api_entity_associations, -> { preload(:note_diff_file, :author) }
|
2017-03-15 09:18:44 -04:00
|
|
|
scope :inc_relations_for_view, -> do
|
2022-02-11 10:14:00 -05:00
|
|
|
includes({ project: :group }, { author: :status }, :updated_by, :resolved_by, :award_emoji,
|
2020-04-15 14:09:36 -04:00
|
|
|
{ system_note_metadata: :description_version }, :note_diff_file, :diff_note_positions, :suggestions)
|
2017-03-15 09:18:44 -04:00
|
|
|
end
|
2011-10-18 07:33:30 -04:00
|
|
|
|
2018-10-23 05:49:45 -04:00
|
|
|
scope :with_notes_filter, -> (notes_filter) do
|
|
|
|
case notes_filter
|
|
|
|
when UserPreference::NOTES_FILTERS[:only_comments]
|
|
|
|
user
|
2018-11-05 07:30:14 -05:00
|
|
|
when UserPreference::NOTES_FILTERS[:only_activity]
|
|
|
|
system
|
2018-10-23 05:49:45 -04:00
|
|
|
else
|
|
|
|
all
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-09 05:52:22 -04:00
|
|
|
scope :diff_notes, -> { where(type: %w(LegacyDiffNote DiffNote)) }
|
|
|
|
scope :new_diff_notes, -> { where(type: 'DiffNote') }
|
|
|
|
scope :non_diff_notes, -> { where(type: ['Note', 'DiscussionNote', nil]) }
|
2016-05-10 18:41:46 -04:00
|
|
|
|
2015-10-15 04:41:09 -04:00
|
|
|
scope :with_associations, -> do
|
2016-06-21 01:26:43 -04:00
|
|
|
# FYI noteable cannot be loaded for LegacyDiffNote for commits
|
|
|
|
includes(:author, :noteable, :updated_by,
|
2018-11-14 00:07:35 -05:00
|
|
|
project: [:project_members, :namespace, { group: [:group_members] }])
|
2015-10-14 06:44:10 -04:00
|
|
|
end
|
2017-11-21 08:31:23 -05:00
|
|
|
scope :with_metadata, -> { includes(:system_note_metadata) }
|
2021-03-29 11:09:30 -04:00
|
|
|
scope :with_web_entity_associations, -> { preload(:project, :author, :noteable) }
|
2011-10-18 07:33:30 -04:00
|
|
|
|
2019-10-16 11:06:17 -04:00
|
|
|
scope :for_note_or_capitalized_note, ->(text) { where(note: [text, text.capitalize]) }
|
|
|
|
scope :like_note_or_capitalized_note, ->(text) { where('(note LIKE ? OR note LIKE ?)', text, text.capitalize) }
|
|
|
|
|
2016-07-22 18:26:33 -04:00
|
|
|
before_validation :nullify_blank_type, :nullify_blank_line_code
|
2021-09-26 23:11:36 -04:00
|
|
|
after_save :keep_around_commit, if: :for_project_noteable?, unless: -> { importing? || skip_keep_around_commits }
|
2019-12-04 10:11:23 -05:00
|
|
|
after_save :expire_etag_cache, unless: :importing?
|
|
|
|
after_save :touch_noteable, unless: :importing?
|
2017-04-11 08:20:25 -04:00
|
|
|
after_destroy :expire_etag_cache
|
2020-05-13 14:08:47 -04:00
|
|
|
after_commit :notify_after_create, on: :create
|
|
|
|
after_commit :notify_after_destroy, on: :destroy
|
2013-08-04 12:01:57 -04:00
|
|
|
|
2013-12-25 06:32:43 -05:00
|
|
|
class << self
|
2021-03-18 11:09:04 -04:00
|
|
|
extend Gitlab::Utils::Override
|
|
|
|
|
2016-05-10 18:41:46 -04:00
|
|
|
def model_name
|
|
|
|
ActiveModel::Name.new(self, nil, 'note')
|
|
|
|
end
|
2013-12-25 06:32:43 -05:00
|
|
|
|
2017-04-07 12:29:29 -04:00
|
|
|
def discussions(context_noteable = nil)
|
2017-05-31 15:00:30 -04:00
|
|
|
Discussion.build_collection(all.includes(:noteable).fresh, context_noteable)
|
2013-12-25 06:32:43 -05:00
|
|
|
end
|
2012-05-20 14:35:03 -04:00
|
|
|
|
2019-07-03 23:33:14 -04:00
|
|
|
# Note: Where possible consider using Discussion#lazy_find to return
|
|
|
|
# Discussions in order to benefit from having records batch loaded.
|
2017-03-09 20:29:11 -05:00
|
|
|
def find_discussion(discussion_id)
|
|
|
|
notes = where(discussion_id: discussion_id).fresh.to_a
|
2018-02-27 19:10:43 -05:00
|
|
|
|
2017-03-09 20:29:11 -05:00
|
|
|
return if notes.empty?
|
|
|
|
|
|
|
|
Discussion.build(notes)
|
2013-12-25 06:32:43 -05:00
|
|
|
end
|
2012-05-20 14:35:03 -04:00
|
|
|
|
2017-10-07 00:25:17 -04:00
|
|
|
# Group diff discussions by line code or file path.
|
|
|
|
# It is not needed to group by line code when comment is
|
|
|
|
# on an image.
|
2017-03-31 19:39:14 -04:00
|
|
|
def grouped_diff_discussions(diff_refs = nil)
|
2017-05-22 16:56:20 -04:00
|
|
|
groups = {}
|
2017-04-30 16:32:09 -04:00
|
|
|
|
|
|
|
diff_notes.fresh.discussions.each do |discussion|
|
2017-10-07 00:25:17 -04:00
|
|
|
group_key =
|
|
|
|
if discussion.on_image?
|
|
|
|
discussion.file_new_path
|
|
|
|
else
|
|
|
|
discussion.line_code_in_diffs(diff_refs)
|
|
|
|
end
|
|
|
|
|
|
|
|
if group_key
|
|
|
|
discussions = groups[group_key] ||= []
|
2017-05-22 16:56:20 -04:00
|
|
|
discussions << discussion
|
|
|
|
end
|
2017-04-30 16:32:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
groups
|
2014-06-06 16:15:54 -04:00
|
|
|
end
|
2017-01-23 15:40:25 -05:00
|
|
|
|
2019-10-09 20:06:44 -04:00
|
|
|
def positions
|
|
|
|
where.not(position: nil)
|
|
|
|
.select(:id, :type, :position) # ActiveRecord needs id and type for typecasting.
|
|
|
|
.map(&:position)
|
|
|
|
end
|
|
|
|
|
2020-11-04 13:08:42 -05:00
|
|
|
def count_for_collection(ids, type, count_column = 'COUNT(*) as count')
|
|
|
|
user.select(:noteable_id, count_column)
|
2017-06-21 09:48:12 -04:00
|
|
|
.group(:noteable_id)
|
|
|
|
.where(noteable_type: type, noteable_id: ids)
|
2017-01-23 15:40:25 -05:00
|
|
|
end
|
2017-08-02 10:06:28 -04:00
|
|
|
|
2017-11-24 05:45:19 -05:00
|
|
|
def search(query)
|
2017-11-24 06:24:24 -05:00
|
|
|
fuzzy_search(query, [:note])
|
2017-11-24 05:45:19 -05:00
|
|
|
end
|
2021-03-18 11:09:04 -04:00
|
|
|
|
|
|
|
# Override the `Sortable` module's `.simple_sorts` to remove name sorting,
|
|
|
|
# as a `Note` does not have any property that correlates to a "name".
|
|
|
|
override :simple_sorts
|
|
|
|
def simple_sorts
|
|
|
|
super.except('name_asc', 'name_desc')
|
|
|
|
end
|
2021-04-06 23:09:01 -04:00
|
|
|
|
|
|
|
def cherry_picked_merge_requests(shas)
|
|
|
|
where(noteable_type: 'MergeRequest', commit_id: shas).select(:noteable_id)
|
|
|
|
end
|
2015-04-30 23:16:19 -04:00
|
|
|
end
|
2014-10-03 01:48:35 -04:00
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ServiceClass
|
2020-02-23 22:09:05 -05:00
|
|
|
def system_note_with_references?
|
2017-11-16 09:23:32 -05:00
|
|
|
return unless system?
|
|
|
|
|
|
|
|
if force_cross_reference_regex_check?
|
|
|
|
matches_cross_reference_regex?
|
|
|
|
else
|
2019-10-08 11:06:04 -04:00
|
|
|
::SystemNotes::IssuablesService.cross_reference?(note)
|
2017-11-16 09:23:32 -05:00
|
|
|
end
|
2013-05-30 19:16:49 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ServiceClass
|
2013-05-30 19:16:49 -04:00
|
|
|
|
2016-05-10 18:41:46 -04:00
|
|
|
def diff_note?
|
|
|
|
false
|
2015-03-20 08:11:12 -04:00
|
|
|
end
|
|
|
|
|
2013-08-04 13:43:49 -04:00
|
|
|
def active?
|
2016-05-13 15:53:31 -04:00
|
|
|
true
|
2014-09-08 14:54:52 -04:00
|
|
|
end
|
|
|
|
|
2016-05-10 18:41:46 -04:00
|
|
|
def max_attachment_size
|
2018-02-02 13:39:55 -05:00
|
|
|
Gitlab::CurrentSettings.max_attachment_size.megabytes.to_i
|
2014-09-08 09:27:12 -04:00
|
|
|
end
|
|
|
|
|
2016-05-10 18:41:46 -04:00
|
|
|
def hook_attrs
|
2018-06-20 09:53:19 -04:00
|
|
|
Gitlab::HookData::NoteBuilder.new(self).build
|
2012-10-29 10:49:37 -04:00
|
|
|
end
|
|
|
|
|
2018-12-13 14:17:19 -05:00
|
|
|
def supports_suggestion?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2012-10-29 10:49:37 -04:00
|
|
|
def for_commit?
|
|
|
|
noteable_type == "Commit"
|
|
|
|
end
|
|
|
|
|
2012-10-29 22:27:36 -04:00
|
|
|
def for_issue?
|
|
|
|
noteable_type == "Issue"
|
|
|
|
end
|
|
|
|
|
2012-10-29 10:49:37 -04:00
|
|
|
def for_merge_request?
|
|
|
|
noteable_type == "MergeRequest"
|
|
|
|
end
|
|
|
|
|
2016-03-31 03:20:27 -04:00
|
|
|
def for_snippet?
|
2015-03-05 13:38:23 -05:00
|
|
|
noteable_type == "Snippet"
|
|
|
|
end
|
|
|
|
|
2020-06-12 08:08:56 -04:00
|
|
|
def for_alert_mangement_alert?
|
|
|
|
noteable_type == 'AlertManagement::Alert'
|
|
|
|
end
|
|
|
|
|
2021-06-03 08:10:18 -04:00
|
|
|
def for_vulnerability?
|
|
|
|
noteable_type == "Vulnerability"
|
|
|
|
end
|
|
|
|
|
2021-02-12 07:09:02 -05:00
|
|
|
def for_project_snippet?
|
|
|
|
noteable.is_a?(ProjectSnippet)
|
|
|
|
end
|
|
|
|
|
2017-01-05 08:36:06 -05:00
|
|
|
def for_personal_snippet?
|
2017-01-20 05:28:40 -05:00
|
|
|
noteable.is_a?(PersonalSnippet)
|
|
|
|
end
|
|
|
|
|
2017-11-01 13:35:14 -04:00
|
|
|
def for_project_noteable?
|
|
|
|
!for_personal_snippet?
|
|
|
|
end
|
|
|
|
|
2020-05-04 02:10:10 -04:00
|
|
|
def for_design?
|
|
|
|
noteable_type == DesignManagement::Design.name
|
|
|
|
end
|
|
|
|
|
2018-07-16 09:35:19 -04:00
|
|
|
def for_issuable?
|
|
|
|
for_issue? || for_merge_request?
|
|
|
|
end
|
|
|
|
|
2017-01-20 05:28:40 -05:00
|
|
|
def skip_project_check?
|
2018-02-28 02:48:23 -05:00
|
|
|
!for_project_noteable?
|
2017-01-05 08:36:06 -05:00
|
|
|
end
|
|
|
|
|
2017-06-29 17:19:09 -04:00
|
|
|
def commit
|
2017-12-06 10:57:10 -05:00
|
|
|
@commit ||= project.commit(commit_id) if commit_id.present?
|
2017-06-29 17:19:09 -04:00
|
|
|
end
|
|
|
|
|
2020-03-11 20:09:34 -04:00
|
|
|
# Notes on merge requests and commits can be traced back to one or several
|
|
|
|
# MRs. This method returns a relation if the note is for one of these types,
|
|
|
|
# or nil if it is a note on some other object.
|
|
|
|
def merge_requests
|
|
|
|
if for_commit?
|
|
|
|
project.merge_requests.by_commit_sha(commit_id)
|
|
|
|
elsif for_merge_request?
|
|
|
|
MergeRequest.id_in(noteable_id)
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-13 10:23:12 -04:00
|
|
|
# override to return commits, which are not active record
|
|
|
|
def noteable
|
2017-12-06 10:57:10 -05:00
|
|
|
return commit if for_commit?
|
|
|
|
|
|
|
|
super
|
2021-04-26 08:09:44 -04:00
|
|
|
rescue StandardError
|
2017-12-06 10:57:10 -05:00
|
|
|
# Temp fix to prevent app crash
|
|
|
|
# if note commit id doesn't exist
|
2012-01-20 02:51:48 -05:00
|
|
|
nil
|
2012-01-04 15:19:41 -05:00
|
|
|
end
|
2012-02-09 21:59:39 -05:00
|
|
|
|
2013-03-25 07:58:09 -04:00
|
|
|
# FIXME: Hack for polymorphic associations with STI
|
2015-01-18 10:29:37 -05:00
|
|
|
# For more information visit http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html#label-Polymorphic+Associations
|
2015-10-12 08:30:44 -04:00
|
|
|
def noteable_type=(noteable_type)
|
|
|
|
super(noteable_type.to_s.classify.constantize.base_class.to_s)
|
2013-03-25 07:58:09 -04:00
|
|
|
end
|
2013-12-13 14:40:45 -05:00
|
|
|
|
2020-03-16 20:09:12 -04:00
|
|
|
def noteable_assignee_or_author?(user)
|
|
|
|
return false unless user
|
2021-02-24 07:10:54 -05:00
|
|
|
return false unless noteable.respond_to?(:author_id)
|
2020-03-16 20:09:12 -04:00
|
|
|
return noteable.assignee_or_author?(user) if [MergeRequest, Issue].include?(noteable.class)
|
|
|
|
|
|
|
|
noteable.author_id == user.id
|
|
|
|
end
|
|
|
|
|
2020-09-16 11:09:32 -04:00
|
|
|
def contributor?
|
|
|
|
project&.team&.contributor?(self.author_id)
|
2017-07-29 11:04:42 -04:00
|
|
|
end
|
|
|
|
|
2020-09-16 11:09:32 -04:00
|
|
|
def noteable_author?(noteable)
|
|
|
|
noteable.author == self.author
|
|
|
|
end
|
2017-08-29 09:46:40 -04:00
|
|
|
|
2020-09-16 11:09:32 -04:00
|
|
|
def project_name
|
|
|
|
project&.name
|
2017-08-15 09:21:27 -04:00
|
|
|
end
|
2017-08-29 09:46:40 -04:00
|
|
|
|
2020-05-27 05:08:30 -04:00
|
|
|
def confidential?(include_noteable: false)
|
|
|
|
return true if confidential
|
|
|
|
|
|
|
|
include_noteable && noteable.try(:confidential?)
|
2018-04-03 07:00:33 -04:00
|
|
|
end
|
|
|
|
|
2014-08-29 08:19:35 -04:00
|
|
|
def editable?
|
2016-04-16 15:09:08 -04:00
|
|
|
!system?
|
2014-08-29 08:19:35 -04:00
|
|
|
end
|
2015-12-02 02:48:21 -05:00
|
|
|
|
2021-03-09 10:08:59 -05:00
|
|
|
# We used `last_edited_at` as an alias of `updated_at` before.
|
|
|
|
# This makes it compatible with the previous way without data migration.
|
|
|
|
def last_edited_at
|
|
|
|
super || updated_at
|
|
|
|
end
|
|
|
|
|
|
|
|
# Since we used `updated_at` as `last_edited_at`, it could be touched by transforming / resolving a note.
|
2019-03-14 00:00:12 -04:00
|
|
|
# This makes sure it is only marked as edited when the note body is updated.
|
|
|
|
def edited?
|
|
|
|
return false if updated_by.blank?
|
|
|
|
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2016-04-16 15:09:08 -04:00
|
|
|
def award_emoji?
|
2016-06-20 13:15:44 -04:00
|
|
|
can_be_award_emoji? && contains_emoji_only?
|
2015-12-02 02:48:21 -05:00
|
|
|
end
|
|
|
|
|
2016-06-15 06:29:57 -04:00
|
|
|
def emoji_awardable?
|
|
|
|
!system?
|
|
|
|
end
|
|
|
|
|
2016-06-20 13:15:44 -04:00
|
|
|
def can_be_award_emoji?
|
2017-03-09 20:29:11 -05:00
|
|
|
noteable.is_a?(Awardable) && !part_of_discussion?
|
2015-12-05 16:09:52 -05:00
|
|
|
end
|
|
|
|
|
2015-12-02 02:48:21 -05:00
|
|
|
def contains_emoji_only?
|
2015-12-15 10:10:32 -05:00
|
|
|
note =~ /\A#{Banzai::Filter::EmojiFilter.emoji_pattern}\s?\Z/
|
2015-12-02 02:48:21 -05:00
|
|
|
end
|
|
|
|
|
2019-10-16 23:55:04 -04:00
|
|
|
def noteable_ability_name
|
2020-06-12 08:08:56 -04:00
|
|
|
if for_snippet?
|
|
|
|
'snippet'
|
|
|
|
elsif for_alert_mangement_alert?
|
|
|
|
'alert_management_alert'
|
2021-06-03 08:10:18 -04:00
|
|
|
elsif for_vulnerability?
|
|
|
|
'security_resource'
|
2020-06-12 08:08:56 -04:00
|
|
|
else
|
|
|
|
noteable_type.demodulize.underscore
|
|
|
|
end
|
2017-01-20 05:28:40 -05:00
|
|
|
end
|
|
|
|
|
2017-03-09 20:29:11 -05:00
|
|
|
def can_be_discussion_note?
|
2017-04-06 11:05:57 -04:00
|
|
|
self.noteable.supports_discussions? && !part_of_discussion?
|
2017-04-05 19:42:07 -04:00
|
|
|
end
|
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
def can_create_todo?
|
2020-08-12 23:10:13 -04:00
|
|
|
# Skip system notes, and notes on snippets
|
2018-02-28 02:48:23 -05:00
|
|
|
!system? && !for_snippet?
|
|
|
|
end
|
|
|
|
|
2017-03-09 20:29:11 -05:00
|
|
|
def discussion_class(noteable = nil)
|
|
|
|
# When commit notes are rendered on an MR's Discussion page, they are
|
2017-04-04 18:27:23 -04:00
|
|
|
# displayed in one discussion instead of individually.
|
|
|
|
# See also `#discussion_id` and `Discussion.override_discussion_id`.
|
2017-03-17 15:25:52 -04:00
|
|
|
if noteable && noteable != self.noteable
|
|
|
|
OutOfContextDiscussion
|
2017-03-09 20:29:11 -05:00
|
|
|
else
|
|
|
|
IndividualNoteDiscussion
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-04 18:27:23 -04:00
|
|
|
# See `Discussion.override_discussion_id` for details.
|
2017-03-09 20:29:11 -05:00
|
|
|
def discussion_id(noteable = nil)
|
2019-12-23 13:07:33 -05:00
|
|
|
discussion_class(noteable).override_discussion_id(self) || super() || ensure_discussion_id
|
2017-03-09 20:29:11 -05:00
|
|
|
end
|
|
|
|
|
2017-03-30 23:06:09 -04:00
|
|
|
# Returns a discussion containing just this note.
|
|
|
|
# This method exists as an alternative to `#discussion` to use when the methods
|
|
|
|
# we intend to call on the Discussion object don't require it to have all of its notes,
|
|
|
|
# and just depend on the first note or the type of discussion. This saves us a DB query.
|
2017-03-09 20:29:11 -05:00
|
|
|
def to_discussion(noteable = nil)
|
|
|
|
Discussion.build([self], noteable)
|
|
|
|
end
|
|
|
|
|
2017-03-30 23:06:09 -04:00
|
|
|
# Returns the entire discussion this note is part of.
|
|
|
|
# Consider using `#to_discussion` if we do not need to render the discussion
|
|
|
|
# and all its notes and if we don't care about the discussion's resolvability status.
|
2017-03-09 20:29:11 -05:00
|
|
|
def discussion
|
2020-07-16 08:09:22 -04:00
|
|
|
strong_memoize(:discussion) do
|
|
|
|
full_discussion = self.noteable.notes.find_discussion(self.discussion_id) if part_of_discussion?
|
|
|
|
full_discussion || to_discussion
|
|
|
|
end
|
2017-03-09 20:29:11 -05:00
|
|
|
end
|
|
|
|
|
2019-11-21 04:06:16 -05:00
|
|
|
def start_of_discussion?
|
|
|
|
discussion.first_note == self
|
|
|
|
end
|
|
|
|
|
2017-03-09 20:29:11 -05:00
|
|
|
def part_of_discussion?
|
2017-03-17 15:25:52 -04:00
|
|
|
!to_discussion.individual_note?
|
|
|
|
end
|
|
|
|
|
|
|
|
def in_reply_to?(other)
|
|
|
|
case other
|
|
|
|
when Note
|
|
|
|
if part_of_discussion?
|
|
|
|
in_reply_to?(other.noteable) && in_reply_to?(other.to_discussion)
|
|
|
|
else
|
|
|
|
in_reply_to?(other.noteable)
|
|
|
|
end
|
|
|
|
when Discussion
|
|
|
|
self.discussion_id == other.id
|
|
|
|
when Noteable
|
|
|
|
self.noteable == other
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2017-03-09 20:29:11 -05:00
|
|
|
end
|
|
|
|
|
2017-12-08 16:45:57 -05:00
|
|
|
def references
|
|
|
|
refs = [noteable]
|
|
|
|
|
2017-09-15 02:58:21 -04:00
|
|
|
if part_of_discussion?
|
2017-12-08 16:45:57 -05:00
|
|
|
refs += discussion.notes.take_while { |n| n.id < id }
|
2017-09-15 02:58:21 -04:00
|
|
|
end
|
|
|
|
|
2017-12-08 16:45:57 -05:00
|
|
|
refs
|
2017-09-15 02:58:21 -04:00
|
|
|
end
|
|
|
|
|
2021-07-08 05:09:33 -04:00
|
|
|
def bump_updated_at
|
|
|
|
# Instead of calling touch which is throttled via ThrottledTouch concern,
|
|
|
|
# we bump the updated_at column directly. This also prevents executing
|
|
|
|
# after_commit callbacks that we don't need.
|
|
|
|
update_column(:updated_at, Time.current)
|
|
|
|
end
|
|
|
|
|
2017-07-17 14:36:29 -04:00
|
|
|
def expire_etag_cache
|
2018-09-07 09:39:20 -04:00
|
|
|
noteable&.expire_note_etag_cache
|
2017-07-17 14:36:29 -04:00
|
|
|
end
|
|
|
|
|
2021-05-03 08:09:49 -04:00
|
|
|
def touch(*args, **kwargs)
|
2017-12-01 08:52:16 -05:00
|
|
|
# We're not using an explicit transaction here because this would in all
|
|
|
|
# cases result in all future queries going to the primary, even if no writes
|
|
|
|
# are performed.
|
|
|
|
#
|
|
|
|
# We touch the noteable first so its SELECT query can run before our writes,
|
|
|
|
# ensuring it runs on a secondary (if no prior write took place).
|
|
|
|
touch_noteable
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
# By default Rails will issue an "SELECT *" for the relation, which is
|
|
|
|
# overkill for just updating the timestamps. To work around this we manually
|
|
|
|
# touch the data so we can SELECT only the columns we need.
|
|
|
|
def touch_noteable
|
|
|
|
# Commits are not stored in the DB so we can't touch them.
|
|
|
|
return if for_commit?
|
|
|
|
|
|
|
|
assoc = association(:noteable)
|
|
|
|
|
|
|
|
noteable_object =
|
|
|
|
if assoc.loaded?
|
|
|
|
noteable
|
|
|
|
else
|
|
|
|
# If the object is not loaded (e.g. when notes are loaded async) we
|
|
|
|
# _only_ want the data we actually need.
|
|
|
|
assoc.scope.select(:id, :updated_at).take
|
|
|
|
end
|
|
|
|
|
|
|
|
noteable_object&.touch
|
2017-12-12 15:34:21 -05:00
|
|
|
|
2019-06-28 06:58:04 -04:00
|
|
|
# We return the noteable object so we can re-use it in EE for Elasticsearch.
|
2017-12-12 15:34:21 -05:00
|
|
|
noteable_object
|
2017-12-01 08:52:16 -05:00
|
|
|
end
|
|
|
|
|
2020-05-13 14:08:47 -04:00
|
|
|
def notify_after_create
|
|
|
|
noteable&.after_note_created(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
def notify_after_destroy
|
|
|
|
noteable&.after_note_destroyed(self)
|
|
|
|
end
|
|
|
|
|
2017-11-20 09:02:01 -05:00
|
|
|
def banzai_render_context(field)
|
2020-05-27 02:08:13 -04:00
|
|
|
super.merge(noteable: noteable, system_note: system?, label_url_method: noteable_label_url_method)
|
2017-11-20 09:02:01 -05:00
|
|
|
end
|
|
|
|
|
2018-04-19 12:22:23 -04:00
|
|
|
def retrieve_upload(_identifier, paths)
|
|
|
|
Upload.find_by(model: self, path: paths)
|
|
|
|
end
|
|
|
|
|
2019-10-17 08:07:33 -04:00
|
|
|
def resource_parent
|
2018-12-10 06:51:21 -05:00
|
|
|
project
|
|
|
|
end
|
|
|
|
|
2019-12-10 10:07:52 -05:00
|
|
|
def user_mentions
|
2020-02-13 19:09:07 -05:00
|
|
|
return Note.none unless noteable.present?
|
|
|
|
|
2019-12-10 10:07:52 -05:00
|
|
|
noteable.user_mentions.where(note: self)
|
|
|
|
end
|
|
|
|
|
2022-02-11 10:14:00 -05:00
|
|
|
def system_note_visible_for?(user)
|
2020-09-08 11:08:41 -04:00
|
|
|
return true unless system?
|
|
|
|
|
2022-02-11 10:14:00 -05:00
|
|
|
system_note_viewable_by?(user) && all_referenced_mentionables_allowed?(user)
|
2020-02-23 22:09:05 -05:00
|
|
|
end
|
|
|
|
|
2020-08-14 11:10:05 -04:00
|
|
|
def parent_user
|
|
|
|
noteable.author if for_personal_snippet?
|
|
|
|
end
|
|
|
|
|
2020-08-28 05:10:32 -04:00
|
|
|
def skip_notification?
|
2021-03-10 16:09:10 -05:00
|
|
|
review.present? || !author.can_trigger_notifications?
|
2020-08-28 05:10:32 -04:00
|
|
|
end
|
|
|
|
|
2021-07-23 02:08:47 -04:00
|
|
|
def post_processed_cache_key
|
2021-08-31 05:08:57 -04:00
|
|
|
cache_key_items = [cache_key, author&.cache_key]
|
2021-09-08 08:12:01 -04:00
|
|
|
cache_key_items << project.team.human_max_access(author&.id) if author.present?
|
2021-07-23 02:08:47 -04:00
|
|
|
cache_key_items << Digest::SHA1.hexdigest(redacted_note_html) if redacted_note_html.present?
|
|
|
|
|
|
|
|
cache_key_items.join(':')
|
|
|
|
end
|
|
|
|
|
2021-08-18 23:10:47 -04:00
|
|
|
override :user_mention_class
|
|
|
|
def user_mention_class
|
|
|
|
return if noteable.blank?
|
|
|
|
|
|
|
|
noteable.user_mention_class
|
|
|
|
end
|
|
|
|
|
|
|
|
override :user_mention_identifier
|
|
|
|
def user_mention_identifier
|
|
|
|
return if noteable.blank?
|
|
|
|
|
|
|
|
noteable.user_mention_identifier.merge({
|
|
|
|
note_id: id
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2021-12-01 16:13:44 -05:00
|
|
|
def show_outdated_changes?
|
|
|
|
return false unless for_merge_request?
|
|
|
|
return false unless system?
|
|
|
|
return false unless change_position&.line_range
|
|
|
|
|
|
|
|
change_position.line_range["end"] || change_position.line_range["start"]
|
|
|
|
end
|
|
|
|
|
2022-02-25 19:14:54 -05:00
|
|
|
def commands_changes
|
|
|
|
@commands_changes&.slice(
|
|
|
|
:due_date,
|
|
|
|
:label_ids,
|
|
|
|
:remove_label_ids,
|
|
|
|
:add_label_ids,
|
|
|
|
:canonical_issue_id,
|
|
|
|
:clone_with_notes,
|
|
|
|
:confidential,
|
|
|
|
:create_merge_request,
|
|
|
|
:add_contacts,
|
|
|
|
:remove_contacts,
|
|
|
|
:assignee_ids,
|
|
|
|
:milestone_id,
|
|
|
|
:time_estimate,
|
|
|
|
:spend_time,
|
|
|
|
:discussion_locked,
|
|
|
|
:merge,
|
|
|
|
:rebase,
|
|
|
|
:wip_event,
|
|
|
|
:target_branch,
|
|
|
|
:reviewer_ids,
|
|
|
|
:health_status,
|
|
|
|
:promote_to_epic,
|
|
|
|
:weight,
|
|
|
|
:emoji_award,
|
|
|
|
:todo_event,
|
|
|
|
:subscription_event,
|
|
|
|
:state_event,
|
|
|
|
:title,
|
|
|
|
:tag_message,
|
|
|
|
:tag_name
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2016-07-03 19:58:58 -04:00
|
|
|
private
|
|
|
|
|
2019-10-25 08:46:40 -04:00
|
|
|
def system_note_viewable_by?(user)
|
|
|
|
return true unless system_note_metadata
|
|
|
|
|
2022-02-11 10:14:00 -05:00
|
|
|
system_note_viewable_by_project_ability?(user) && system_note_viewable_by_group_ability?(user)
|
|
|
|
end
|
2019-10-25 08:46:40 -04:00
|
|
|
|
2022-02-11 10:14:00 -05:00
|
|
|
def system_note_viewable_by_project_ability?(user)
|
|
|
|
project_restriction = TYPES_RESTRICTED_BY_PROJECT_ABILITY[system_note_metadata.action.to_sym]
|
|
|
|
!project_restriction || Ability.allowed?(user, project_restriction, project)
|
|
|
|
end
|
|
|
|
|
|
|
|
def system_note_viewable_by_group_ability?(user)
|
|
|
|
group_restriction = TYPES_RESTRICTED_BY_GROUP_ABILITY[system_note_metadata.action.to_sym]
|
|
|
|
!group_restriction || Ability.allowed?(user, group_restriction, project&.group)
|
2019-10-25 08:46:40 -04:00
|
|
|
end
|
|
|
|
|
2016-07-03 19:58:58 -04:00
|
|
|
def keep_around_commit
|
|
|
|
project.repository.keep_around(self.commit_id)
|
|
|
|
end
|
2016-07-22 18:26:33 -04:00
|
|
|
|
|
|
|
def nullify_blank_type
|
|
|
|
self.type = nil if self.type.blank?
|
|
|
|
end
|
|
|
|
|
|
|
|
def nullify_blank_line_code
|
|
|
|
self.line_code = nil if self.line_code.blank?
|
|
|
|
end
|
2016-08-17 13:14:44 -04:00
|
|
|
|
|
|
|
def ensure_discussion_id
|
2019-12-23 13:07:33 -05:00
|
|
|
return if self.attribute_present?(:discussion_id)
|
2016-08-17 13:14:44 -04:00
|
|
|
|
2019-12-23 13:07:33 -05:00
|
|
|
self.discussion_id = derive_discussion_id
|
2016-08-17 13:14:44 -04:00
|
|
|
end
|
|
|
|
|
2019-12-23 13:07:33 -05:00
|
|
|
def derive_discussion_id
|
|
|
|
discussion_class.discussion_id(self)
|
2016-08-17 13:14:44 -04:00
|
|
|
end
|
2017-11-16 09:23:32 -05:00
|
|
|
|
2018-09-27 14:58:23 -04:00
|
|
|
def all_referenced_mentionables_allowed?(user)
|
2022-02-11 10:14:00 -05:00
|
|
|
return true unless system_note_with_references?
|
|
|
|
|
2018-09-27 14:58:23 -04:00
|
|
|
if user_visible_reference_count.present? && total_reference_count.present?
|
|
|
|
# if they are not equal, then there are private/confidential references as well
|
|
|
|
user_visible_reference_count > 0 && user_visible_reference_count == total_reference_count
|
|
|
|
else
|
2020-01-30 16:08:47 -05:00
|
|
|
refs = all_references(user)
|
2021-08-26 14:10:35 -04:00
|
|
|
refs.all.any? && refs.all_visible?
|
2018-09-27 14:58:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-16 09:23:32 -05:00
|
|
|
def force_cross_reference_regex_check?
|
|
|
|
return unless system?
|
|
|
|
|
2018-09-27 14:58:23 -04:00
|
|
|
system_note_metadata&.cross_reference_types&.include?(system_note_metadata&.action)
|
2017-11-16 09:23:32 -05:00
|
|
|
end
|
2019-10-11 17:05:59 -04:00
|
|
|
|
|
|
|
def does_not_exceed_notes_limit?
|
|
|
|
return unless noteable
|
|
|
|
|
|
|
|
errors.add(:base, _('Maximum number of comments exceeded')) if noteable.notes.count >= Noteable::MAX_NOTES_LIMIT
|
|
|
|
end
|
2020-05-27 02:08:13 -04:00
|
|
|
|
|
|
|
def noteable_label_url_method
|
|
|
|
for_merge_request? ? :project_merge_requests_url : :project_issues_url
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
Note.prepend_mod_with('Note')
|