46 lines
1.4 KiB
Ruby
46 lines
1.4 KiB
Ruby
class Asciicast < ActiveRecord::Base
|
|
MAX_DELAY = 5.0
|
|
|
|
mount_uploader :stdin_data, StdinDataUploader
|
|
mount_uploader :stdin_timing, StdinTimingUploader
|
|
mount_uploader :stdout_data, StdoutDataUploader
|
|
mount_uploader :stdout_timing, StdoutTimingUploader
|
|
mount_uploader :stdout_frames, StdoutFramesUploader
|
|
|
|
serialize :snapshot, JSON
|
|
|
|
validates :stdout_data, :stdout_timing, :presence => true
|
|
validates :terminal_columns, :terminal_lines, :duration, :presence => true
|
|
|
|
belongs_to :user
|
|
has_many :comments, -> { order(:created_at) }, :dependent => :destroy
|
|
has_many :likes, :dependent => :destroy
|
|
|
|
scope :featured, -> { where(featured: true) }
|
|
scope :by_recency, -> { order("created_at DESC") }
|
|
scope :latest_limited, -> (n) { by_recency.limit(n).includes(:user) }
|
|
scope :latest_featured_limited, -> (n) {
|
|
featured.by_recency.limit(n).includes(:user)
|
|
}
|
|
|
|
attr_accessible :title, :description, :time_compression
|
|
|
|
def self.cache_key
|
|
timestamps = scoped.select(:updated_at).map { |o| o.updated_at.to_i }
|
|
Digest::MD5.hexdigest timestamps.join('/')
|
|
end
|
|
|
|
def stdout
|
|
@stdout ||= BufferedStdout.new(stdout_data.decompressed_path,
|
|
stdout_timing.decompressed_path).lazy
|
|
end
|
|
|
|
def with_terminal
|
|
terminal = Terminal.new(terminal_columns, terminal_lines)
|
|
yield(terminal)
|
|
ensure
|
|
terminal.release if terminal
|
|
end
|
|
|
|
end
|