2013-02-05 14:16:51 -05:00
|
|
|
require_dependency 'oneboxer'
|
|
|
|
|
|
|
|
class OneboxController < ApplicationController
|
|
|
|
|
|
|
|
def show
|
2013-03-21 20:47:44 -04:00
|
|
|
result = Oneboxer.preview(params[:url], invalidate_oneboxes: params[:refresh] == 'true')
|
2013-03-05 14:03:50 -05:00
|
|
|
result.strip! if result.present?
|
|
|
|
|
|
|
|
# If there is no result, return a 404
|
|
|
|
if result.blank?
|
|
|
|
render nothing: true, status: 404
|
|
|
|
else
|
|
|
|
render text: result
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|