module WolfCore::Integrations::RoutingOperations
def route_event_request(path:, body:, environment:, domain_url: nil)
def route_event_request(path:, body:, environment:, domain_url: nil) environment ||= 'development' environment = environment.downcase deployable_envs = ['production', 'staging', 'testing'] if deployable_envs.include?(environment) function_name = "#{PATH_TO_FUNCTION_NAME_MAPPING[path]}#{environment.titleize}" 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