2012-11-19 19:24:05 +01:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: snippets
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# title :string(255)
|
|
|
|
# content :text
|
|
|
|
# author_id :integer not null
|
|
|
|
# project_id :integer not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# file_name :string(255)
|
|
|
|
# expires_at :datetime
|
|
|
|
#
|
|
|
|
|
2011-10-16 23:07:10 +02:00
|
|
|
class Snippet < ActiveRecord::Base
|
2012-04-21 00:26:22 +02:00
|
|
|
include Linguist::BlobHelper
|
2011-10-20 21:00:00 +02:00
|
|
|
|
2012-09-26 20:17:17 +02:00
|
|
|
attr_accessible :title, :content, :file_name, :expires_at
|
|
|
|
|
2011-10-16 23:07:10 +02:00
|
|
|
belongs_to :project
|
2012-08-11 00:07:50 +02:00
|
|
|
belongs_to :author, class_name: "User"
|
|
|
|
has_many :notes, as: :noteable, dependent: :destroy
|
2011-10-16 23:07:10 +02:00
|
|
|
|
2012-12-14 06:34:05 +01:00
|
|
|
delegate :name, :email, to: :author, prefix: true, allow_nil: true
|
2011-10-16 23:07:10 +02:00
|
|
|
|
2012-10-09 02:10:04 +02:00
|
|
|
validates :author, presence: true
|
|
|
|
validates :project, presence: true
|
2012-09-27 08:20:36 +02:00
|
|
|
validates :title, presence: true, length: { within: 0..255 }
|
|
|
|
validates :file_name, presence: true, length: { within: 0..255 }
|
|
|
|
validates :content, presence: true, length: { within: 0..10000 }
|
2011-10-16 23:07:10 +02:00
|
|
|
|
2012-10-09 02:10:04 +02:00
|
|
|
# Scopes
|
2011-10-27 09:14:50 +02:00
|
|
|
scope :fresh, order("created_at DESC")
|
2011-10-27 10:12:12 +02:00
|
|
|
scope :non_expired, where(["expires_at IS NULL OR expires_at > ?", Time.current])
|
2011-12-15 07:12:24 +01:00
|
|
|
scope :expired, where(["expires_at IS NOT NULL AND expires_at < ?", Time.current])
|
2011-10-27 09:14:50 +02:00
|
|
|
|
2011-10-16 23:07:10 +02:00
|
|
|
def self.content_types
|
2011-10-26 15:46:25 +02:00
|
|
|
[
|
2011-10-16 23:07:10 +02:00
|
|
|
".rb", ".py", ".pl", ".scala", ".c", ".cpp", ".java",
|
|
|
|
".haml", ".html", ".sass", ".scss", ".xml", ".php", ".erb",
|
|
|
|
".js", ".sh", ".coffee", ".yml", ".md"
|
|
|
|
]
|
|
|
|
end
|
2011-10-20 21:00:00 +02:00
|
|
|
|
2012-04-21 00:26:22 +02:00
|
|
|
def data
|
|
|
|
content
|
|
|
|
end
|
|
|
|
|
|
|
|
def size
|
|
|
|
0
|
|
|
|
end
|
|
|
|
|
2012-09-26 20:17:17 +02:00
|
|
|
def name
|
2012-04-21 00:26:22 +02:00
|
|
|
file_name
|
|
|
|
end
|
|
|
|
|
2012-09-26 20:17:17 +02:00
|
|
|
def mode
|
2012-04-21 00:26:22 +02:00
|
|
|
nil
|
2011-10-20 21:00:00 +02:00
|
|
|
end
|
2011-10-27 08:46:21 +02:00
|
|
|
|
|
|
|
def expired?
|
|
|
|
expires_at && expires_at < Time.current
|
|
|
|
end
|
2011-10-16 23:07:10 +02:00
|
|
|
end
|