2011-10-16 23:07:10 +02:00
|
|
|
class Snippet < ActiveRecord::Base
|
2011-10-20 21:00:00 +02:00
|
|
|
include Utils::Colorize
|
|
|
|
|
2011-10-16 23:07:10 +02:00
|
|
|
belongs_to :project
|
|
|
|
belongs_to :author, :class_name => "User"
|
|
|
|
has_many :notes, :as => :noteable
|
|
|
|
|
|
|
|
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 }
|
|
|
|
|
|
|
|
validates :file_name,
|
|
|
|
:presence => true,
|
|
|
|
:length => { :within => 0..255 }
|
|
|
|
|
|
|
|
validates :content,
|
|
|
|
:presence => true,
|
|
|
|
:length => { :within => 0..10000 }
|
|
|
|
|
|
|
|
|
|
|
|
def self.content_types
|
|
|
|
[
|
|
|
|
".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
|
|
|
|
|
|
|
def colorize
|
|
|
|
ft = handle_file_type(file_name)
|
|
|
|
Albino.colorize(content, ft, :html, 'utf-8', "linenos=True")
|
|
|
|
end
|
2011-10-16 23:07:10 +02:00
|
|
|
end
|
2011-10-17 17:31:21 +02: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
|
|
|
|
# updated_at :datetime
|
|
|
|
# file_name :string(255)
|
|
|
|
#
|
|
|
|
|