Welcome to mirror list, hosted at ThFree Co, Russian Federation.

route_logger.rb « loggers « grape_logging « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3146b4dfd9831c9cb5e249912ca1c21138eed54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

# This grape_logging module (https://github.com/aserafin/grape_logging) makes it
# possible to log the details of the action
module Gitlab
  module GrapeLogging
    module Loggers
      class RouteLogger < ::GrapeLogging::Loggers::Base
        def parameters(request, _)
          endpoint = request.env[Grape::Env::API_ENDPOINT]
          route = endpoint&.route&.pattern&.origin

          return {} unless route

          { route: route }
        rescue
          # endpoint.route calls env[Grape::Env::GRAPE_ROUTING_ARGS][:route_info]
          # but env[Grape::Env::GRAPE_ROUTING_ARGS] is nil in the case of a 405 response
          # so we're rescuing exceptions and bailing out
          {}
        end
      end
    end
  end
end