impress/app/models/swf_asset.rb

27 lines
619 B
Ruby

class SwfAsset < ActiveRecord::Base
set_inheritance_column 'inheritance_type'
belongs_to :zone
delegate :depth, :to => :zone
scope :for_json, includes(:zone)
scope :fitting_body_id, lambda { |body_id| where(arel_table[:body_id].in([body_id, 0])) }
def local_url
uri = URI.parse(url)
uri.host = RemoteImpressHost
pieces = uri.path.split('/')
uri.path = "/assets/swf/outfit/#{pieces[2]}/#{pieces[4..7].join('/')}"
uri.to_s
end
def as_json(options={})
{
:id => id,
:depth => depth,
:local_url => local_url,
:body_id => body_id
}
end
end