lib/ding_sdk/otp.rb in ding_sdk-0.8.3 vs lib/ding_sdk/otp.rb in ding_sdk-0.8.4
- old
+ new
@@ -105,9 +105,54 @@
end
res
end
+ sig { params(request: T.nilable(::DingSDK::Shared::FeedbackRequest)).returns(::DingSDK::Operations::FeedbackResponse) }
+ def feedback(request)
+ # feedback - Send feedback
+ url, params = @sdk_configuration.get_server_details
+ base_url = Utils.template_url(url, params)
+ url = "#{base_url}/authentication/feedback"
+ headers = {}
+ req_content_type, data, form = Utils.serialize_request_body(request, :request, :json)
+ headers['content-type'] = req_content_type
+ headers['Accept'] = 'application/json'
+ headers['user-agent'] = @sdk_configuration.user_agent
+
+ r = @sdk_configuration.client.post(url) do |req|
+ req.headers = headers
+ Utils.configure_request_security(req, @sdk_configuration.security) if !@sdk_configuration.nil? && !@sdk_configuration.security.nil?
+ if form
+ req.body = Utils.encode_form(form)
+ elsif Utils.match_content_type(req_content_type, 'application/x-www-form-urlencoded')
+ req.body = URI.encode_www_form(data)
+ else
+ req.body = data
+ end
+ end
+
+ content_type = r.headers.fetch('Content-Type', 'application/octet-stream')
+
+ res = ::DingSDK::Operations::FeedbackResponse.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, ::DingSDK::Shared::FeedbackResponse)
+ res.feedback_response = out
+ end
+ else
+
+ if Utils.match_content_type(content_type, 'application/json')
+ out = Utils.unmarshal_complex(r.env.response_body, ::DingSDK::Shared::ErrorResponse)
+ res.error_response = out
+ end
+ end
+ res
+ end
+
+
sig { params(request: T.nilable(::DingSDK::Shared::RetryAuthenticationRequest)).returns(::DingSDK::Operations::RetryResponse) }
def retry(request)
# retry - Perform a retry
url, params = @sdk_configuration.get_server_details
base_url = Utils.template_url(url, params)