snapcher 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +10 -1
- data/.rubocop_todo.yml +78 -0
- data/Gemfile +7 -3
- data/Gemfile.lock +187 -1
- data/Rakefile +3 -0
- data/lib/generators/snapcher/install/install_generator.rb +6 -4
- data/lib/snapcher/junker.rb +29 -17
- data/lib/snapcher/railtie.rb +2 -6
- data/lib/snapcher/scanning.rb +3 -1
- data/lib/snapcher/sweeper.rb +3 -1
- data/lib/snapcher/version.rb +1 -1
- data/lib/snapcher.rb +5 -3
- data/sample-app/Gemfile +4 -5
- data/sample-app/bin/bundle +12 -8
- data/sample-app/config/application.rb +1 -1
- data/sample-app/config/environments/production.rb +3 -3
- data/sample-app/config/initializers/filter_parameter_logging.rb +2 -2
- data/sample-app/db/migrate/20231019151334_install_snapcher.rb +1 -1
- data/sample-app/db/schema.rb +0 -1
- metadata +19 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae3088224fb3c2293582c866c7c18c99b825ab26ae51a2a04cf7953561a89fca
|
4
|
+
data.tar.gz: 3ee807d9b9c5d492faac21d55075375428844529c618a23048abd5f2266e45c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0adf58e67edcc55b01d4532aad99d852ab422b6e5f2188fefe905033486686af54e962ed1f555adc6541ca040b0af8cf52de18d446e95fcf00d50e0a9f426fad
|
7
|
+
data.tar.gz: 11b68211feff574a498ade576614adec9be7f8d63aa816f05a4f0163f015158ea88feb3d49f7948a49f74c70c549d475783a2e5ea7a6bd2307e39c2d23e8bf7b
|
data/.rubocop.yml
CHANGED
@@ -1,5 +1,14 @@
|
|
1
|
+
inherit_from: .rubocop_todo.yml
|
2
|
+
|
3
|
+
inherit_gem:
|
4
|
+
rubocop-discourse: default.yml
|
5
|
+
|
1
6
|
AllCops:
|
2
|
-
TargetRubyVersion: 2
|
7
|
+
TargetRubyVersion: 3.2
|
8
|
+
NewCops: disable
|
9
|
+
Exclude:
|
10
|
+
- lib/generators/snapcher/templates/install.rb
|
11
|
+
- sample-app/bin/bundle
|
3
12
|
|
4
13
|
Style/StringLiterals:
|
5
14
|
Enabled: true
|
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config --exclude-limit 999999`
|
3
|
+
# on 2023-10-23 18:48:06 UTC using RuboCop version 1.57.1.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 1
|
10
|
+
Discourse/NoChdir:
|
11
|
+
Exclude:
|
12
|
+
- 'spec/**/*'
|
13
|
+
- 'plugins/*/spec/**/*'
|
14
|
+
- 'snapcher.gemspec'
|
15
|
+
|
16
|
+
# Offense count: 1
|
17
|
+
# This cop supports safe autocorrection (--autocorrect).
|
18
|
+
# Configuration parameters: EnforcedStyleAlignWith, Severity.
|
19
|
+
# SupportedStylesAlignWith: keyword, variable, start_of_line
|
20
|
+
Layout/EndAlignment:
|
21
|
+
Exclude:
|
22
|
+
- 'lib/snapcher/junker.rb'
|
23
|
+
|
24
|
+
# Offense count: 1
|
25
|
+
# This cop supports safe autocorrection (--autocorrect).
|
26
|
+
# Configuration parameters: Width, AllowedPatterns.
|
27
|
+
Layout/IndentationWidth:
|
28
|
+
Exclude:
|
29
|
+
- 'lib/snapcher/junker.rb'
|
30
|
+
|
31
|
+
# Offense count: 2
|
32
|
+
# This cop supports safe autocorrection (--autocorrect).
|
33
|
+
# Configuration parameters: EnforcedStyle, IndentationWidth.
|
34
|
+
# SupportedStyles: aligned, indented, indented_relative_to_receiver
|
35
|
+
Layout/MultilineMethodCallIndentation:
|
36
|
+
Exclude:
|
37
|
+
- 'sample-app/config/environments/production.rb'
|
38
|
+
|
39
|
+
# Offense count: 34
|
40
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
41
|
+
# Configuration parameters: EnforcedStyle.
|
42
|
+
# SupportedStyles: always, always_true, never
|
43
|
+
Style/FrozenStringLiteralComment:
|
44
|
+
Exclude:
|
45
|
+
- 'lib/generators/snapcher/install/install_generator.rb'
|
46
|
+
- 'sample-app/Gemfile'
|
47
|
+
- 'sample-app/Rakefile'
|
48
|
+
- 'sample-app/app/controllers/application_controller.rb'
|
49
|
+
- 'sample-app/app/helpers/application_helper.rb'
|
50
|
+
- 'sample-app/app/jobs/application_job.rb'
|
51
|
+
- 'sample-app/app/models/application_record.rb'
|
52
|
+
- 'sample-app/app/models/user.rb'
|
53
|
+
- 'sample-app/bin/rails'
|
54
|
+
- 'sample-app/bin/rake'
|
55
|
+
- 'sample-app/bin/setup'
|
56
|
+
- 'sample-app/config.ru'
|
57
|
+
- 'sample-app/config/application.rb'
|
58
|
+
- 'sample-app/config/boot.rb'
|
59
|
+
- 'sample-app/config/environment.rb'
|
60
|
+
- 'sample-app/config/environments/development.rb'
|
61
|
+
- 'sample-app/config/environments/production.rb'
|
62
|
+
- 'sample-app/config/environments/test.rb'
|
63
|
+
- 'sample-app/config/initializers/assets.rb'
|
64
|
+
- 'sample-app/config/initializers/content_security_policy.rb'
|
65
|
+
- 'sample-app/config/initializers/filter_parameter_logging.rb'
|
66
|
+
- 'sample-app/config/initializers/inflections.rb'
|
67
|
+
- 'sample-app/config/initializers/permissions_policy.rb'
|
68
|
+
- 'sample-app/config/puma.rb'
|
69
|
+
- 'sample-app/config/routes.rb'
|
70
|
+
- 'sample-app/db/migrate/20231019150803_create_users.rb'
|
71
|
+
- 'sample-app/db/schema.rb'
|
72
|
+
- 'sample-app/db/seeds.rb'
|
73
|
+
- 'spec/rails_app/config/application.rb'
|
74
|
+
- 'spec/rails_app/config/environment.rb'
|
75
|
+
- 'spec/rails_app/config/environments/test.rb'
|
76
|
+
- 'spec/rails_app/config/routes.rb'
|
77
|
+
- 'spec/support/active_record/models.rb'
|
78
|
+
- 'spec/support/active_record/schema.rb'
|
data/Gemfile
CHANGED
@@ -3,10 +3,14 @@
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
5
|
# Specify your gem's dependencies in snapcher.gemspec
|
6
|
-
gemspec
|
6
|
+
gemspec name: "snapcher"
|
7
7
|
|
8
|
+
gem "debug", ">= 1.8.0"
|
9
|
+
gem "rails", ">= 7.0.0", "< 7.1"
|
10
|
+
gem "railties", require: false
|
8
11
|
gem "rake", "~> 13.0"
|
9
|
-
|
10
12
|
gem "rspec", "~> 3.0"
|
11
|
-
|
13
|
+
gem "rspec-rails", "~> 6.0.0"
|
14
|
+
gem "rubocop-discourse", "~> 3.4.0"
|
12
15
|
gem "rubocop", "~> 1.21"
|
16
|
+
gem "sqlite3", ">= 1.4"
|
data/Gemfile.lock
CHANGED
@@ -1,24 +1,172 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
snapcher (0.1.
|
4
|
+
snapcher (0.1.1)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
+
actioncable (7.0.8)
|
10
|
+
actionpack (= 7.0.8)
|
11
|
+
activesupport (= 7.0.8)
|
12
|
+
nio4r (~> 2.0)
|
13
|
+
websocket-driver (>= 0.6.1)
|
14
|
+
actionmailbox (7.0.8)
|
15
|
+
actionpack (= 7.0.8)
|
16
|
+
activejob (= 7.0.8)
|
17
|
+
activerecord (= 7.0.8)
|
18
|
+
activestorage (= 7.0.8)
|
19
|
+
activesupport (= 7.0.8)
|
20
|
+
mail (>= 2.7.1)
|
21
|
+
net-imap
|
22
|
+
net-pop
|
23
|
+
net-smtp
|
24
|
+
actionmailer (7.0.8)
|
25
|
+
actionpack (= 7.0.8)
|
26
|
+
actionview (= 7.0.8)
|
27
|
+
activejob (= 7.0.8)
|
28
|
+
activesupport (= 7.0.8)
|
29
|
+
mail (~> 2.5, >= 2.5.4)
|
30
|
+
net-imap
|
31
|
+
net-pop
|
32
|
+
net-smtp
|
33
|
+
rails-dom-testing (~> 2.0)
|
34
|
+
actionpack (7.0.8)
|
35
|
+
actionview (= 7.0.8)
|
36
|
+
activesupport (= 7.0.8)
|
37
|
+
rack (~> 2.0, >= 2.2.4)
|
38
|
+
rack-test (>= 0.6.3)
|
39
|
+
rails-dom-testing (~> 2.0)
|
40
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
41
|
+
actiontext (7.0.8)
|
42
|
+
actionpack (= 7.0.8)
|
43
|
+
activerecord (= 7.0.8)
|
44
|
+
activestorage (= 7.0.8)
|
45
|
+
activesupport (= 7.0.8)
|
46
|
+
globalid (>= 0.6.0)
|
47
|
+
nokogiri (>= 1.8.5)
|
48
|
+
actionview (7.0.8)
|
49
|
+
activesupport (= 7.0.8)
|
50
|
+
builder (~> 3.1)
|
51
|
+
erubi (~> 1.4)
|
52
|
+
rails-dom-testing (~> 2.0)
|
53
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
54
|
+
activejob (7.0.8)
|
55
|
+
activesupport (= 7.0.8)
|
56
|
+
globalid (>= 0.3.6)
|
57
|
+
activemodel (7.0.8)
|
58
|
+
activesupport (= 7.0.8)
|
59
|
+
activerecord (7.0.8)
|
60
|
+
activemodel (= 7.0.8)
|
61
|
+
activesupport (= 7.0.8)
|
62
|
+
activestorage (7.0.8)
|
63
|
+
actionpack (= 7.0.8)
|
64
|
+
activejob (= 7.0.8)
|
65
|
+
activerecord (= 7.0.8)
|
66
|
+
activesupport (= 7.0.8)
|
67
|
+
marcel (~> 1.0)
|
68
|
+
mini_mime (>= 1.1.0)
|
69
|
+
activesupport (7.0.8)
|
70
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
71
|
+
i18n (>= 1.6, < 2)
|
72
|
+
minitest (>= 5.1)
|
73
|
+
tzinfo (~> 2.0)
|
74
|
+
appraisal (2.5.0)
|
75
|
+
bundler
|
76
|
+
rake
|
77
|
+
thor (>= 0.14.0)
|
9
78
|
ast (2.4.2)
|
10
79
|
base64 (0.1.1)
|
80
|
+
builder (3.2.4)
|
81
|
+
concurrent-ruby (1.2.2)
|
82
|
+
crass (1.0.6)
|
83
|
+
date (3.3.3)
|
84
|
+
debug (1.8.0)
|
85
|
+
irb (>= 1.5.0)
|
86
|
+
reline (>= 0.3.1)
|
11
87
|
diff-lcs (1.5.0)
|
88
|
+
erubi (1.12.0)
|
89
|
+
globalid (1.2.1)
|
90
|
+
activesupport (>= 6.1)
|
91
|
+
i18n (1.14.1)
|
92
|
+
concurrent-ruby (~> 1.0)
|
93
|
+
io-console (0.6.0)
|
94
|
+
irb (1.8.3)
|
95
|
+
rdoc
|
96
|
+
reline (>= 0.3.8)
|
12
97
|
json (2.6.3)
|
13
98
|
language_server-protocol (3.17.0.3)
|
99
|
+
loofah (2.21.4)
|
100
|
+
crass (~> 1.0.2)
|
101
|
+
nokogiri (>= 1.12.0)
|
102
|
+
mail (2.8.1)
|
103
|
+
mini_mime (>= 0.1.1)
|
104
|
+
net-imap
|
105
|
+
net-pop
|
106
|
+
net-smtp
|
107
|
+
marcel (1.0.2)
|
108
|
+
method_source (1.0.0)
|
109
|
+
mini_mime (1.1.5)
|
110
|
+
minitest (5.20.0)
|
111
|
+
net-imap (0.4.1)
|
112
|
+
date
|
113
|
+
net-protocol
|
114
|
+
net-pop (0.1.2)
|
115
|
+
net-protocol
|
116
|
+
net-protocol (0.2.1)
|
117
|
+
timeout
|
118
|
+
net-smtp (0.4.0)
|
119
|
+
net-protocol
|
120
|
+
nio4r (2.5.9)
|
121
|
+
nokogiri (1.15.4-arm64-darwin)
|
122
|
+
racc (~> 1.4)
|
123
|
+
nokogiri (1.15.4-x86_64-linux)
|
124
|
+
racc (~> 1.4)
|
14
125
|
parallel (1.23.0)
|
15
126
|
parser (3.2.2.4)
|
16
127
|
ast (~> 2.4.1)
|
17
128
|
racc
|
129
|
+
psych (5.1.1.1)
|
130
|
+
stringio
|
18
131
|
racc (1.7.1)
|
132
|
+
rack (2.2.8)
|
133
|
+
rack-test (2.1.0)
|
134
|
+
rack (>= 1.3)
|
135
|
+
rails (7.0.8)
|
136
|
+
actioncable (= 7.0.8)
|
137
|
+
actionmailbox (= 7.0.8)
|
138
|
+
actionmailer (= 7.0.8)
|
139
|
+
actionpack (= 7.0.8)
|
140
|
+
actiontext (= 7.0.8)
|
141
|
+
actionview (= 7.0.8)
|
142
|
+
activejob (= 7.0.8)
|
143
|
+
activemodel (= 7.0.8)
|
144
|
+
activerecord (= 7.0.8)
|
145
|
+
activestorage (= 7.0.8)
|
146
|
+
activesupport (= 7.0.8)
|
147
|
+
bundler (>= 1.15.0)
|
148
|
+
railties (= 7.0.8)
|
149
|
+
rails-dom-testing (2.2.0)
|
150
|
+
activesupport (>= 5.0.0)
|
151
|
+
minitest
|
152
|
+
nokogiri (>= 1.6)
|
153
|
+
rails-html-sanitizer (1.6.0)
|
154
|
+
loofah (~> 2.21)
|
155
|
+
nokogiri (~> 1.14)
|
156
|
+
railties (7.0.8)
|
157
|
+
actionpack (= 7.0.8)
|
158
|
+
activesupport (= 7.0.8)
|
159
|
+
method_source
|
160
|
+
rake (>= 12.2)
|
161
|
+
thor (~> 1.0)
|
162
|
+
zeitwerk (~> 2.5)
|
19
163
|
rainbow (3.1.1)
|
20
164
|
rake (13.0.6)
|
165
|
+
rdoc (6.5.0)
|
166
|
+
psych (>= 4.0.0)
|
21
167
|
regexp_parser (2.8.2)
|
168
|
+
reline (0.3.9)
|
169
|
+
io-console (~> 0.5)
|
22
170
|
rexml (3.2.6)
|
23
171
|
rspec (3.12.0)
|
24
172
|
rspec-core (~> 3.12.0)
|
@@ -32,6 +180,14 @@ GEM
|
|
32
180
|
rspec-mocks (3.12.6)
|
33
181
|
diff-lcs (>= 1.2.0, < 2.0)
|
34
182
|
rspec-support (~> 3.12.0)
|
183
|
+
rspec-rails (6.0.3)
|
184
|
+
actionpack (>= 6.1)
|
185
|
+
activesupport (>= 6.1)
|
186
|
+
railties (>= 6.1)
|
187
|
+
rspec-core (~> 3.12)
|
188
|
+
rspec-expectations (~> 3.12)
|
189
|
+
rspec-mocks (~> 3.12)
|
190
|
+
rspec-support (~> 3.12)
|
35
191
|
rspec-support (3.12.1)
|
36
192
|
rubocop (1.57.1)
|
37
193
|
base64 (~> 0.1.1)
|
@@ -47,17 +203,47 @@ GEM
|
|
47
203
|
unicode-display_width (>= 2.4.0, < 3.0)
|
48
204
|
rubocop-ast (1.29.0)
|
49
205
|
parser (>= 3.2.1.0)
|
206
|
+
rubocop-capybara (2.19.0)
|
207
|
+
rubocop (~> 1.41)
|
208
|
+
rubocop-discourse (3.4.0)
|
209
|
+
rubocop (>= 1.1.0)
|
210
|
+
rubocop-rspec (>= 2.0.0)
|
211
|
+
rubocop-factory_bot (2.24.0)
|
212
|
+
rubocop (~> 1.33)
|
213
|
+
rubocop-rspec (2.24.1)
|
214
|
+
rubocop (~> 1.33)
|
215
|
+
rubocop-capybara (~> 2.17)
|
216
|
+
rubocop-factory_bot (~> 2.22)
|
50
217
|
ruby-progressbar (1.13.0)
|
218
|
+
sqlite3 (1.6.7-arm64-darwin)
|
219
|
+
sqlite3 (1.6.7-x86_64-linux)
|
220
|
+
stringio (3.0.8)
|
221
|
+
thor (1.3.0)
|
222
|
+
timeout (0.4.0)
|
223
|
+
tzinfo (2.0.6)
|
224
|
+
concurrent-ruby (~> 1.0)
|
51
225
|
unicode-display_width (2.5.0)
|
226
|
+
websocket-driver (0.7.6)
|
227
|
+
websocket-extensions (>= 0.1.0)
|
228
|
+
websocket-extensions (0.1.5)
|
229
|
+
zeitwerk (2.6.12)
|
52
230
|
|
53
231
|
PLATFORMS
|
54
232
|
arm64-darwin-22
|
233
|
+
x86_64-linux
|
55
234
|
|
56
235
|
DEPENDENCIES
|
236
|
+
appraisal
|
237
|
+
debug (>= 1.8.0)
|
238
|
+
rails (>= 7.0.0, < 7.1)
|
239
|
+
railties
|
57
240
|
rake (~> 13.0)
|
58
241
|
rspec (~> 3.0)
|
242
|
+
rspec-rails (~> 6.0.0)
|
59
243
|
rubocop (~> 1.21)
|
244
|
+
rubocop-discourse (~> 3.4.0)
|
60
245
|
snapcher!
|
246
|
+
sqlite3 (>= 1.4)
|
61
247
|
|
62
248
|
BUNDLED WITH
|
63
249
|
2.4.10
|
data/Rakefile
CHANGED
@@ -7,7 +7,7 @@ module Snapcher
|
|
7
7
|
class InstallGenerator < ::Rails::Generators::Base
|
8
8
|
include Rails::Generators::Migration
|
9
9
|
|
10
|
-
source_root File.expand_path("
|
10
|
+
source_root File.expand_path("../templates", __dir__)
|
11
11
|
|
12
12
|
def copy_migration
|
13
13
|
migration_template "install.rb", "db/migrate/install_snapcher.rb"
|
@@ -24,13 +24,15 @@ module Snapcher
|
|
24
24
|
end
|
25
25
|
|
26
26
|
def self.timestamped_migrations?
|
27
|
-
|
28
|
-
::ActiveRecord.timestamped_migrations
|
27
|
+
if Rails.version >= "7.0"
|
28
|
+
::ActiveRecord.timestamped_migrations
|
29
|
+
else
|
29
30
|
::ActiveRecord::Base.timestamped_migrations
|
31
|
+
end
|
30
32
|
end
|
31
33
|
|
32
34
|
def migration_parent
|
33
35
|
"ActiveRecord::Migration[#{ActiveRecord::Migration.current_version}]"
|
34
36
|
end
|
35
37
|
end
|
36
|
-
end
|
38
|
+
end
|
data/lib/snapcher/junker.rb
CHANGED
@@ -1,10 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "debug"
|
4
|
+
|
3
5
|
module Snapcher
|
4
6
|
module Junker
|
5
7
|
extend ActiveSupport::Concern
|
6
8
|
|
7
|
-
CALLBACKS = [
|
9
|
+
CALLBACKS = %i[scanning_create scanning_update scanning_destroy]
|
8
10
|
|
9
11
|
module ClassMethods
|
10
12
|
def scanning(options = {})
|
@@ -15,7 +17,9 @@ module Snapcher
|
|
15
17
|
|
16
18
|
self.snapcher_options = options
|
17
19
|
|
18
|
-
has_many :scannings,
|
20
|
+
has_many :scannings, lambda {
|
21
|
+
order(id: :asc)
|
22
|
+
}, as: :scannable, class_name: "Snapcher::Scanning", inverse_of: :scannable
|
19
23
|
|
20
24
|
after_create :scanning_create
|
21
25
|
before_update :scanning_update
|
@@ -27,19 +31,27 @@ module Snapcher
|
|
27
31
|
|
28
32
|
module ScanningInstanceMethods
|
29
33
|
def scanning_create
|
30
|
-
run_scanning(action: "create",
|
34
|
+
run_scanning(action: "create",
|
35
|
+
column_name: snapcher_options[:column_name],
|
36
|
+
after_params: snapcher_attributes[snapcher_options[:column_name]],
|
37
|
+
table_name: self.class.table_name)
|
31
38
|
end
|
32
39
|
|
33
40
|
def scanning_update
|
34
|
-
|
35
|
-
|
36
|
-
|
41
|
+
return unless (changes = snapcher_changes).present?
|
42
|
+
|
43
|
+
run_scanning(action: "update",
|
44
|
+
column_name: snapcher_options[:column_name],
|
45
|
+
table_name: self.class.table_name,
|
46
|
+
before_params: snapcher_changes[:before_params],
|
47
|
+
after_params: snapcher_changes[:after_params])
|
37
48
|
end
|
38
49
|
|
39
50
|
def scanning_destroy
|
40
|
-
|
41
|
-
|
42
|
-
|
51
|
+
return if new_record?
|
52
|
+
|
53
|
+
run_scanning(action: "destroy", column_name: snapcher_options[:column_name],
|
54
|
+
table_name: self.class.table_name)
|
43
55
|
end
|
44
56
|
|
45
57
|
# List of attributes that are snapcher.
|
@@ -50,10 +62,10 @@ module Snapcher
|
|
50
62
|
|
51
63
|
def scanning_change_values
|
52
64
|
all_changes = if respond_to?(:changes_to_save)
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
65
|
+
changes_to_save
|
66
|
+
else
|
67
|
+
changes
|
68
|
+
end
|
57
69
|
|
58
70
|
filtered_changes = filter_encrypted_attrs(all_changes)
|
59
71
|
filtered_changes = normalize_enum_changes(filtered_changes)
|
@@ -63,20 +75,20 @@ module Snapcher
|
|
63
75
|
def snapcher_changes
|
64
76
|
filtered_changes = scanning_change_values
|
65
77
|
|
66
|
-
monitoring_column_name =
|
78
|
+
monitoring_column_name = snapcher_options[:column_name]
|
67
79
|
|
68
80
|
return if filtered_changes[monitoring_column_name.to_s].nil?
|
69
81
|
|
70
82
|
before_params = filtered_changes[monitoring_column_name.to_s][0]
|
71
83
|
after_params = filtered_changes[monitoring_column_name.to_s][1]
|
72
|
-
{
|
84
|
+
{ before_params:, after_params: }
|
73
85
|
end
|
74
86
|
|
75
87
|
def run_scanning(attrs)
|
76
|
-
run_callbacks(:scanning)
|
88
|
+
run_callbacks(:scanning) do
|
77
89
|
scanning = scannings.create(attrs)
|
78
90
|
scanning
|
79
|
-
|
91
|
+
end
|
80
92
|
end
|
81
93
|
|
82
94
|
def filter_encrypted_attrs(filtered_changes)
|
data/lib/snapcher/railtie.rb
CHANGED
@@ -4,12 +4,8 @@ module Snapcher
|
|
4
4
|
class Railtie < Rails::Railtie
|
5
5
|
initializer "snapcher.sweeper" do
|
6
6
|
ActiveSupport.on_load(:action_controller) do
|
7
|
-
if defined?(ActionController::Base)
|
8
|
-
|
9
|
-
end
|
10
|
-
if defined?(ActionController::API)
|
11
|
-
ActionController::API.around_action Snapcher::Sweeper.new
|
12
|
-
end
|
7
|
+
ActionController::Base.around_action Snapcher::Sweeper.new if defined?(ActionController::Base)
|
8
|
+
ActionController::API.around_action Snapcher::Sweeper.new if defined?(ActionController::API)
|
13
9
|
end
|
14
10
|
end
|
15
11
|
end
|
data/lib/snapcher/scanning.rb
CHANGED
@@ -6,6 +6,8 @@ module Snapcher
|
|
6
6
|
|
7
7
|
cattr_accessor :snapcher_class_names
|
8
8
|
|
9
|
-
scope :scannable_finder,
|
9
|
+
scope :scannable_finder, lambda { |scannable_id, scannable_type|
|
10
|
+
where(scannable_id:, scannable_type:)
|
11
|
+
}
|
10
12
|
end
|
11
13
|
end
|
data/lib/snapcher/sweeper.rb
CHANGED
@@ -20,7 +20,9 @@ module Snapcher
|
|
20
20
|
end
|
21
21
|
|
22
22
|
def current_user
|
23
|
-
lambda {
|
23
|
+
lambda {
|
24
|
+
controller.send(Snapcher.current_user_method) if controller.respond_to?(Snapcher.current_user_method, true)
|
25
|
+
}
|
24
26
|
end
|
25
27
|
|
26
28
|
def remote_ip
|
data/lib/snapcher/version.rb
CHANGED
data/lib/snapcher.rb
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "active_record"
|
4
|
-
require_relative "snapcher/version"
|
5
4
|
|
6
5
|
module Snapcher
|
7
6
|
class Error < StandardError; end
|
@@ -12,7 +11,8 @@ module Snapcher
|
|
12
11
|
attr_writer :scanning_class
|
13
12
|
|
14
13
|
def scanning_class
|
15
|
-
# The scanning_class is set as String in the initializer.
|
14
|
+
# The scanning_class is set as String in the initializer.
|
15
|
+
# It can not be constantized during initialization and must
|
16
16
|
# be constantized at runtime.
|
17
17
|
@scanning_class = @scanning_class.safe_constantize if @scanning_class.is_a?(String)
|
18
18
|
@scanning_class ||= Snapcher::Scanning
|
@@ -27,4 +27,6 @@ ActiveSupport.on_load :active_record do
|
|
27
27
|
include Snapcher::Junker
|
28
28
|
end
|
29
29
|
|
30
|
-
require "snapcher/
|
30
|
+
require "snapcher/sweeper"
|
31
|
+
require_relative "snapcher/railtie" if defined?(Rails::Railtie)
|
32
|
+
# require "snapcher/railtie"
|
data/sample-app/Gemfile
CHANGED
@@ -2,22 +2,21 @@ source "https://rubygems.org"
|
|
2
2
|
|
3
3
|
ruby "3.2.2"
|
4
4
|
|
5
|
+
gem "jbuilder"
|
6
|
+
gem "puma", ">= 5.0"
|
5
7
|
gem "rails", "~> 7.1.1"
|
6
8
|
gem "sprockets-rails"
|
7
9
|
gem "sqlite3", "~> 1.4"
|
8
|
-
gem "puma", ">= 5.0"
|
9
|
-
gem "jbuilder"
|
10
10
|
|
11
11
|
gem "snapcher", path: "../"
|
12
12
|
|
13
|
-
gem "tzinfo-data", platforms: %i[ windows jruby ]
|
14
13
|
gem "bootsnap", require: false
|
14
|
+
gem "tzinfo-data", platforms: %i[windows jruby]
|
15
15
|
|
16
16
|
group :development, :test do
|
17
|
-
gem "debug", platforms: %i[
|
17
|
+
gem "debug", platforms: %i[mri windows]
|
18
18
|
end
|
19
19
|
|
20
20
|
group :development do
|
21
21
|
gem "web-console"
|
22
22
|
end
|
23
|
-
|
data/sample-app/bin/bundle
CHANGED
@@ -24,14 +24,14 @@ m = Module.new do
|
|
24
24
|
def cli_arg_version
|
25
25
|
return unless invoked_as_script? # don't want to hijack other binstubs
|
26
26
|
return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
|
27
|
+
|
27
28
|
bundler_version = nil
|
28
29
|
update_index = nil
|
29
30
|
ARGV.each_with_index do |a, i|
|
30
|
-
if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN
|
31
|
-
bundler_version = a
|
32
|
-
end
|
31
|
+
bundler_version = a if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN
|
33
32
|
next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
|
34
|
-
|
33
|
+
|
34
|
+
bundler_version = Regexp.last_match(1)
|
35
35
|
update_index = i
|
36
36
|
end
|
37
37
|
bundler_version
|
@@ -55,8 +55,10 @@ m = Module.new do
|
|
55
55
|
|
56
56
|
def lockfile_version
|
57
57
|
return unless File.file?(lockfile)
|
58
|
+
|
58
59
|
lockfile_contents = File.read(lockfile)
|
59
60
|
return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
|
61
|
+
|
60
62
|
Regexp.last_match(1)
|
61
63
|
end
|
62
64
|
|
@@ -86,10 +88,14 @@ m = Module.new do
|
|
86
88
|
gem "bundler", bundler_requirement
|
87
89
|
end
|
88
90
|
return if gem_error.nil?
|
91
|
+
|
89
92
|
require_error = activation_error_handling do
|
90
93
|
require "bundler/version"
|
91
94
|
end
|
92
|
-
|
95
|
+
if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION))
|
96
|
+
return
|
97
|
+
end
|
98
|
+
|
93
99
|
warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`"
|
94
100
|
exit 42
|
95
101
|
end
|
@@ -104,6 +110,4 @@ end
|
|
104
110
|
|
105
111
|
m.load_bundler!
|
106
112
|
|
107
|
-
if m.invoked_as_script?
|
108
|
-
load Gem.bin_path("bundler", "bundle")
|
109
|
-
end
|
113
|
+
load Gem.bin_path("bundler", "bundle") if m.invoked_as_script?
|
@@ -26,7 +26,7 @@ module SampleApp
|
|
26
26
|
# Please, add to the `ignore` list any other `lib` subdirectories that do
|
27
27
|
# not contain `.rb` files, or that should not be reloaded or eager loaded.
|
28
28
|
# Common ones are `templates`, `generators`, or `middleware`, for example.
|
29
|
-
config.autoload_lib(ignore: %w
|
29
|
+
config.autoload_lib(ignore: %w[assets tasks])
|
30
30
|
|
31
31
|
# Configuration for the application, engines, and railties goes here.
|
32
32
|
#
|
@@ -45,11 +45,11 @@ Rails.application.configure do
|
|
45
45
|
|
46
46
|
# Log to STDOUT by default
|
47
47
|
config.logger = ActiveSupport::Logger.new(STDOUT)
|
48
|
-
|
49
|
-
|
48
|
+
.tap { |logger| logger.formatter = ::Logger::Formatter.new }
|
49
|
+
.then { |logger| ActiveSupport::TaggedLogging.new(logger) }
|
50
50
|
|
51
51
|
# Prepend all log lines with the following tags.
|
52
|
-
config.log_tags = [
|
52
|
+
config.log_tags = [:request_id]
|
53
53
|
|
54
54
|
# Info include generic and useful information about system operation, but avoids logging too much
|
55
55
|
# information to avoid inadvertent exposure of personally identifiable information (PII). If you
|
@@ -3,6 +3,6 @@
|
|
3
3
|
# Configure parameters to be partially matched (e.g. passw matches password) and filtered from the log file.
|
4
4
|
# Use this to limit dissemination of sensitive information.
|
5
5
|
# See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors.
|
6
|
-
Rails.application.config.filter_parameters += [
|
7
|
-
|
6
|
+
Rails.application.config.filter_parameters += %i[
|
7
|
+
passw secret token _key crypt salt certificate otp ssn
|
8
8
|
]
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
class InstallSnapcher < ActiveRecord::Migration[7.1]
|
4
4
|
def self.up
|
5
|
-
create_table :scannings, :
|
5
|
+
create_table :scannings, force: true do |t|
|
6
6
|
t.column :scannable_id, :integer
|
7
7
|
t.column :scannable_type, :string
|
8
8
|
t.column :table_name, :string
|
data/sample-app/db/schema.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: snapcher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ryosk7
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
12
|
-
dependencies:
|
11
|
+
date: 2023-10-23 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: appraisal
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
13
27
|
description: Save snapshot of DB columns.
|
14
28
|
email:
|
15
29
|
- uchiryo7@gmail.com
|
@@ -19,6 +33,7 @@ extra_rdoc_files: []
|
|
19
33
|
files:
|
20
34
|
- ".rspec"
|
21
35
|
- ".rubocop.yml"
|
36
|
+
- ".rubocop_todo.yml"
|
22
37
|
- ".ruby-version"
|
23
38
|
- CHANGELOG.md
|
24
39
|
- CODE_OF_CONDUCT.md
|
@@ -111,7 +126,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
111
126
|
requirements:
|
112
127
|
- - ">="
|
113
128
|
- !ruby/object:Gem::Version
|
114
|
-
version:
|
129
|
+
version: 3.1.0
|
115
130
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
116
131
|
requirements:
|
117
132
|
- - ">="
|