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/api/asciicasts_controller.rb

50 lines
1.0 KiB
Ruby

module Api
class AsciicastsController < BaseController
before_action :load_asciicast, only: [:show]
respond_to :html, :js, only: [:show]
attr_reader :asciicast
def create
asciicast = asciicast_creator.create(attributes)
render text: asciicast_url(asciicast), status: :created,
location: asciicast
rescue ActiveRecord::RecordInvalid => e
render nothing: true, status: 422
end
def show
respond_with(asciicast) do |format|
format.html do
allow_iframe_requests
render locals: {
page: BareAsciicastPagePresenter.build(asciicast, params)
}, layout: 'bare'
end
end
end
private
def load_asciicast
@asciicast = Asciicast.find(params[:id])
end
def attributes
AsciicastParams.build(params[:asciicast], request.user_agent)
end
def asciicast_creator
AsciicastCreator.new
end
def allow_iframe_requests
response.headers.delete('X-Frame-Options')
end
end
end