2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-28 09:17:42 -04:00
|
|
|
class Snippet < ApplicationRecord
|
2014-10-08 09:44:25 -04:00
|
|
|
include Gitlab::VisibilityLevel
|
2018-09-20 10:14:46 -04:00
|
|
|
include Redactable
|
2016-10-06 17:17:11 -04:00
|
|
|
include CacheMarkdownField
|
2017-03-09 20:29:11 -05:00
|
|
|
include Noteable
|
2015-04-21 09:23:20 -04:00
|
|
|
include Participable
|
2015-05-02 23:11:21 -04:00
|
|
|
include Referable
|
|
|
|
include Sortable
|
2016-06-03 05:44:04 -04:00
|
|
|
include Awardable
|
2016-11-17 15:46:31 -05:00
|
|
|
include Mentionable
|
2017-02-01 13:15:59 -05:00
|
|
|
include Spammable
|
2017-05-18 08:24:34 -04:00
|
|
|
include Editable
|
2017-11-24 05:45:19 -05:00
|
|
|
include Gitlab::SQL::Pattern
|
2018-09-11 11:31:34 -04:00
|
|
|
include FromUnion
|
2011-10-20 15:00:00 -04:00
|
|
|
|
2016-10-06 17:17:11 -04:00
|
|
|
cache_markdown_field :title, pipeline: :single_line
|
2017-05-03 11:26:49 -04:00
|
|
|
cache_markdown_field :description
|
2016-10-06 17:17:11 -04:00
|
|
|
cache_markdown_field :content
|
|
|
|
|
2018-09-20 10:14:46 -04:00
|
|
|
redact_field :description
|
|
|
|
|
2017-05-03 23:54:25 -04:00
|
|
|
# Aliases to make application_helper#edited_time_ago_with_tooltip helper work properly with snippets.
|
|
|
|
# See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/10392/diffs#note_28719102
|
|
|
|
alias_attribute :last_edited_at, :updated_at
|
|
|
|
alias_attribute :last_edited_by, :updated_by
|
|
|
|
|
2016-10-06 17:17:11 -04:00
|
|
|
# If file_name changes, it invalidates content
|
|
|
|
alias_method :default_content_html_invalidator, :content_html_invalidated?
|
|
|
|
def content_html_invalidated?
|
|
|
|
default_content_html_invalidator || file_name_changed?
|
|
|
|
end
|
|
|
|
|
2018-02-02 13:39:55 -05:00
|
|
|
default_value_for(:visibility_level) { Gitlab::CurrentSettings.default_snippet_visibility }
|
2014-03-17 09:50:16 -04:00
|
|
|
|
2015-05-02 23:14:31 -04:00
|
|
|
belongs_to :author, class_name: 'User'
|
|
|
|
belongs_to :project
|
2013-03-25 07:58:09 -04:00
|
|
|
|
2017-06-08 11:16:27 -04:00
|
|
|
has_many :notes, as: :noteable, dependent: :destroy # rubocop:disable Cop/ActiveRecordDependent
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2012-12-14 00:34:05 -05:00
|
|
|
delegate :name, :email, to: :author, prefix: true, allow_nil: true
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2012-10-08 20:10:04 -04:00
|
|
|
validates :author, presence: true
|
2016-12-02 07:54:57 -05:00
|
|
|
validates :title, presence: true, length: { maximum: 255 }
|
2015-02-03 00:15:44 -05:00
|
|
|
validates :file_name,
|
2017-07-05 12:01:38 -04:00
|
|
|
length: { maximum: 255 }
|
2016-06-16 14:55:04 -04:00
|
|
|
|
2013-01-22 10:10:00 -05:00
|
|
|
validates :content, presence: true
|
2014-10-08 09:44:25 -04:00
|
|
|
validates :visibility_level, inclusion: { in: Gitlab::VisibilityLevel.values }
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2012-10-08 20:10:04 -04:00
|
|
|
# Scopes
|
2019-01-16 07:09:29 -05:00
|
|
|
scope :are_internal, -> { where(visibility_level: Snippet::INTERNAL) }
|
2014-10-08 09:44:25 -04:00
|
|
|
scope :are_private, -> { where(visibility_level: Snippet::PRIVATE) }
|
|
|
|
scope :are_public, -> { where(visibility_level: Snippet::PUBLIC) }
|
|
|
|
scope :public_and_internal, -> { where(visibility_level: [Snippet::PUBLIC, Snippet::INTERNAL]) }
|
2019-01-16 07:09:29 -05:00
|
|
|
scope :fresh, -> { order("created_at DESC") }
|
2018-07-16 12:18:52 -04:00
|
|
|
scope :inc_relations_for_view, -> { includes(author: :status) }
|
2011-10-27 03:14:50 -04:00
|
|
|
|
2016-05-26 07:38:28 -04:00
|
|
|
participant :author
|
|
|
|
participant :notes_with_associations
|
2015-04-21 09:23:20 -04:00
|
|
|
|
2017-02-01 13:15:59 -05:00
|
|
|
attr_spammable :title, spam_title: true
|
|
|
|
attr_spammable :content, spam_description: true
|
|
|
|
|
Rewrite SnippetsFinder to improve performance
This completely rewrites the SnippetsFinder class from the ground up in
order to improve its performance. The old code was beyond salvaging. It
was complex, included various Rails 5 workarounds, comments that
shouldn't be necessary, and most important of all: it produced a really
poorly performing database query.
As a result, I opted for rewriting the finder from scratch, instead of
trying to patch the existing code. Instead of trying to reuse as many
existing methods as possible, I opted for defining new methods
specifically meant for the SnippetsFinder. This requires some extra code
here and there, but allows us to have much more control over the
resulting SQL queries. It is these changes that then allow us to produce
a _much_ more efficient query.
To illustrate how bad the old query was, we will use my own snippets as
an example. Currently I have 52 snippets, most of which are global ones.
To retrieve these, you would run the following Ruby code:
user = User.find_by(username: 'yorickpeterse')
SnippetsFinder.new(user, author: user).execute
On GitLab.com the resulting query will take between 10 and 15 seconds to
run, producing the query plan found at
https://explain.depesz.com/s/Y5IX. Apart from the long execution time,
the total number of buffers (the sum of all shared hits) is around 185
GB, though the real number is probably (hopefully) much lower as I doubt
simply summing these numbers produces the true total number of buffers
used.
The new query's plan can be found at https://explain.depesz.com/s/wHdN,
and this query takes between 10 and 100-ish milliseconds to run. The
total number of buffers used is only about 30 MB.
Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/52639
2018-10-25 11:35:31 -04:00
|
|
|
def self.with_optional_visibility(value = nil)
|
|
|
|
if value
|
|
|
|
where(visibility_level: value)
|
|
|
|
else
|
|
|
|
all
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.only_global_snippets
|
|
|
|
where(project_id: nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.only_include_projects_visible_to(current_user = nil)
|
|
|
|
levels = Gitlab::VisibilityLevel.levels_for_user(current_user)
|
|
|
|
|
|
|
|
joins(:project).where('projects.visibility_level IN (?)', levels)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.only_include_projects_with_snippets_enabled(include_private: false)
|
|
|
|
column = ProjectFeature.access_level_attribute(:snippets)
|
|
|
|
levels = [ProjectFeature::ENABLED, ProjectFeature::PUBLIC]
|
|
|
|
|
|
|
|
levels << ProjectFeature::PRIVATE if include_private
|
|
|
|
|
|
|
|
joins(project: :project_feature)
|
|
|
|
.where(project_features: { column => levels })
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.only_include_authorized_projects(current_user)
|
|
|
|
where(
|
|
|
|
'EXISTS (?)',
|
|
|
|
ProjectAuthorization
|
|
|
|
.select(1)
|
|
|
|
.where('project_id = snippets.project_id')
|
|
|
|
.where(user_id: current_user.id)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.for_project_with_user(project, user = nil)
|
|
|
|
return none unless project.snippets_visible?(user)
|
|
|
|
|
|
|
|
if user && project.team.member?(user)
|
|
|
|
project.snippets
|
|
|
|
else
|
|
|
|
project.snippets.public_to_user(user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.visible_to_or_authored_by(user)
|
|
|
|
where(
|
|
|
|
'snippets.visibility_level IN (?) OR snippets.author_id = ?',
|
|
|
|
Gitlab::VisibilityLevel.levels_for_user(user),
|
|
|
|
user.id
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2015-05-02 23:11:21 -04:00
|
|
|
def self.reference_prefix
|
|
|
|
'$'
|
|
|
|
end
|
|
|
|
|
2015-05-14 16:59:39 -04:00
|
|
|
# Pattern used to extract `$123` snippet references from text
|
|
|
|
#
|
|
|
|
# This pattern supports cross-project references.
|
|
|
|
def self.reference_pattern
|
2016-03-24 11:41:48 -04:00
|
|
|
@reference_pattern ||= %r{
|
2015-12-01 09:51:27 -05:00
|
|
|
(#{Project.reference_pattern})?
|
|
|
|
#{Regexp.escape(reference_prefix)}(?<snippet>\d+)
|
2015-05-14 16:59:39 -04:00
|
|
|
}x
|
|
|
|
end
|
|
|
|
|
2015-11-30 15:14:46 -05:00
|
|
|
def self.link_reference_pattern
|
2016-03-24 11:41:48 -04:00
|
|
|
@link_reference_pattern ||= super("snippets", /(?<snippet>\d+)/)
|
2015-11-30 15:14:46 -05:00
|
|
|
end
|
|
|
|
|
2017-11-22 08:20:35 -05:00
|
|
|
def to_reference(from = nil, full: false)
|
2015-05-02 23:11:21 -04:00
|
|
|
reference = "#{self.class.reference_prefix}#{id}"
|
|
|
|
|
2016-11-02 19:49:13 -04:00
|
|
|
if project.present?
|
2017-11-22 08:20:35 -05:00
|
|
|
"#{project.to_reference(from, full: full)}#{reference}"
|
2016-11-02 19:49:13 -04:00
|
|
|
else
|
|
|
|
reference
|
2015-05-02 23:11:21 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-16 17:07:10 -04:00
|
|
|
def self.content_types
|
2011-10-26 09:46:25 -04:00
|
|
|
[
|
2011-10-16 17:07:10 -04:00
|
|
|
".rb", ".py", ".pl", ".scala", ".c", ".cpp", ".java",
|
|
|
|
".haml", ".html", ".sass", ".scss", ".xml", ".php", ".erb",
|
|
|
|
".js", ".sh", ".coffee", ".yml", ".md"
|
|
|
|
]
|
|
|
|
end
|
2011-10-20 15:00:00 -04:00
|
|
|
|
2017-04-13 12:47:28 -04:00
|
|
|
def blob
|
|
|
|
@blob ||= Blob.decorate(SnippetBlob.new(self), nil)
|
2012-04-20 18:26:22 -04:00
|
|
|
end
|
|
|
|
|
2015-03-05 13:38:23 -05:00
|
|
|
def hook_attrs
|
|
|
|
attributes
|
|
|
|
end
|
|
|
|
|
2016-12-02 07:54:57 -05:00
|
|
|
def file_name
|
|
|
|
super.to_s
|
|
|
|
end
|
|
|
|
|
2014-12-12 06:28:48 -05:00
|
|
|
def sanitized_file_name
|
|
|
|
file_name.gsub(/[^a-zA-Z0-9_\-\.]+/, '')
|
|
|
|
end
|
|
|
|
|
2014-10-08 09:44:25 -04:00
|
|
|
def visibility_level_field
|
2017-03-01 15:23:00 -05:00
|
|
|
:visibility_level
|
2014-12-12 06:15:42 -05:00
|
|
|
end
|
2014-10-08 09:44:25 -04:00
|
|
|
|
2018-12-11 01:28:06 -05:00
|
|
|
def embeddable?
|
2018-12-11 01:32:25 -05:00
|
|
|
ability = project_id? ? :read_project_snippet : :read_personal_snippet
|
|
|
|
|
|
|
|
Ability.allowed?(nil, ability, self)
|
2018-12-11 01:28:06 -05:00
|
|
|
end
|
|
|
|
|
2016-05-26 07:38:28 -04:00
|
|
|
def notes_with_associations
|
2016-06-03 14:47:09 -04:00
|
|
|
notes.includes(:author)
|
2016-05-26 07:38:28 -04:00
|
|
|
end
|
|
|
|
|
2017-02-01 13:15:59 -05:00
|
|
|
def check_for_spam?
|
2017-03-20 22:37:29 -04:00
|
|
|
visibility_level_changed?(to: Snippet::PUBLIC) ||
|
|
|
|
(public? && (title_changed? || content_changed?))
|
2017-02-01 13:15:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def spammable_entity_type
|
|
|
|
'snippet'
|
|
|
|
end
|
|
|
|
|
2014-08-29 15:22:45 -04:00
|
|
|
class << self
|
2016-03-01 06:51:01 -05:00
|
|
|
# Searches for snippets with a matching title or file name.
|
|
|
|
#
|
|
|
|
# This method uses ILIKE on PostgreSQL and LIKE on MySQL.
|
|
|
|
#
|
|
|
|
# query - The search query as a String.
|
|
|
|
#
|
|
|
|
# Returns an ActiveRecord::Relation.
|
2014-08-29 15:22:45 -04:00
|
|
|
def search(query)
|
2017-11-24 06:24:24 -05:00
|
|
|
fuzzy_search(query, [:title, :file_name])
|
2014-08-29 15:22:45 -04:00
|
|
|
end
|
|
|
|
|
2016-03-01 06:51:01 -05:00
|
|
|
# Searches for snippets with matching content.
|
|
|
|
#
|
|
|
|
# This method uses ILIKE on PostgreSQL and LIKE on MySQL.
|
|
|
|
#
|
|
|
|
# query - The search query as a String.
|
|
|
|
#
|
|
|
|
# Returns an ActiveRecord::Relation.
|
2014-08-29 15:22:45 -04:00
|
|
|
def search_code(query)
|
2017-11-24 06:24:24 -05:00
|
|
|
fuzzy_search(query, [:content])
|
2014-08-29 15:22:45 -04:00
|
|
|
end
|
2018-02-28 02:48:23 -05:00
|
|
|
|
|
|
|
def parent_class
|
|
|
|
::Project
|
|
|
|
end
|
2014-08-29 15:22:45 -04:00
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|