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/controllers/oembed_controller.rb

71 lines
1.6 KiB
Ruby

class OembedController < ApplicationController
def show
url = URI.parse(params[:url])
if url.path =~ %r{^/a/(\d+)$}
id = $1
asciicast = AsciicastDecorator.new(Asciicast.find(id))
oembed = oembed_response(asciicast)
respond_to do |format|
format.json do
render json: oembed
end
format.xml do
render xml: oembed.to_xml(root: 'oembed')
end
end
else
head :bad_request
end
end
private
def oembed_response(asciicast)
width, height = asciicast.image_width, asciicast.image_height
if params[:maxwidth]
width, height = size_smaller_than(width, height, params[:maxwidth], params[:maxheight])
end
oembed = {
type: 'rich',
version: 1.0,
title: asciicast.title,
author_name: asciicast.user.display_name,
author_url: profile_url(asciicast.user),
provider_name: 'asciinema',
provider_url: root_url,
thumbnail_url: asciicast.image_url,
thumbnail_width: width,
thumbnail_height: height,
html: render_html(asciicast, width),
width: width,
height: height,
}
end
def render_html(asciicast, width)
render_to_string(
template: 'oembed/show.html.erb',
layout: false,
locals: { asciicast: asciicast, width: width }
).chomp
end
def size_smaller_than(width, height, max_width, max_height)
fw = Rational(max_width, width)
fh = Rational(max_height, height)
if fw > 1 && fh > 1
[width, height]
else
f = [fw, fh].min
[(Rational(width) * f).to_i, (Rational(height) * f).to_i]
end
end
end