gitlab-org--gitlab-foss/app/models/note.rb

212 lines
5.4 KiB
Ruby
Raw Normal View History

2011-10-08 21:36:38 +00:00
class Note < ActiveRecord::Base
2016-05-10 22:41:46 +00:00
extend ActiveModel::Naming
include Gitlab::CurrentSettings
include Participable
include Mentionable
2016-05-25 19:07:36 +00:00
include Awardable
include Importable
default_value_for :system, false
attr_mentionable :note, pipeline: :note
participant :author
2011-10-08 21:36:38 +00:00
belongs_to :project
belongs_to :noteable, polymorphic: true, touch: true
2012-09-27 06:20:36 +00:00
belongs_to :author, class_name: "User"
belongs_to :updated_by, class_name: "User"
2011-10-08 21:36:38 +00:00
2016-02-20 13:59:59 +00:00
has_many :todos, dependent: :destroy
delegate :gfm_reference, :local_reference, to: :noteable
2012-09-27 06:20:36 +00:00
delegate :name, to: :project, prefix: true
delegate :name, :email, to: :author, prefix: true
delegate :title, to: :noteable, allow_nil: true
2012-12-01 11:19:16 +00:00
validates :note, :project, presence: true
2016-06-01 09:23:09 +00:00
# Attachments are deprecated and are handled by Markdown uploader
validates :attachment, file_size: { maximum: :max_attachment_size }
2011-10-08 21:36:38 +00:00
validates :noteable_type, presence: true
validates :noteable_id, presence: true, unless: [:for_commit?, :importing?]
validates :commit_id, presence: true, if: :for_commit?
2015-11-19 16:12:17 +00:00
validates :author, presence: true
validate unless: [:for_commit?, :importing?] do |note|
unless note.noteable.try(:project) == note.project
errors.add(:invalid_project, 'Note and noteable project mismatch')
end
end
2012-12-01 11:19:16 +00:00
mount_uploader :attachment, AttachmentUploader
2012-10-09 00:10:04 +00:00
# Scopes
2013-01-05 11:11:15 +00:00
scope :for_commit_id, ->(commit_id) { where(noteable_type: "Commit", commit_id: commit_id) }
scope :system, ->{ where(system: true) }
scope :user, ->{ where(system: false) }
scope :common, ->{ where(noteable_type: ["", nil]) }
2015-02-06 18:21:48 +00:00
scope :fresh, ->{ order(created_at: :asc, id: :asc) }
scope :inc_author_project, ->{ includes(:project, :author) }
scope :inc_author, ->{ includes(:author) }
2011-10-18 11:33:30 +00:00
2016-05-10 22:41:46 +00:00
scope :legacy_diff_notes, ->{ where(type: 'LegacyDiffNote') }
scope :non_diff_notes, ->{ where(type: ['Note', nil]) }
scope :with_associations, -> do
includes(:author, :noteable, :updated_by, :award_emoji,
2015-10-15 08:42:48 +00:00
project: [:project_members, { group: [:group_members] }])
end
2011-10-18 11:33:30 +00:00
2016-05-10 22:41:46 +00:00
before_validation :clear_blank_line_code!
class << self
2016-05-10 22:41:46 +00:00
def model_name
ActiveModel::Name.new(self, nil, 'note')
end
2016-05-10 22:41:46 +00:00
def build_discussion_id(noteable_type, noteable_id)
[:discussion, noteable_type.try(:underscore), noteable_id].join("-")
end
2016-05-10 22:41:46 +00:00
def discussions
all.group_by(&:discussion_id).values
end
2016-05-10 22:41:46 +00:00
def grouped_diff_notes
legacy_diff_notes.select(&:active?).sort_by(&:created_at).group_by(&:line_code)
end
2016-03-01 14:43:19 +00:00
# Searches for notes matching the given query.
#
# This method uses ILIKE on PostgreSQL and LIKE on MySQL.
#
2016-05-26 11:12:43 +00:00
# query - The search query as a String.
# as_user - Limit results to those viewable by a specific user
2016-03-01 14:43:19 +00:00
#
# Returns an ActiveRecord::Relation.
2016-05-26 11:12:43 +00:00
def search(query, as_user: nil)
table = arel_table
2016-03-01 14:43:19 +00:00
pattern = "%#{query}%"
Note.joins('LEFT JOIN issues ON issues.id = noteable_id').
where(table[:note].matches(pattern)).
merge(Issue.visible_to_user(as_user))
end
end
def cross_reference?
system && SystemNoteService.cross_reference?(note)
end
2016-05-10 22:41:46 +00:00
def diff_note?
false
end
2016-05-10 22:41:46 +00:00
def legacy_diff_note?
false
end
def active?
2016-05-13 19:53:31 +00:00
true
end
2016-05-10 22:41:46 +00:00
def discussion_id
@discussion_id ||=
if for_merge_request?
[:discussion, :note, id].join("-")
else
2016-05-10 22:41:46 +00:00
self.class.build_discussion_id(noteable_type, noteable_id || commit_id)
end
end
2016-05-10 22:41:46 +00:00
def max_attachment_size
current_application_settings.max_attachment_size.megabytes.to_i
end
2016-05-10 22:41:46 +00:00
def hook_attrs
attributes
2012-10-29 14:49:37 +00:00
end
def for_commit?
noteable_type == "Commit"
end
2012-10-30 02:27:36 +00:00
def for_issue?
noteable_type == "Issue"
end
2012-10-29 14:49:37 +00:00
def for_merge_request?
noteable_type == "MergeRequest"
end
def for_snippet?
noteable_type == "Snippet"
end
2012-10-13 14:23:12 +00:00
# override to return commits, which are not active record
def noteable
if for_commit?
2015-04-21 13:13:40 +00:00
project.commit(commit_id)
2012-03-14 13:31:31 +00:00
else
2012-10-13 14:23:12 +00:00
super
2012-01-04 20:19:41 +00:00
end
# Temp fix to prevent app crash
# if note commit id doesn't exist
2012-03-14 13:31:31 +00:00
rescue
2012-01-20 07:51:48 +00:00
nil
2012-01-04 20:19:41 +00:00
end
2012-02-10 02:59:39 +00:00
2013-03-25 11:58:09 +00:00
# FIXME: Hack for polymorphic associations with STI
# For more information visit http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html#label-Polymorphic+Associations
def noteable_type=(noteable_type)
super(noteable_type.to_s.classify.constantize.base_class.to_s)
2013-03-25 11:58:09 +00:00
end
2013-12-13 19:40:45 +00:00
# Reset notes events cache
#
# Since we do cache @event we need to reset cache in special cases:
# * when a note is updated
# * when a note is removed
# Events cache stored like events/23-20130109142513.
# The cache key includes updated_at timestamp.
# Thus it will automatically generate a new fragment
# when the event is updated because the key changes.
def reset_events_cache
Event.reset_event_cache_for(self)
2013-12-13 19:40:45 +00:00
end
2014-06-17 19:09:01 +00:00
def editable?
2016-04-16 19:09:08 +00:00
!system?
end
def cross_reference_not_visible_for?(user)
cross_reference? && referenced_mentionables(user).empty?
end
2016-04-16 19:09:08 +00:00
def award_emoji?
award_emoji_supported? && contains_emoji_only?
end
def emoji_awardable?
!system?
end
def clear_blank_line_code!
self.line_code = nil if self.line_code.blank?
end
2016-04-16 19:09:08 +00:00
def award_emoji_supported?
2016-06-01 09:23:09 +00:00
noteable.is_a?(Awardable)
end
def contains_emoji_only?
note =~ /\A#{Banzai::Filter::EmojiFilter.emoji_pattern}\s?\Z/
end
def award_emoji_name
original_name = note.match(Banzai::Filter::EmojiFilter.emoji_pattern)[1]
Gitlab::AwardEmoji.normalize_emoji_name(original_name)
end
2011-10-08 21:36:38 +00:00
end