summaryrefslogtreecommitdiff
path: root/lib/peek/views/bullet_detailed.rb
blob: 8e6f72f565ef07fd2eaa139c15724c904d28e1fd (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# frozen_string_literal: true

module Peek
  module Views
    class BulletDetailed < DetailedView
      WARNING_MESSAGE = "Unoptimized queries detected"

      def key
        'bullet'
      end

      def results
        return {} unless ::Bullet.enable?
        return {} unless calls > 0

        {
          calls: calls,
          details: details,
          warnings: [WARNING_MESSAGE]
        }
      end

      private

      def details
        notifications.map do |notification|
          # there is no public method which returns pure backtace:
          # https://github.com/flyerhzm/bullet/blob/9cda9c224a46786ecfa894480c4dd4d304db2adb/lib/bullet/notification/n_plus_one_query.rb
          backtrace = notification.body_with_caller

          {
            notification: "#{notification.title}: #{notification.body}",
            backtrace: backtrace
          }
        end
      end

      def calls
        notifications.size
      end

      def notifications
        ::Bullet.notification_collector&.collection || []
      end
    end
  end
end