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