2011-10-16 17:07:10 -04:00
|
|
|
class Snippet < ActiveRecord::Base
|
2014-10-08 09:44:25 -04:00
|
|
|
include Gitlab::VisibilityLevel
|
2015-05-02 23:11:21 -04:00
|
|
|
include Linguist::BlobHelper
|
2016-10-06 17:17:11 -04:00
|
|
|
include CacheMarkdownField
|
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
|
2011-10-20 15:00:00 -04:00
|
|
|
|
2016-10-06 17:17:11 -04:00
|
|
|
cache_markdown_field :title, pipeline: :single_line
|
|
|
|
cache_markdown_field :content
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2014-10-08 09:44:25 -04:00
|
|
|
default_value_for :visibility_level, Snippet::PRIVATE
|
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
|
|
|
|
2012-08-10 18:07:50 -04:00
|
|
|
has_many :notes, as: :noteable, dependent: :destroy
|
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,
|
2016-12-02 07:54:57 -05:00
|
|
|
length: { maximum: 255 },
|
2015-03-24 09:55:14 -04:00
|
|
|
format: { with: Gitlab::Regex.file_name_regex,
|
|
|
|
message: Gitlab::Regex.file_name_regex_message }
|
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
|
2014-10-08 09:44:25 -04:00
|
|
|
scope :are_internal, -> { where(visibility_level: Snippet::INTERNAL) }
|
|
|
|
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]) }
|
2013-03-24 16:23:12 -04:00
|
|
|
scope :fresh, -> { order("created_at DESC") }
|
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
|
|
|
|
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
|
|
|
|
|
2016-12-21 11:41:33 -05:00
|
|
|
def to_reference(from_project = 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?
|
2016-12-21 11:41:33 -05:00
|
|
|
"#{project.to_reference(from_project, 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
|
|
|
|
2012-04-20 18:26:22 -04:00
|
|
|
def data
|
|
|
|
content
|
|
|
|
end
|
|
|
|
|
2015-03-05 13:38:23 -05:00
|
|
|
def hook_attrs
|
|
|
|
attributes
|
|
|
|
end
|
|
|
|
|
2012-04-20 18:26:22 -04:00
|
|
|
def size
|
|
|
|
0
|
|
|
|
end
|
|
|
|
|
2016-12-02 07:54:57 -05:00
|
|
|
def file_name
|
|
|
|
super.to_s
|
|
|
|
end
|
|
|
|
|
2016-06-22 14:50:58 -04:00
|
|
|
# alias for compatibility with blobs and highlighting
|
|
|
|
def path
|
|
|
|
file_name
|
|
|
|
end
|
|
|
|
|
2012-09-26 14:17:17 -04:00
|
|
|
def name
|
2012-04-20 18:26:22 -04:00
|
|
|
file_name
|
|
|
|
end
|
|
|
|
|
2014-12-12 06:28:48 -05:00
|
|
|
def sanitized_file_name
|
|
|
|
file_name.gsub(/[^a-zA-Z0-9_\-\.]+/, '')
|
|
|
|
end
|
|
|
|
|
2012-09-26 14:17:17 -04:00
|
|
|
def mode
|
2012-04-20 18:26:22 -04:00
|
|
|
nil
|
2011-10-20 15:00:00 -04:00
|
|
|
end
|
2011-10-27 02:46:21 -04:00
|
|
|
|
2014-10-08 09:44:25 -04:00
|
|
|
def visibility_level_field
|
|
|
|
visibility_level
|
2014-12-12 06:15:42 -05:00
|
|
|
end
|
2014-10-08 09:44:25 -04:00
|
|
|
|
2016-04-14 06:44:35 -04:00
|
|
|
def no_highlighting?
|
|
|
|
content.lines.count > 1000
|
|
|
|
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
|
|
|
|
|
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)
|
2016-03-04 06:01:21 -05:00
|
|
|
t = arel_table
|
2016-03-01 06:51:01 -05:00
|
|
|
pattern = "%#{query}%"
|
|
|
|
|
|
|
|
where(t[:title].matches(pattern).or(t[:file_name].matches(pattern)))
|
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)
|
2016-03-01 06:51:01 -05:00
|
|
|
table = Snippet.arel_table
|
|
|
|
pattern = "%#{query}%"
|
|
|
|
|
|
|
|
where(table[:content].matches(pattern))
|
2014-08-29 15:22:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def accessible_to(user)
|
2016-06-22 18:29:40 -04:00
|
|
|
return are_public unless user.present?
|
|
|
|
return all if user.admin?
|
|
|
|
|
|
|
|
where(
|
|
|
|
'visibility_level IN (:visibility_levels)
|
|
|
|
OR author_id = :author_id
|
|
|
|
OR project_id IN (:project_ids)',
|
|
|
|
visibility_levels: [Snippet::PUBLIC, Snippet::INTERNAL],
|
|
|
|
author_id: user.id,
|
|
|
|
project_ids: user.authorized_projects.select(:id))
|
2014-08-29 15:22:45 -04:00
|
|
|
end
|
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|