mirror of
https://github.com/LukeHagar/plexruby.git
synced 2025-12-06 12:47:44 +00:00
175 lines
6.7 KiB
Ruby
175 lines
6.7 KiB
Ruby
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
|
|
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
require 'faraday'
|
|
require 'faraday/multipart'
|
|
require 'sorbet-runtime'
|
|
|
|
module OpenApiSDK
|
|
extend T::Sig
|
|
class Sessions
|
|
extend T::Sig
|
|
# API Calls that perform search operations with Plex Media Server Sessions
|
|
#
|
|
|
|
sig { params(sdk_config: SDKConfiguration).void }
|
|
def initialize(sdk_config)
|
|
@sdk_configuration = sdk_config
|
|
end
|
|
|
|
|
|
sig { returns(::OpenApiSDK::Operations::GetSessionsResponse) }
|
|
def get_sessions
|
|
# get_sessions - Get Active Sessions
|
|
# This will retrieve the "Now Playing" Information of the PMS.
|
|
url, params = @sdk_configuration.get_server_details
|
|
base_url = Utils.template_url(url, params)
|
|
url = "#{base_url}/status/sessions"
|
|
headers = {}
|
|
headers['Accept'] = 'application/json'
|
|
headers['user-agent'] = @sdk_configuration.user_agent
|
|
|
|
r = @sdk_configuration.client.get(url) do |req|
|
|
req.headers = headers
|
|
Utils.configure_request_security(req, @sdk_configuration.security) if !@sdk_configuration.nil? && !@sdk_configuration.security.nil?
|
|
end
|
|
|
|
content_type = r.headers.fetch('Content-Type', 'application/octet-stream')
|
|
|
|
res = ::OpenApiSDK::Operations::GetSessionsResponse.new(
|
|
status_code: r.status, content_type: content_type, raw_response: r
|
|
)
|
|
if r.status == 200
|
|
if Utils.match_content_type(content_type, 'application/json')
|
|
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Operations::GetSessionsResponseBody)
|
|
res.two_hundred_application_json_object = out
|
|
end
|
|
elsif r.status == 400
|
|
elsif r.status == 401
|
|
if Utils.match_content_type(content_type, 'application/json')
|
|
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Operations::GetSessionsSessionsResponseBody)
|
|
res.four_hundred_and_one_application_json_object = out
|
|
end
|
|
end
|
|
res
|
|
end
|
|
|
|
|
|
sig { returns(::OpenApiSDK::Operations::GetSessionHistoryResponse) }
|
|
def get_session_history
|
|
# get_session_history - Get Session History
|
|
# This will Retrieve a listing of all history views.
|
|
url, params = @sdk_configuration.get_server_details
|
|
base_url = Utils.template_url(url, params)
|
|
url = "#{base_url}/status/sessions/history/all"
|
|
headers = {}
|
|
headers['Accept'] = 'application/json'
|
|
headers['user-agent'] = @sdk_configuration.user_agent
|
|
|
|
r = @sdk_configuration.client.get(url) do |req|
|
|
req.headers = headers
|
|
Utils.configure_request_security(req, @sdk_configuration.security) if !@sdk_configuration.nil? && !@sdk_configuration.security.nil?
|
|
end
|
|
|
|
content_type = r.headers.fetch('Content-Type', 'application/octet-stream')
|
|
|
|
res = ::OpenApiSDK::Operations::GetSessionHistoryResponse.new(
|
|
status_code: r.status, content_type: content_type, raw_response: r
|
|
)
|
|
if r.status == 200
|
|
if Utils.match_content_type(content_type, 'application/json')
|
|
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Operations::GetSessionHistoryResponseBody)
|
|
res.two_hundred_application_json_object = out
|
|
end
|
|
elsif r.status == 400
|
|
elsif r.status == 401
|
|
if Utils.match_content_type(content_type, 'application/json')
|
|
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Operations::GetSessionHistorySessionsResponseBody)
|
|
res.four_hundred_and_one_application_json_object = out
|
|
end
|
|
end
|
|
res
|
|
end
|
|
|
|
|
|
sig { returns(::OpenApiSDK::Operations::GetTranscodeSessionsResponse) }
|
|
def get_transcode_sessions
|
|
# get_transcode_sessions - Get Transcode Sessions
|
|
# Get Transcode Sessions
|
|
url, params = @sdk_configuration.get_server_details
|
|
base_url = Utils.template_url(url, params)
|
|
url = "#{base_url}/transcode/sessions"
|
|
headers = {}
|
|
headers['Accept'] = 'application/json'
|
|
headers['user-agent'] = @sdk_configuration.user_agent
|
|
|
|
r = @sdk_configuration.client.get(url) do |req|
|
|
req.headers = headers
|
|
Utils.configure_request_security(req, @sdk_configuration.security) if !@sdk_configuration.nil? && !@sdk_configuration.security.nil?
|
|
end
|
|
|
|
content_type = r.headers.fetch('Content-Type', 'application/octet-stream')
|
|
|
|
res = ::OpenApiSDK::Operations::GetTranscodeSessionsResponse.new(
|
|
status_code: r.status, content_type: content_type, raw_response: r
|
|
)
|
|
if r.status == 200
|
|
if Utils.match_content_type(content_type, 'application/json')
|
|
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Operations::GetTranscodeSessionsResponseBody)
|
|
res.two_hundred_application_json_object = out
|
|
end
|
|
elsif r.status == 400
|
|
elsif r.status == 401
|
|
if Utils.match_content_type(content_type, 'application/json')
|
|
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Operations::GetTranscodeSessionsSessionsResponseBody)
|
|
res.four_hundred_and_one_application_json_object = out
|
|
end
|
|
end
|
|
res
|
|
end
|
|
|
|
|
|
sig { params(session_key: ::String).returns(::OpenApiSDK::Operations::StopTranscodeSessionResponse) }
|
|
def stop_transcode_session(session_key)
|
|
# stop_transcode_session - Stop a Transcode Session
|
|
# Stop a Transcode Session
|
|
request = ::OpenApiSDK::Operations::StopTranscodeSessionRequest.new(
|
|
|
|
session_key: session_key
|
|
)
|
|
url, params = @sdk_configuration.get_server_details
|
|
base_url = Utils.template_url(url, params)
|
|
url = Utils.generate_url(
|
|
::OpenApiSDK::Operations::StopTranscodeSessionRequest,
|
|
base_url,
|
|
'/transcode/sessions/{sessionKey}',
|
|
request
|
|
)
|
|
headers = {}
|
|
headers['Accept'] = 'application/json'
|
|
headers['user-agent'] = @sdk_configuration.user_agent
|
|
|
|
r = @sdk_configuration.client.delete(url) do |req|
|
|
req.headers = headers
|
|
Utils.configure_request_security(req, @sdk_configuration.security) if !@sdk_configuration.nil? && !@sdk_configuration.security.nil?
|
|
end
|
|
|
|
content_type = r.headers.fetch('Content-Type', 'application/octet-stream')
|
|
|
|
res = ::OpenApiSDK::Operations::StopTranscodeSessionResponse.new(
|
|
status_code: r.status, content_type: content_type, raw_response: r
|
|
)
|
|
if [204, 400].include?(r.status)
|
|
elsif r.status == 401
|
|
if Utils.match_content_type(content_type, 'application/json')
|
|
out = Utils.unmarshal_complex(r.env.response_body, ::OpenApiSDK::Operations::StopTranscodeSessionResponseBody)
|
|
res.object = out
|
|
end
|
|
end
|
|
res
|
|
end
|
|
end
|
|
end
|