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

169 lines
4.1 KiB
Ruby
Raw Normal View History

2011-10-16 21:07:10 +00:00
class Snippet < ActiveRecord::Base
2014-10-08 13:44:25 +00:00
include Gitlab::VisibilityLevel
include Linguist::BlobHelper
include CacheMarkdownField
include Participable
include Referable
include Sortable
2016-06-03 09:44:04 +00:00
include Awardable
include Mentionable
2011-10-20 19:00:00 +00: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 13:44:25 +00:00
default_value_for :visibility_level, Snippet::PRIVATE
belongs_to :author, class_name: 'User'
belongs_to :project
2013-03-25 11:58:09 +00:00
has_many :notes, as: :noteable, dependent: :destroy
2011-10-16 21:07:10 +00:00
2012-12-14 05:34:05 +00:00
delegate :name, :email, to: :author, prefix: true, allow_nil: true
2011-10-16 21:07:10 +00:00
2012-10-09 00:10:04 +00:00
validates :author, presence: true
2012-09-27 06:20:36 +00:00
validates :title, presence: true, length: { within: 0..255 }
2015-02-03 05:15:44 +00:00
validates :file_name,
length: { within: 0..255 },
2015-03-24 13:55:14 +00:00
format: { with: Gitlab::Regex.file_name_regex,
message: Gitlab::Regex.file_name_regex_message }
2016-06-16 18:55:04 +00:00
2013-01-22 15:10:00 +00:00
validates :content, presence: true
2014-10-08 13:44:25 +00:00
validates :visibility_level, inclusion: { in: Gitlab::VisibilityLevel.values }
2011-10-16 21:07:10 +00:00
2012-10-09 00:10:04 +00:00
# Scopes
2014-10-08 13:44:25 +00: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 20:23:12 +00:00
scope :fresh, -> { order("created_at DESC") }
2011-10-27 07:14:50 +00:00
participant :author
participant :notes_with_associations
def self.reference_prefix
'$'
end
# Pattern used to extract `$123` snippet references from text
#
# This pattern supports cross-project references.
def self.reference_pattern
@reference_pattern ||= %r{
(#{Project.reference_pattern})?
#{Regexp.escape(reference_prefix)}(?<snippet>\d+)
}x
end
def self.link_reference_pattern
@link_reference_pattern ||= super("snippets", /(?<snippet>\d+)/)
end
def to_reference(from_project = nil)
reference = "#{self.class.reference_prefix}#{id}"
if cross_project_reference?(from_project)
reference = project.to_reference + reference
end
reference
end
2011-10-16 21:07:10 +00:00
def self.content_types
[
2011-10-16 21:07:10 +00:00
".rb", ".py", ".pl", ".scala", ".c", ".cpp", ".java",
".haml", ".html", ".sass", ".scss", ".xml", ".php", ".erb",
".js", ".sh", ".coffee", ".yml", ".md"
]
end
2011-10-20 19:00:00 +00:00
2012-04-20 22:26:22 +00:00
def data
content
end
def hook_attrs
attributes
end
2012-04-20 22:26:22 +00:00
def size
0
end
# alias for compatibility with blobs and highlighting
def path
file_name
end
def name
2012-04-20 22:26:22 +00:00
file_name
end
def sanitized_file_name
file_name.gsub(/[^a-zA-Z0-9_\-\.]+/, '')
end
def mode
2012-04-20 22:26:22 +00:00
nil
2011-10-20 19:00:00 +00:00
end
2011-10-27 06:46:21 +00:00
2014-10-08 13:44:25 +00:00
def visibility_level_field
visibility_level
end
2014-10-08 13:44:25 +00:00
2016-04-14 10:44:35 +00:00
def no_highlighting?
content.lines.count > 1000
end
def notes_with_associations
notes.includes(:author)
end
class << self
# 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.
def search(query)
t = arel_table
pattern = "%#{query}%"
where(t[:title].matches(pattern).or(t[:file_name].matches(pattern)))
end
# 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.
def search_code(query)
table = Snippet.arel_table
pattern = "%#{query}%"
where(table[:content].matches(pattern))
end
def accessible_to(user)
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))
end
end
2011-10-16 21:07:10 +00:00
end