2017-06-05 03:09:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 11:09:25 -07:00
|
|
|
class Api::V1::StreamingController < Api::BaseController
|
2017-06-05 03:09:29 -07:00
|
|
|
def index
|
2024-01-10 07:05:46 -08:00
|
|
|
if same_host?
|
2019-10-08 22:10:46 -07:00
|
|
|
not_found
|
2023-02-07 22:07:36 -08:00
|
|
|
else
|
2023-03-25 16:38:32 -07:00
|
|
|
redirect_to streaming_api_url, status: 301, allow_other_host: true
|
2017-06-05 03:09:29 -07:00
|
|
|
end
|
|
|
|
end
|
2019-10-08 22:10:46 -07:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2024-01-10 07:05:46 -08:00
|
|
|
def same_host?
|
|
|
|
base_url = Addressable::URI.parse(Rails.configuration.x.streaming_api_base_url)
|
|
|
|
request.host == base_url.host && request.port == (base_url.port || 80)
|
|
|
|
end
|
|
|
|
|
2019-10-08 22:10:46 -07:00
|
|
|
def streaming_api_url
|
|
|
|
Addressable::URI.parse(request.url).tap do |uri|
|
2024-01-02 04:27:51 -08:00
|
|
|
base_url = Addressable::URI.parse(Rails.configuration.x.streaming_api_base_url)
|
|
|
|
uri.host = base_url.host
|
|
|
|
uri.port = base_url.port
|
2019-10-08 22:10:46 -07:00
|
|
|
end.to_s
|
|
|
|
end
|
2017-06-05 03:09:29 -07:00
|
|
|
end
|