You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/app/models/asciicast.rb

61 lines
1.7 KiB
Ruby

13 years ago
class Asciicast < ActiveRecord::Base
ORDER_MODES = { recency: 'created_at', popularity: 'views_count' }
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
13 years ago
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 self.paginate(page, per_page)
page(page).per(per_page)
end
def self.for_category_ordered(category, order)
collection = all
if category == :featured
collection = collection.featured
end
collection.order("#{ORDER_MODES[order]} DESC")
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
13 years ago
end