debian-mirror-gitlab/app/models/note.rb

245 lines
6.2 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
class Note < ActiveRecord::Base
2016-06-02 11:05:42 +05:30
extend ActiveModel::Naming
2015-04-26 12:48:37 +05:30
include Gitlab::CurrentSettings
2015-09-11 14:41:01 +05:30
include Participable
2015-10-24 18:46:33 +05:30
include Mentionable
include Awardable
2016-06-22 15:30:34 +05:30
include Importable
2014-09-02 18:07:02 +05:30
2016-08-24 12:49:21 +05:30
# Attribute containing rendered and redacted Markdown as generated by
# Banzai::ObjectRenderer.
attr_accessor :note_html
# An Array containing the number of visible references as generated by
# Banzai::ObjectRenderer
attr_accessor :user_visible_reference_count
2014-09-02 18:07:02 +05:30
default_value_for :system, false
attr_mentionable :note, pipeline: :note
2015-10-24 18:46:33 +05:30
participant :author
2014-09-02 18:07:02 +05:30
belongs_to :project
2016-04-02 18:10:28 +05:30
belongs_to :noteable, polymorphic: true, touch: true
2014-09-02 18:07:02 +05:30
belongs_to :author, class_name: "User"
2015-09-11 14:41:01 +05:30
belongs_to :updated_by, class_name: "User"
2014-09-02 18:07:02 +05:30
2016-04-02 18:10:28 +05:30
has_many :todos, dependent: :destroy
2016-08-24 12:49:21 +05:30
has_many :events, as: :target, dependent: :destroy
2016-04-02 18:10:28 +05:30
2016-06-02 11:05:42 +05:30
delegate :gfm_reference, :local_reference, to: :noteable
2014-09-02 18:07:02 +05:30
delegate :name, to: :project, prefix: true
delegate :name, :email, to: :author, prefix: true
2016-06-02 11:05:42 +05:30
delegate :title, to: :noteable, allow_nil: true
2014-09-02 18:07:02 +05:30
validates :note, :project, presence: true
2015-04-26 12:48:37 +05:30
# Attachments are deprecated and are handled by Markdown uploader
validates :attachment, file_size: { maximum: :max_attachment_size }
2014-09-02 18:07:02 +05:30
validates :noteable_type, presence: true
2016-06-22 15:30:34 +05:30
validates :noteable_id, presence: true, unless: [:for_commit?, :importing?]
validates :commit_id, presence: true, if: :for_commit?
2015-11-26 14:37:03 +05:30
validates :author, presence: true
2014-09-02 18:07:02 +05:30
2016-06-22 15:30:34 +05:30
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
2014-09-02 18:07:02 +05:30
mount_uploader :attachment, AttachmentUploader
# Scopes
scope :for_commit_id, ->(commit_id) { where(noteable_type: "Commit", commit_id: commit_id) }
2015-04-26 12:48:37 +05:30
scope :system, ->{ where(system: true) }
scope :user, ->{ where(system: false) }
2014-09-02 18:07:02 +05:30
scope :common, ->{ where(noteable_type: ["", nil]) }
2015-04-26 12:48:37 +05:30
scope :fresh, ->{ order(created_at: :asc, id: :asc) }
2014-09-02 18:07:02 +05:30
scope :inc_author_project, ->{ includes(:project, :author) }
scope :inc_author, ->{ includes(:author) }
2016-08-24 12:49:21 +05:30
scope :inc_author_project_award_emoji, ->{ includes(:project, :author, :award_emoji) }
2014-09-02 18:07:02 +05:30
2016-08-24 12:49:21 +05:30
scope :diff_notes, ->{ where(type: ['LegacyDiffNote', 'DiffNote']) }
2016-06-02 11:05:42 +05:30
scope :non_diff_notes, ->{ where(type: ['Note', nil]) }
2015-10-24 18:46:33 +05:30
scope :with_associations, -> do
2016-08-24 12:49:21 +05:30
# FYI noteable cannot be loaded for LegacyDiffNote for commits
2015-10-24 18:46:33 +05:30
includes(:author, :noteable, :updated_by,
project: [:project_members, { group: [:group_members] }])
end
2016-08-24 12:49:21 +05:30
before_validation :nullify_blank_type, :nullify_blank_line_code
after_save :keep_around_commit
2014-09-02 18:07:02 +05:30
class << self
2016-06-02 11:05:42 +05:30
def model_name
ActiveModel::Name.new(self, nil, 'note')
end
def build_discussion_id(noteable_type, noteable_id)
[:discussion, noteable_type.try(:underscore), noteable_id].join("-")
end
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
def discussions
all.group_by(&:discussion_id).values
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
def grouped_diff_notes
2016-08-24 12:49:21 +05:30
diff_notes.select(&:active?).sort_by(&:created_at).group_by(&:line_code)
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
# Searches for notes matching the given query.
#
# This method uses ILIKE on PostgreSQL and LIKE on MySQL.
#
# query - The search query as a String.
# as_user - Limit results to those viewable by a specific user
2016-06-02 11:05:42 +05:30
#
# Returns an ActiveRecord::Relation.
def search(query, as_user: nil)
2016-06-02 11:05:42 +05:30
table = arel_table
pattern = "%#{query}%"
Note.joins('LEFT JOIN issues ON issues.id = noteable_id').
where(table[:note].matches(pattern)).
merge(Issue.visible_to_user(as_user))
2015-11-26 14:37:03 +05:30
end
2015-09-11 14:41:01 +05:30
end
2015-04-26 12:48:37 +05:30
2015-09-11 14:41:01 +05:30
def cross_reference?
system && SystemNoteService.cross_reference?(note)
2015-04-26 12:48:37 +05:30
end
2016-06-02 11:05:42 +05:30
def diff_note?
2014-09-02 18:07:02 +05:30
false
end
2016-06-02 11:05:42 +05:30
def legacy_diff_note?
false
2014-09-02 18:07:02 +05:30
end
2016-08-24 12:49:21 +05:30
def new_diff_note?
false
end
2016-06-02 11:05:42 +05:30
def active?
true
2015-04-26 12:48:37 +05:30
end
2016-06-02 11:05:42 +05:30
def discussion_id
@discussion_id ||=
if for_merge_request?
[:discussion, :note, id].join("-")
2015-04-26 12:48:37 +05:30
else
2016-06-02 11:05:42 +05:30
self.class.build_discussion_id(noteable_type, noteable_id || commit_id)
2015-04-26 12:48:37 +05:30
end
2016-01-29 22:53:50 +05:30
end
2016-06-02 11:05:42 +05:30
def max_attachment_size
current_application_settings.max_attachment_size.megabytes.to_i
2015-04-26 12:48:37 +05:30
end
2016-06-02 11:05:42 +05:30
def hook_attrs
attributes
2014-09-02 18:07:02 +05:30
end
def for_commit?
noteable_type == "Commit"
end
def for_issue?
noteable_type == "Issue"
end
def for_merge_request?
noteable_type == "MergeRequest"
end
2016-06-02 11:05:42 +05:30
def for_snippet?
2015-04-26 12:48:37 +05:30
noteable_type == "Snippet"
end
2014-09-02 18:07:02 +05:30
# override to return commits, which are not active record
def noteable
if for_commit?
2015-09-11 14:41:01 +05:30
project.commit(commit_id)
2014-09-02 18:07:02 +05:30
else
super
end
# Temp fix to prevent app crash
# if note commit id doesn't exist
rescue
nil
end
# FIXME: Hack for polymorphic associations with STI
2015-04-26 12:48:37 +05:30
# For more information visit http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html#label-Polymorphic+Associations
2015-10-24 18:46:33 +05:30
def noteable_type=(noteable_type)
super(noteable_type.to_s.classify.constantize.base_class.to_s)
2014-09-02 18:07:02 +05:30
end
# 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)
end
2015-04-26 12:48:37 +05:30
def editable?
!system?
2015-12-23 02:04:40 +05:30
end
def cross_reference_not_visible_for?(user)
2016-08-24 12:49:21 +05:30
cross_reference? && !has_referenced_mentionables?(user)
end
def has_referenced_mentionables?(user)
if user_visible_reference_count.present?
user_visible_reference_count > 0
else
referenced_mentionables(user).any?
end
end
def award_emoji?
2016-08-24 12:49:21 +05:30
can_be_award_emoji? && contains_emoji_only?
2015-12-23 02:04:40 +05:30
end
def emoji_awardable?
!system?
end
2015-12-23 02:04:40 +05:30
2016-08-24 12:49:21 +05:30
def can_be_award_emoji?
noteable.is_a?(Awardable)
2015-12-23 02:04:40 +05:30
end
def contains_emoji_only?
note =~ /\A#{Banzai::Filter::EmojiFilter.emoji_pattern}\s?\Z/
end
def award_emoji_name
2016-08-24 12:49:21 +05:30
note.match(Banzai::Filter::EmojiFilter.emoji_pattern)[1]
end
private
def keep_around_commit
project.repository.keep_around(self.commit_id)
end
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?
2015-04-26 12:48:37 +05:30
end
2014-09-02 18:07:02 +05:30
end