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

149 lines
3.6 KiB
Ruby
Raw Normal View History

2012-11-19 18:24:05 +00:00
# == Schema Information
#
# Table name: snippets
#
2014-10-09 15:22:20 +00:00
# id :integer not null, primary key
# title :string(255)
# content :text
# author_id :integer not null
# project_id :integer
# created_at :datetime
# updated_at :datetime
# file_name :string(255)
# type :string(255)
# visibility_level :integer default(0), not null
2013-06-19 12:40:33 +00:00
#
2012-11-19 18:24:05 +00:00
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 Participable
include Referable
include Sortable
2011-10-20 19:00:00 +00:00
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 }
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, :notes
def self.reference_prefix
'$'
end
# Pattern used to extract `$123` snippet references from text
#
# This pattern supports cross-project references.
def self.reference_pattern
%r{
(#{Project.reference_pattern})?
#{Regexp.escape(reference_prefix)}(?<snippet>\d+)
}x
end
def self.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
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
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)
2014-10-08 13:44:25 +00:00
where('visibility_level IN (?) OR author_id = ?', [Snippet::INTERNAL, Snippet::PUBLIC], user)
end
end
2011-10-16 21:07:10 +00:00
end