Module: WolfCore::Barton::Routing

Includes:
HttpOperations, LambdaFunctionOperations
Defined in:
lib/wolf_core/application/barton/routing.rb

Constant Summary collapse

PATH_TO_FUNCTION_NAME_MAPPING =
{
  'barton/import/jobseeker' => 'BartonImportJobseeker',
  'barton/export/jobseeker' => 'BartonExportJobseeker',
  'barton/import/order' => 'BartonImportOrder',
  'barton/export/order' => 'BartonExportOrder',
}

Instance Method Summary collapse

Methods included from LambdaFunctionOperations

#deep_parse_json, #get_event_params, #invoke_lambda, #result_to_response

Methods included from HttpOperations

#async_http_get, #async_http_post, #async_http_put, #http_get, #http_post, #http_put, #parse_http_response, #validate_http_response

Methods included from AsyncUtils

#run_async

Methods included from ExceptionOperations

#raise_service_error

Instance Method Details

#route_event_request(path:, body:) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/wolf_core/application/barton/routing.rb', line 14

def route_event_request(path:, body:)
  domain_url = ENV['CURRENT_SAM_URL']
  if domain_url.present?
    async_http_post(url: "#{domain_url}/#{path}", body: body)
  else
    function_name = PATH_TO_FUNCTION_NAME_MAPPING[path]
    invoke_lambda(
      function_name: function_name,
      payload: body,
    )
  end
end