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

76 lines
1.7 KiB
Ruby
Raw Normal View History

2011-10-16 21:07:10 +00:00
class Snippet < ActiveRecord::Base
2012-04-20 22:26:22 +00:00
include Linguist::BlobHelper
2011-10-20 19:00:00 +00:00
2011-10-16 21:07:10 +00:00
belongs_to :project
belongs_to :author, :class_name => "User"
has_many :notes, :as => :noteable, :dependent => :destroy
2011-10-16 21:07:10 +00:00
2011-12-07 23:35:57 +00:00
delegate :name,
:email,
:to => :author,
:prefix => true
2011-10-16 21:07:10 +00:00
attr_protected :author, :author_id, :project, :project_id
validates_presence_of :project_id
validates_presence_of :author_id
validates :title,
:presence => true,
:length => { :within => 0..255 }
2011-10-16 21:07:10 +00:00
validates :file_name,
:presence => true,
:length => { :within => 0..255 }
validates :content,
:presence => true,
:length => { :within => 0..10000 }
2011-10-27 07:14:50 +00:00
scope :fresh, order("created_at DESC")
2011-10-27 08:12:12 +00:00
scope :non_expired, where(["expires_at IS NULL OR expires_at > ?", Time.current])
2011-12-15 06:12:24 +00:00
scope :expired, where(["expires_at IS NOT NULL AND expires_at < ?", Time.current])
2011-10-27 07:14:50 +00:00
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 size
0
end
def name
file_name
end
def mode
nil
2011-10-20 19:00:00 +00:00
end
2011-10-27 06:46:21 +00:00
def expired?
expires_at && expires_at < Time.current
end
2011-10-16 21:07:10 +00:00
end
2011-10-17 15:31:21 +00:00
# == Schema Information
#
# Table name: snippets
#
2012-06-26 18:23:09 +00:00
# id :integer(4) not null, primary key
2011-10-17 15:31:21 +00:00
# title :string(255)
# content :text
2012-06-26 18:23:09 +00:00
# author_id :integer(4) not null
# project_id :integer(4) not null
# created_at :datetime not null
# updated_at :datetime not null
2011-10-17 15:31:21 +00:00
# file_name :string(255)
2011-10-27 19:25:50 +00:00
# expires_at :datetime
2011-10-17 15:31:21 +00:00
#