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

165 lines
4.3 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 CacheMarkdownField
include Noteable
include Participable
include Referable
include Sortable
2016-06-03 09:44:04 +00:00
include Awardable
include Mentionable
include Spammable
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
default_value_for(:visibility_level) { current_application_settings.default_snippet_visibility }
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
validates :title, presence: true, length: { maximum: 255 }
2015-02-03 05:15:44 +00:00
validates :file_name,
length: { maximum: 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
attr_spammable :title, spam_title: true
attr_spammable :content, spam_description: true
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, full: false)
reference = "#{self.class.reference_prefix}#{id}"
if project.present?
"#{project.to_reference(from_project, full: full)}#{reference}"
else
reference
end
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
2017-04-13 16:47:28 +00:00
def blob
@blob ||= Blob.decorate(SnippetBlob.new(self), nil)
2012-04-20 22:26:22 +00:00
end
def hook_attrs
attributes
end
def file_name
super.to_s
end
def sanitized_file_name
file_name.gsub(/[^a-zA-Z0-9_\-\.]+/, '')
end
2014-10-08 13:44:25 +00:00
def visibility_level_field
:visibility_level
end
2014-10-08 13:44:25 +00:00
def notes_with_associations
notes.includes(:author)
end
def check_for_spam?
visibility_level_changed?(to: Snippet::PUBLIC) ||
(public? && (title_changed? || content_changed?))
end
def spammable_entity_type
'snippet'
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