Module: WolfCore::Integrations::RoutingOperations
- Defined in:
- lib/wolf_core/application/integrations/routing_operations.rb
Instance Method Summary collapse
Methods included from ExceptionOperations
Methods included from LambdaFunctionOperations
#deep_parse_json, #get_event_params, #invoke_lambda, #parse_lambda_response, #result_to_response, #validate_lambda_response
Methods included from HttpOperations
#async_http_get, #async_http_post, #async_http_put, #http_get, #http_post, #http_put, #parse_http_response, #parsed_http_get, #parsed_http_post, #parsed_http_put, #safe_http_get, #safe_http_post, #safe_http_put, #validate_http_response
Methods included from LoggingUtils
Methods included from AsyncUtils
Instance Method Details
#route_event_request(path:, body:) ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/wolf_core/application/integrations/routing_operations.rb', line 8 def route_event_request(path:, body:) environment = ENV['ENVIRONMENT'] if environment == 'production' function_name = PATH_TO_FUNCTION_NAME_MAPPING[path] raise_service_error("Function name not found for path: #{path}") if function_name.blank? invoke_lambda( function_name: function_name, payload: body, ) else domain_url = ENV['CURRENT_SAM_URL'] async_http_post(url: "#{domain_url}/#{path}", body: body) end end |