Module: Datadog::AppSec::Contrib::Rails::Patcher
- Includes:
- Patcher
- Defined in:
- lib/datadog/appsec/contrib/rails/patcher.rb
Overview
Patcher for AppSec on Rails
Defined Under Namespace
Modules: ProcessActionPatch
Constant Summary
collapse
- BEFORE_INITIALIZE_ONLY_ONCE_PER_APP =
Hash.new { |h, key| h[key] = Datadog::Core::Utils::OnlyOnce.new }
- AFTER_INITIALIZE_ONLY_ONCE_PER_APP =
Hash.new { |h, key| h[key] = Datadog::Core::Utils::OnlyOnce.new }
Class Method Summary
collapse
Class Method Details
.add_middleware(app) ⇒ Object
.after_initialize(app) ⇒ Object
150
151
152
153
154
155
156
157
|
# File 'lib/datadog/appsec/contrib/rails/patcher.rb', line 150
def after_initialize(app)
AFTER_INITIALIZE_ONLY_ONCE_PER_APP[app].run do
setup_security
inspect_middlewares(app)
end
end
|
.before_initialize(app) ⇒ Object
50
51
52
53
54
55
56
57
|
# File 'lib/datadog/appsec/contrib/rails/patcher.rb', line 50
def before_initialize(app)
BEFORE_INITIALIZE_ONLY_ONCE_PER_APP[app].run do
add_middleware(app) if Datadog.configuration.tracing[:rails][:middleware]
patch_process_action
end
end
|
.include_middleware?(middleware, app) ⇒ Boolean
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
# File 'lib/datadog/appsec/contrib/rails/patcher.rb', line 106
def include_middleware?(middleware, app)
found = false
app.middleware.instance_variable_get(:@operations).each do |operation|
args = case operation
when Array
_op, args = operation
args
when Proc
if operation.binding.local_variables.include?(:args)
operation.binding.local_variable_get(:args)
else
args_getter = Class.new do
def method_missing(_op, *args) args
end
end.new
operation.call(args_getter)
end
else
[]
end
found = true if args.include?(middleware)
end
found
end
|
.inspect_middlewares(app) ⇒ Object
140
141
142
|
# File 'lib/datadog/appsec/contrib/rails/patcher.rb', line 140
def inspect_middlewares(app)
Datadog.logger.debug { +'Rails middlewares: ' << app.middleware.map(&:inspect).inspect }
end
|
.patch ⇒ Object
36
37
38
39
40
41
42
|
# File 'lib/datadog/appsec/contrib/rails/patcher.rb', line 36
def patch
Gateway::Watcher.watch
patch_before_initialize
patch_after_initialize
Patcher.instance_variable_set(:@patched, true)
end
|
.patch_after_initialize ⇒ Object
.patch_before_initialize ⇒ Object
.patch_process_action ⇒ Object
102
103
104
|
# File 'lib/datadog/appsec/contrib/rails/patcher.rb', line 102
def patch_process_action
::ActionController::Metal.prepend(ProcessActionPatch)
end
|
.patched? ⇒ Boolean
28
29
30
|
# File 'lib/datadog/appsec/contrib/rails/patcher.rb', line 28
def patched?
Patcher.instance_variable_get(:@patched)
end
|
.target_version ⇒ Object
32
33
34
|
# File 'lib/datadog/appsec/contrib/rails/patcher.rb', line 32
def target_version
Integration.version
end
|