File: controller_runtime.rb

package info (click to toggle)
ruby-activeldap 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,588 kB
  • sloc: ruby: 18,143; sh: 12; makefile: 5
file content (47 lines) | stat: -rw-r--r-- 1,355 bytes parent folder | download | duplicates (2)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require 'active_support/core_ext/module/attr_internal'
require 'active_ldap/log_subscriber'

module ActiveLdap
  module Railties
    module ControllerRuntime #:nodoc:
      extend ActiveSupport::Concern

      private
      attr_internal :ldap_runtime

      def process_action(action, *args)
        # We also need to reset the runtime before each action
        # because of queries in middleware or in cases we are streaming
        # and it won't be cleaned up by the method below.
        ActiveLdap::LogSubscriber.reset_runtime
        super
      end

      def cleanup_view_runtime
        if ActiveLdap::Base.connected?
          ldap_rt_before_render = ActiveLdap::LogSubscriber.reset_runtime
          runtime = super
          ldap_rt_after_render = ActiveLdap::LogSubscriber.reset_runtime
          self.ldap_runtime = ldap_rt_before_render + ldap_rt_after_render
          runtime - ldap_rt_after_render
        else
          super
        end
      end

      def append_info_to_payload(payload)
        super
        payload[:ldap_runtime] = ldap_runtime
      end

      module ClassMethods
        def log_process_action(payload)
          messages, ldap_runtime = super, payload[:ldap_runtime]
          messages << ("ActiveLdap: %.1fms" % ldap_runtime.to_f) if ldap_runtime
          messages
        end
      end
    end
  end
end