json_errors 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/Gemfile.lock +102 -102
- data/README.md +2 -105
- data/config/initializers/json_errors.rb +23 -0
- data/json_errors.gemspec +2 -1
- data/lib/generators/json_errors/install/templates/json_errors.rb +10 -10
- data/lib/json_errors/config.rb +9 -0
- data/lib/json_errors/error/basic_error.rb +39 -0
- data/lib/json_errors/error/custom_payload_error.rb +21 -0
- data/lib/json_errors/error/validation_error.rb +34 -0
- data/lib/json_errors/error.rb +24 -0
- data/lib/json_errors/rescuer.rb +6 -3
- data/lib/json_errors/version.rb +1 -1
- data/lib/json_errors.rb +4 -1
- metadata +10 -5
- data/lib/json_errors/application_error.rb +0 -58
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6073926cc4aa340d48ca2fcacf60801832a58709ba638e2b365244641196118d
|
4
|
+
data.tar.gz: 843715bf0b65fb4dfe32a3e53097680d9686d96315caa9091b010cafdaba8f52
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 300ce2fcd6f47c71f6e0fe870016115132c6e61c2b75d994caf4b45f29d01b604fc9a825dae1d3bfd201550d63ab1ef8524eb38bfb2dcf3474fd788d268508c0
|
7
|
+
data.tar.gz: d3a334ece99b84051924e3ec1eb68dc7c06a8a873961e1e21a50630b1dbc20984dd2906fbe633ffc9f470341d6a51ae55b64fc5be41935c60152515c70e797e3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.2.1] - 2021-08-03
|
4
|
+
|
5
|
+
- Error log formatting fixed
|
6
|
+
|
7
|
+
## [0.2.0] - 2021-08-03
|
8
|
+
|
9
|
+
- ActiveRecord validation errors handling added
|
10
|
+
- Custom payload added
|
11
|
+
|
12
|
+
## [0.1.1] - 2021-07-27
|
13
|
+
|
14
|
+
- Missing configuration error added
|
15
|
+
|
3
16
|
## [0.1.0] - 2021-07-21
|
4
17
|
|
5
18
|
- Initial release
|
data/Gemfile.lock
CHANGED
@@ -1,66 +1,66 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
json_errors (0.1
|
4
|
+
json_errors (0.2.1)
|
5
5
|
activesupport (>= 4.2.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actioncable (6.1.
|
11
|
-
actionpack (= 6.1.
|
12
|
-
activesupport (= 6.1.
|
10
|
+
actioncable (6.1.5)
|
11
|
+
actionpack (= 6.1.5)
|
12
|
+
activesupport (= 6.1.5)
|
13
13
|
nio4r (~> 2.0)
|
14
14
|
websocket-driver (>= 0.6.1)
|
15
|
-
actionmailbox (6.1.
|
16
|
-
actionpack (= 6.1.
|
17
|
-
activejob (= 6.1.
|
18
|
-
activerecord (= 6.1.
|
19
|
-
activestorage (= 6.1.
|
20
|
-
activesupport (= 6.1.
|
15
|
+
actionmailbox (6.1.5)
|
16
|
+
actionpack (= 6.1.5)
|
17
|
+
activejob (= 6.1.5)
|
18
|
+
activerecord (= 6.1.5)
|
19
|
+
activestorage (= 6.1.5)
|
20
|
+
activesupport (= 6.1.5)
|
21
21
|
mail (>= 2.7.1)
|
22
|
-
actionmailer (6.1.
|
23
|
-
actionpack (= 6.1.
|
24
|
-
actionview (= 6.1.
|
25
|
-
activejob (= 6.1.
|
26
|
-
activesupport (= 6.1.
|
22
|
+
actionmailer (6.1.5)
|
23
|
+
actionpack (= 6.1.5)
|
24
|
+
actionview (= 6.1.5)
|
25
|
+
activejob (= 6.1.5)
|
26
|
+
activesupport (= 6.1.5)
|
27
27
|
mail (~> 2.5, >= 2.5.4)
|
28
28
|
rails-dom-testing (~> 2.0)
|
29
|
-
actionpack (6.1.
|
30
|
-
actionview (= 6.1.
|
31
|
-
activesupport (= 6.1.
|
29
|
+
actionpack (6.1.5)
|
30
|
+
actionview (= 6.1.5)
|
31
|
+
activesupport (= 6.1.5)
|
32
32
|
rack (~> 2.0, >= 2.0.9)
|
33
33
|
rack-test (>= 0.6.3)
|
34
34
|
rails-dom-testing (~> 2.0)
|
35
35
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
36
|
-
actiontext (6.1.
|
37
|
-
actionpack (= 6.1.
|
38
|
-
activerecord (= 6.1.
|
39
|
-
activestorage (= 6.1.
|
40
|
-
activesupport (= 6.1.
|
36
|
+
actiontext (6.1.5)
|
37
|
+
actionpack (= 6.1.5)
|
38
|
+
activerecord (= 6.1.5)
|
39
|
+
activestorage (= 6.1.5)
|
40
|
+
activesupport (= 6.1.5)
|
41
41
|
nokogiri (>= 1.8.5)
|
42
|
-
actionview (6.1.
|
43
|
-
activesupport (= 6.1.
|
42
|
+
actionview (6.1.5)
|
43
|
+
activesupport (= 6.1.5)
|
44
44
|
builder (~> 3.1)
|
45
45
|
erubi (~> 1.4)
|
46
46
|
rails-dom-testing (~> 2.0)
|
47
47
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
48
|
-
activejob (6.1.
|
49
|
-
activesupport (= 6.1.
|
48
|
+
activejob (6.1.5)
|
49
|
+
activesupport (= 6.1.5)
|
50
50
|
globalid (>= 0.3.6)
|
51
|
-
activemodel (6.1.
|
52
|
-
activesupport (= 6.1.
|
53
|
-
activerecord (6.1.
|
54
|
-
activemodel (= 6.1.
|
55
|
-
activesupport (= 6.1.
|
56
|
-
activestorage (6.1.
|
57
|
-
actionpack (= 6.1.
|
58
|
-
activejob (= 6.1.
|
59
|
-
activerecord (= 6.1.
|
60
|
-
activesupport (= 6.1.
|
61
|
-
marcel (~> 1.0
|
51
|
+
activemodel (6.1.5)
|
52
|
+
activesupport (= 6.1.5)
|
53
|
+
activerecord (6.1.5)
|
54
|
+
activemodel (= 6.1.5)
|
55
|
+
activesupport (= 6.1.5)
|
56
|
+
activestorage (6.1.5)
|
57
|
+
actionpack (= 6.1.5)
|
58
|
+
activejob (= 6.1.5)
|
59
|
+
activerecord (= 6.1.5)
|
60
|
+
activesupport (= 6.1.5)
|
61
|
+
marcel (~> 1.0)
|
62
62
|
mini_mime (>= 1.1.0)
|
63
|
-
activesupport (6.1.
|
63
|
+
activesupport (6.1.5)
|
64
64
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
65
65
|
i18n (>= 1.6, < 2)
|
66
66
|
minitest (>= 5.1)
|
@@ -71,120 +71,120 @@ GEM
|
|
71
71
|
coderay (1.1.3)
|
72
72
|
concurrent-ruby (1.1.9)
|
73
73
|
crass (1.0.6)
|
74
|
-
diff-lcs (1.
|
74
|
+
diff-lcs (1.5.0)
|
75
75
|
erubi (1.10.0)
|
76
|
-
globalid (0.
|
77
|
-
activesupport (>=
|
78
|
-
i18n (1.
|
76
|
+
globalid (1.0.0)
|
77
|
+
activesupport (>= 5.0)
|
78
|
+
i18n (1.10.0)
|
79
79
|
concurrent-ruby (~> 1.0)
|
80
|
-
loofah (2.
|
80
|
+
loofah (2.15.0)
|
81
81
|
crass (~> 1.0.2)
|
82
82
|
nokogiri (>= 1.5.9)
|
83
83
|
mail (2.7.1)
|
84
84
|
mini_mime (>= 0.1.1)
|
85
|
-
marcel (1.0.
|
85
|
+
marcel (1.0.2)
|
86
86
|
method_source (1.0.0)
|
87
|
-
mini_mime (1.1.
|
88
|
-
minitest (5.
|
89
|
-
nio4r (2.5.
|
90
|
-
nokogiri (1.
|
87
|
+
mini_mime (1.1.2)
|
88
|
+
minitest (5.15.0)
|
89
|
+
nio4r (2.5.8)
|
90
|
+
nokogiri (1.13.3-x86_64-darwin)
|
91
91
|
racc (~> 1.4)
|
92
|
-
parallel (1.
|
93
|
-
parser (3.
|
92
|
+
parallel (1.21.0)
|
93
|
+
parser (3.1.1.0)
|
94
94
|
ast (~> 2.4.1)
|
95
95
|
pry (0.13.1)
|
96
96
|
coderay (~> 1.1)
|
97
97
|
method_source (~> 1.0)
|
98
|
-
racc (1.
|
98
|
+
racc (1.6.0)
|
99
99
|
rack (2.2.3)
|
100
100
|
rack-test (1.1.0)
|
101
101
|
rack (>= 1.0, < 3)
|
102
|
-
rails (6.1.
|
103
|
-
actioncable (= 6.1.
|
104
|
-
actionmailbox (= 6.1.
|
105
|
-
actionmailer (= 6.1.
|
106
|
-
actionpack (= 6.1.
|
107
|
-
actiontext (= 6.1.
|
108
|
-
actionview (= 6.1.
|
109
|
-
activejob (= 6.1.
|
110
|
-
activemodel (= 6.1.
|
111
|
-
activerecord (= 6.1.
|
112
|
-
activestorage (= 6.1.
|
113
|
-
activesupport (= 6.1.
|
102
|
+
rails (6.1.5)
|
103
|
+
actioncable (= 6.1.5)
|
104
|
+
actionmailbox (= 6.1.5)
|
105
|
+
actionmailer (= 6.1.5)
|
106
|
+
actionpack (= 6.1.5)
|
107
|
+
actiontext (= 6.1.5)
|
108
|
+
actionview (= 6.1.5)
|
109
|
+
activejob (= 6.1.5)
|
110
|
+
activemodel (= 6.1.5)
|
111
|
+
activerecord (= 6.1.5)
|
112
|
+
activestorage (= 6.1.5)
|
113
|
+
activesupport (= 6.1.5)
|
114
114
|
bundler (>= 1.15.0)
|
115
|
-
railties (= 6.1.
|
115
|
+
railties (= 6.1.5)
|
116
116
|
sprockets-rails (>= 2.0.0)
|
117
117
|
rails-dom-testing (2.0.3)
|
118
118
|
activesupport (>= 4.2.0)
|
119
119
|
nokogiri (>= 1.6)
|
120
|
-
rails-html-sanitizer (1.
|
120
|
+
rails-html-sanitizer (1.4.2)
|
121
121
|
loofah (~> 2.3)
|
122
|
-
railties (6.1.
|
123
|
-
actionpack (= 6.1.
|
124
|
-
activesupport (= 6.1.
|
122
|
+
railties (6.1.5)
|
123
|
+
actionpack (= 6.1.5)
|
124
|
+
activesupport (= 6.1.5)
|
125
125
|
method_source
|
126
|
-
rake (>=
|
126
|
+
rake (>= 12.2)
|
127
127
|
thor (~> 1.0)
|
128
|
-
rainbow (3.
|
128
|
+
rainbow (3.1.1)
|
129
129
|
rake (13.0.6)
|
130
|
-
regexp_parser (2.
|
130
|
+
regexp_parser (2.2.1)
|
131
131
|
rexml (3.2.5)
|
132
|
-
rspec (3.
|
133
|
-
rspec-core (~> 3.
|
134
|
-
rspec-expectations (~> 3.
|
135
|
-
rspec-mocks (~> 3.
|
136
|
-
rspec-core (3.
|
137
|
-
rspec-support (~> 3.
|
138
|
-
rspec-expectations (3.
|
132
|
+
rspec (3.11.0)
|
133
|
+
rspec-core (~> 3.11.0)
|
134
|
+
rspec-expectations (~> 3.11.0)
|
135
|
+
rspec-mocks (~> 3.11.0)
|
136
|
+
rspec-core (3.11.0)
|
137
|
+
rspec-support (~> 3.11.0)
|
138
|
+
rspec-expectations (3.11.0)
|
139
139
|
diff-lcs (>= 1.2.0, < 2.0)
|
140
|
-
rspec-support (~> 3.
|
141
|
-
rspec-mocks (3.
|
140
|
+
rspec-support (~> 3.11.0)
|
141
|
+
rspec-mocks (3.11.0)
|
142
142
|
diff-lcs (>= 1.2.0, < 2.0)
|
143
|
-
rspec-support (~> 3.
|
144
|
-
rspec-rails (
|
145
|
-
actionpack (>=
|
146
|
-
activesupport (>=
|
147
|
-
railties (>=
|
143
|
+
rspec-support (~> 3.11.0)
|
144
|
+
rspec-rails (5.1.1)
|
145
|
+
actionpack (>= 5.2)
|
146
|
+
activesupport (>= 5.2)
|
147
|
+
railties (>= 5.2)
|
148
148
|
rspec-core (~> 3.10)
|
149
149
|
rspec-expectations (~> 3.10)
|
150
150
|
rspec-mocks (~> 3.10)
|
151
151
|
rspec-support (~> 3.10)
|
152
|
-
rspec-support (3.
|
153
|
-
rubocop (1.
|
152
|
+
rspec-support (3.11.0)
|
153
|
+
rubocop (1.26.0)
|
154
154
|
parallel (~> 1.10)
|
155
|
-
parser (>= 3.
|
155
|
+
parser (>= 3.1.0.0)
|
156
156
|
rainbow (>= 2.2.2, < 4.0)
|
157
157
|
regexp_parser (>= 1.8, < 3.0)
|
158
158
|
rexml
|
159
|
-
rubocop-ast (>= 1.
|
159
|
+
rubocop-ast (>= 1.16.0, < 2.0)
|
160
160
|
ruby-progressbar (~> 1.7)
|
161
161
|
unicode-display_width (>= 1.4.0, < 3.0)
|
162
|
-
rubocop-ast (1.
|
163
|
-
parser (>= 3.
|
162
|
+
rubocop-ast (1.16.0)
|
163
|
+
parser (>= 3.1.1.0)
|
164
164
|
rubocop-rake (0.6.0)
|
165
165
|
rubocop (~> 1.0)
|
166
|
-
rubocop-rspec (2.
|
167
|
-
rubocop (~> 1.
|
168
|
-
rubocop-ast (>= 1.1.0)
|
166
|
+
rubocop-rspec (2.9.0)
|
167
|
+
rubocop (~> 1.19)
|
169
168
|
ruby-progressbar (1.11.0)
|
170
|
-
sprockets (4.0.
|
169
|
+
sprockets (4.0.3)
|
171
170
|
concurrent-ruby (~> 1.0)
|
172
171
|
rack (> 1, < 3)
|
173
|
-
sprockets-rails (3.
|
174
|
-
actionpack (>=
|
175
|
-
activesupport (>=
|
172
|
+
sprockets-rails (3.4.2)
|
173
|
+
actionpack (>= 5.2)
|
174
|
+
activesupport (>= 5.2)
|
176
175
|
sprockets (>= 3.0.0)
|
177
|
-
thor (1.1
|
176
|
+
thor (1.2.1)
|
178
177
|
tzinfo (2.0.4)
|
179
178
|
concurrent-ruby (~> 1.0)
|
180
|
-
unicode-display_width (2.
|
179
|
+
unicode-display_width (2.1.0)
|
181
180
|
websocket-driver (0.7.5)
|
182
181
|
websocket-extensions (>= 0.1.0)
|
183
182
|
websocket-extensions (0.1.5)
|
184
|
-
zeitwerk (2.4
|
183
|
+
zeitwerk (2.5.4)
|
185
184
|
|
186
185
|
PLATFORMS
|
187
186
|
x86_64-darwin-19
|
187
|
+
x86_64-darwin-20
|
188
188
|
|
189
189
|
DEPENDENCIES
|
190
190
|
json_errors!
|
data/README.md
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+

|
1
2
|
# JsonErrors
|
2
3
|
|
3
4
|
Welcome to Ruby on Rails gem for handling the JSON API errors.
|
@@ -20,113 +21,9 @@ Or install it yourself as:
|
|
20
21
|
|
21
22
|
___
|
22
23
|
## Usage
|
23
|
-
### Basic usage
|
24
24
|
|
25
|
-
|
26
|
-
```
|
27
|
-
> rails g json_errors:install
|
28
|
-
create config/initializers/json_errors.rb
|
29
|
-
```
|
30
|
-
|
31
|
-
It creates the initializer file with config. Check out the file and uncomment what you need.
|
32
|
-
|
33
|
-
Then include `JsonErrors::Rescuer` to your JSON API controller and start raising errors.
|
34
|
-
```ruby
|
35
|
-
class UsersController < ApplicationController
|
36
|
-
include JsonErrors::Rescuer
|
37
|
-
|
38
|
-
def create
|
39
|
-
user = User.create!(params.require(:name))
|
40
|
-
|
41
|
-
head :created
|
42
|
-
end
|
43
|
-
end
|
44
|
-
```
|
45
|
-
Be sure to use error throwing methods everywhere, like `create!`, `save!`, `find_by!`, etc. The gem will rescue from any exception and respond with a properly formatted JSON body with a custom error code.
|
46
|
-
|
47
|
-
No need for `rescue_from` or rendering the JSON error body. Every error is rescued, logged, formatted and rendered. The client application will receive a JSON body like this:
|
48
|
-
|
49
|
-
```json
|
50
|
-
{
|
51
|
-
"code":1010,
|
52
|
-
"message":"The parameter 'name' is missing or value is empty",
|
53
|
-
"payload":[]
|
54
|
-
}
|
55
|
-
```
|
56
|
-
|
57
|
-
### Custom codes
|
58
|
-
|
59
|
-
The initializer file defines custom error codes and error dictionary:
|
60
|
-
```ruby
|
61
|
-
JsonErrors.configure do |config|
|
62
|
-
config.custom_codes = {
|
63
|
-
general_error: { code: 1001, http_status: 500 },
|
64
|
-
not_found: { code: 1002, http_status: 404 },
|
65
|
-
database_error: { code: 1003, http_status: 500 },
|
66
|
-
parameter_missing: { code: 1010, http_status: 400 },
|
67
|
-
validation_failed: { code: 1020, http_status: 422 },
|
68
|
-
internal_server_error: { code: 1000, http_status: 500 }
|
69
|
-
}
|
70
|
-
|
71
|
-
config.error_dictionary = {
|
72
|
-
ActiveRecord::RecordInvalid => :validation_failed,
|
73
|
-
ActionController::ParameterMissing => :parameter_missing,
|
74
|
-
ActiveRecord::RecordNotFound => :not_found,
|
75
|
-
ActiveRecord::ActiveRecordError => :database_error,
|
76
|
-
StandardError => :internal_server_error
|
77
|
-
}
|
78
|
-
end
|
79
|
-
```
|
80
|
-
|
81
|
-
The `custom_codes` hash assigns the error label to the error code and HTTP status code of the response.
|
82
|
-
So, the error labelled with `:general_error` will be considered as `1001` code under the HTTP `500 Internal Server Error` response.
|
83
|
-
Codes are customizable. They can be either numeric or string.
|
84
|
-
|
85
|
-
The `error_dictionary` hash defines what error classes are connected to which error codes.
|
86
|
-
|
87
|
-
You can create different custom codes and connect them to your error classes.
|
88
|
-
Lets say you have authentication and you want to respond with HTTP `403 Forbidden` whenever someone is unauthenticated. You can do it 2 ways:
|
89
|
-
|
90
|
-
### **1. By handling custom error class**
|
25
|
+
Check out the [manual](https://github.com/nomtek/JsonErrors/wiki)
|
91
26
|
|
92
|
-
Add new label to the `custom_codes`
|
93
|
-
```ruby
|
94
|
-
unauthenticated: { code: 2001, http_status: 403 }
|
95
|
-
```
|
96
|
-
and your error class to the `error_dictionary`:
|
97
|
-
```ruby
|
98
|
-
Unauthenticated => :unauthenticated
|
99
|
-
```
|
100
|
-
|
101
|
-
Then just raise the error while checking the authentication.
|
102
|
-
|
103
|
-
```ruby
|
104
|
-
Unauthenticated = Class.new(StandardError)
|
105
|
-
|
106
|
-
raise Unauthenticated, 'Authentication needed'
|
107
|
-
```
|
108
|
-
|
109
|
-
|
110
|
-
### **2. By raising error by label**
|
111
|
-
Add new label to the `custom_codes`
|
112
|
-
```ruby
|
113
|
-
unauthenticated: { code: 2001, http_status: 403 }
|
114
|
-
```
|
115
|
-
Then just raise the error while checking the authentication.
|
116
|
-
|
117
|
-
```ruby
|
118
|
-
raise JsonErrors::ApplicationError.unauthenticated('Authentication needed')
|
119
|
-
```
|
120
|
-
|
121
|
-
Both cases you will get the HTTP `403 Forbidden` response with JSON formatted body:
|
122
|
-
|
123
|
-
```json
|
124
|
-
{
|
125
|
-
"code":2001,
|
126
|
-
"message":"Authentication needed",
|
127
|
-
"payload":[]
|
128
|
-
}
|
129
|
-
```
|
130
27
|
___
|
131
28
|
|
132
29
|
## Development
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
JsonErrors.configure do |config|
|
4
|
+
config.custom_codes = {
|
5
|
+
# general_error: { code: 1001, http_status: 500 },
|
6
|
+
# not_found: { code: 1002, http_status: 404 },
|
7
|
+
# database_error: { code: 1003, http_status: 500 },
|
8
|
+
# parameter_missing: { code: 1010, http_status: 400 },
|
9
|
+
# validation_failed: { code: 1020, http_status: 422 },
|
10
|
+
internal_server_error: { code: 1000, http_status: 500 }
|
11
|
+
}
|
12
|
+
|
13
|
+
config.error_dictionary = {
|
14
|
+
# Uncomment the following lines according to needs.
|
15
|
+
# They are caught and rescued in a cascade manned top to bottom.
|
16
|
+
|
17
|
+
# ActiveRecord::RecordInvalid => :validation_failed,
|
18
|
+
# ActionController::ParameterMissing => :parameter_missing,
|
19
|
+
# ActiveRecord::RecordNotFound => :not_found,
|
20
|
+
# ActiveRecord::ActiveRecordError => :database_error,
|
21
|
+
StandardError => :internal_server_error
|
22
|
+
}
|
23
|
+
end
|
data/json_errors.gemspec
CHANGED
@@ -16,7 +16,8 @@ Gem::Specification.new do |spec|
|
|
16
16
|
|
17
17
|
spec.metadata['homepage_uri'] = spec.homepage
|
18
18
|
spec.metadata['source_code_uri'] = 'https://github.com/nomtek/JsonErrors'
|
19
|
-
spec.metadata['changelog_uri'] = 'https://github.com/nomtek/JsonErrors/CHANGELOG.md'
|
19
|
+
spec.metadata['changelog_uri'] = 'https://github.com/nomtek/JsonErrors/blob/main/CHANGELOG.md'
|
20
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
20
21
|
|
21
22
|
# Specify which files should be added to the gem when it is released.
|
22
23
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
@@ -3,21 +3,21 @@
|
|
3
3
|
JsonErrors.configure do |config|
|
4
4
|
config.custom_codes = {
|
5
5
|
# general_error: { code: 1001, http_status: 500 },
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
6
|
+
not_found: { code: 1002, http_status: 404 },
|
7
|
+
database_error: { code: 1003, http_status: 500 },
|
8
|
+
parameter_missing: { code: 1010, http_status: 400 },
|
9
|
+
validation_failed: { code: 1020, http_status: 422, validation_errors: :active_record },
|
10
10
|
internal_server_error: { code: 1000, http_status: 500 }
|
11
11
|
}
|
12
12
|
|
13
13
|
config.error_dictionary = {
|
14
|
-
# Uncomment the following lines according to needs.
|
15
|
-
# They are caught and rescued in a cascade
|
14
|
+
# Uncomment or comment the following lines according to needs.
|
15
|
+
# They are caught and rescued in a cascade manner top to bottom.
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
17
|
+
ActiveRecord::RecordInvalid => :validation_failed,
|
18
|
+
ActionController::ParameterMissing => :parameter_missing,
|
19
|
+
ActiveRecord::RecordNotFound => :not_found,
|
20
|
+
ActiveRecord::ActiveRecordError => :database_error,
|
21
21
|
StandardError => :internal_server_error
|
22
22
|
}
|
23
23
|
end
|
data/lib/json_errors/config.rb
CHANGED
@@ -3,9 +3,18 @@
|
|
3
3
|
require 'singleton'
|
4
4
|
|
5
5
|
module JsonErrors
|
6
|
+
# Main config class. It brings all the customizable params.
|
6
7
|
class Config
|
7
8
|
include Singleton
|
8
9
|
|
9
10
|
attr_accessor :error_dictionary, :custom_codes
|
11
|
+
|
12
|
+
def self.missing_config_error_meesage
|
13
|
+
<<~'MSG'
|
14
|
+
Configuration is missing. Run the generattor: `bundle exec rails g json_errors::install`
|
15
|
+
or create the initializer yourself.
|
16
|
+
Check out the README https://github.com/nomtek/JsonErrors/blob/main/README.md
|
17
|
+
MSG
|
18
|
+
end
|
10
19
|
end
|
11
20
|
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module JsonErrors
|
4
|
+
# Main error class to be rescued from
|
5
|
+
class BasicError < StandardError
|
6
|
+
attr_reader :code
|
7
|
+
|
8
|
+
def initialize(msg, name)
|
9
|
+
raise 'Wrong name' unless name.in?(codes.keys)
|
10
|
+
|
11
|
+
@code = codes[name][:code]
|
12
|
+
@name = name
|
13
|
+
super(msg)
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.codes
|
17
|
+
JsonErrors.config.custom_codes
|
18
|
+
end
|
19
|
+
|
20
|
+
def to_json(_options = nil)
|
21
|
+
{
|
22
|
+
code: code,
|
23
|
+
message: message
|
24
|
+
}.to_json
|
25
|
+
end
|
26
|
+
|
27
|
+
def http_status
|
28
|
+
codes[name][:http_status]
|
29
|
+
end
|
30
|
+
|
31
|
+
private
|
32
|
+
|
33
|
+
attr_reader :name
|
34
|
+
|
35
|
+
def codes
|
36
|
+
self.class.codes
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module JsonErrors
|
4
|
+
# Error class for custom payload errors
|
5
|
+
class CustomPayloadError < BasicError
|
6
|
+
attr_accessor :payload
|
7
|
+
|
8
|
+
def initialize(msg, name, payload)
|
9
|
+
super(msg, name)
|
10
|
+
@payload = payload
|
11
|
+
end
|
12
|
+
|
13
|
+
def to_json(_options = nil)
|
14
|
+
{
|
15
|
+
code: code,
|
16
|
+
message: message,
|
17
|
+
payload: payload
|
18
|
+
}.to_json
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module JsonErrors
|
4
|
+
# Error class for custom payload errors
|
5
|
+
class ValidationError < BasicError
|
6
|
+
def initialize(msg, name, record)
|
7
|
+
super(msg, name)
|
8
|
+
raise 'Wrong record' unless record.respond_to?(:errors)
|
9
|
+
|
10
|
+
@record = record
|
11
|
+
end
|
12
|
+
|
13
|
+
def to_json(_options = nil)
|
14
|
+
{
|
15
|
+
code: code,
|
16
|
+
message: message,
|
17
|
+
payload: payload
|
18
|
+
}.to_json
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
attr_reader :record
|
24
|
+
|
25
|
+
def payload
|
26
|
+
validation_payload = []
|
27
|
+
record.errors.each do |key, messages|
|
28
|
+
validation_payload << { key => messages }
|
29
|
+
end
|
30
|
+
|
31
|
+
{ record.class.to_s => validation_payload }
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module JsonErrors
|
4
|
+
# Error facade
|
5
|
+
class Error
|
6
|
+
def self.method_missing(name, *args)
|
7
|
+
message, payload = args
|
8
|
+
return super unless name.in?(codes.keys)
|
9
|
+
|
10
|
+
return BasicError.new(message, name) if payload.nil?
|
11
|
+
return ValidationError.new(message, name, payload&.record) if codes[name][:validation_errors] == :active_record
|
12
|
+
|
13
|
+
CustomPayloadError.new(message, name, payload)
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.respond_to_missing?(name, _respond_to_private = false)
|
17
|
+
name.in?(codes.keys) || super
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.codes
|
21
|
+
JsonErrors.config.custom_codes
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
data/lib/json_errors/rescuer.rb
CHANGED
@@ -9,14 +9,17 @@ module JsonErrors
|
|
9
9
|
|
10
10
|
included do
|
11
11
|
error_dictionary = JsonErrors.config.error_dictionary
|
12
|
+
raise JsonErrors::Config.missing_config_error_meesage if error_dictionary.blank?
|
13
|
+
raise JsonErrors::Config.missing_config_error_meesage if JsonErrors.config.custom_codes.blank?
|
14
|
+
|
12
15
|
error_dictionary.keys.reverse.each do |error_class|
|
13
16
|
rescue_from error_class do |error|
|
14
17
|
log_error(error)
|
15
|
-
render_error
|
18
|
+
render_error JsonErrors::Error.send(error_dictionary[error_class], error)
|
16
19
|
end
|
17
20
|
end
|
18
21
|
|
19
|
-
rescue_from
|
22
|
+
rescue_from JsonErrors::BasicError do |error|
|
20
23
|
log_error(error)
|
21
24
|
render_error(error)
|
22
25
|
end
|
@@ -27,7 +30,7 @@ module JsonErrors
|
|
27
30
|
end
|
28
31
|
|
29
32
|
def log_error(error)
|
30
|
-
Rails.logger.error "#{error.class}: #{error}"
|
33
|
+
Rails.logger.error "#{error.class}: #{error.message}"
|
31
34
|
Rails.logger.debug error.backtrace.join("\n")
|
32
35
|
end
|
33
36
|
end
|
data/lib/json_errors/version.rb
CHANGED
data/lib/json_errors.rb
CHANGED
@@ -2,7 +2,10 @@
|
|
2
2
|
|
3
3
|
require_relative 'json_errors/version'
|
4
4
|
require_relative 'json_errors/config'
|
5
|
-
require_relative 'json_errors/
|
5
|
+
require_relative 'json_errors/error'
|
6
|
+
require_relative 'json_errors/error/basic_error'
|
7
|
+
require_relative 'json_errors/error/custom_payload_error'
|
8
|
+
require_relative 'json_errors/error/validation_error'
|
6
9
|
require_relative 'json_errors/rescuer'
|
7
10
|
|
8
11
|
# Main module
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: json_errors
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Łukasz Pająk
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2022-03-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -45,13 +45,17 @@ files:
|
|
45
45
|
- Rakefile
|
46
46
|
- bin/console
|
47
47
|
- bin/setup
|
48
|
+
- config/initializers/json_errors.rb
|
48
49
|
- json_errors.gemspec
|
49
50
|
- lib/generators/json_errors/install/USAGE
|
50
51
|
- lib/generators/json_errors/install/install_generator.rb
|
51
52
|
- lib/generators/json_errors/install/templates/json_errors.rb
|
52
53
|
- lib/json_errors.rb
|
53
|
-
- lib/json_errors/application_error.rb
|
54
54
|
- lib/json_errors/config.rb
|
55
|
+
- lib/json_errors/error.rb
|
56
|
+
- lib/json_errors/error/basic_error.rb
|
57
|
+
- lib/json_errors/error/custom_payload_error.rb
|
58
|
+
- lib/json_errors/error/validation_error.rb
|
55
59
|
- lib/json_errors/rescuer.rb
|
56
60
|
- lib/json_errors/version.rb
|
57
61
|
homepage: https://github.com/nomtek/JsonErrors
|
@@ -60,7 +64,8 @@ licenses:
|
|
60
64
|
metadata:
|
61
65
|
homepage_uri: https://github.com/nomtek/JsonErrors
|
62
66
|
source_code_uri: https://github.com/nomtek/JsonErrors
|
63
|
-
changelog_uri: https://github.com/nomtek/JsonErrors/CHANGELOG.md
|
67
|
+
changelog_uri: https://github.com/nomtek/JsonErrors/blob/main/CHANGELOG.md
|
68
|
+
rubygems_mfa_required: 'true'
|
64
69
|
post_install_message:
|
65
70
|
rdoc_options: []
|
66
71
|
require_paths:
|
@@ -76,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
81
|
- !ruby/object:Gem::Version
|
77
82
|
version: '0'
|
78
83
|
requirements: []
|
79
|
-
rubygems_version: 3.
|
84
|
+
rubygems_version: 3.3.7
|
80
85
|
signing_key:
|
81
86
|
specification_version: 4
|
82
87
|
summary: RoR JSON API errors handling gem
|
@@ -1,58 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module JsonErrors
|
4
|
-
# Main error class to be rescued from
|
5
|
-
class ApplicationError < StandardError
|
6
|
-
attr_reader :code, :payload
|
7
|
-
|
8
|
-
def initialize(msg, name, payload = [])
|
9
|
-
raise 'Wrong name' unless name.in?(codes.keys)
|
10
|
-
|
11
|
-
@code = codes[name][:code]
|
12
|
-
@name = name
|
13
|
-
@payload = payload
|
14
|
-
super(msg)
|
15
|
-
end
|
16
|
-
|
17
|
-
def self.method_missing(name, *args)
|
18
|
-
error = args.first
|
19
|
-
return super if error.nil?
|
20
|
-
return super unless name.in?(codes.keys)
|
21
|
-
return new(error.to_s, name) unless error.respond_to?(:record)
|
22
|
-
|
23
|
-
validation_payload = []
|
24
|
-
error.record.errors.each do |key, messages|
|
25
|
-
validation_payload << { key => messages }
|
26
|
-
end
|
27
|
-
new(error.to_s, name, validation_payload)
|
28
|
-
end
|
29
|
-
|
30
|
-
def self.respond_to_missing?(name, _respond_to_private = false)
|
31
|
-
name.in?(codes.keys) || super
|
32
|
-
end
|
33
|
-
|
34
|
-
def self.codes
|
35
|
-
JsonErrors.config.custom_codes
|
36
|
-
end
|
37
|
-
|
38
|
-
def to_json(_options = nil)
|
39
|
-
{
|
40
|
-
code: code,
|
41
|
-
message: message,
|
42
|
-
payload: payload
|
43
|
-
}.to_json
|
44
|
-
end
|
45
|
-
|
46
|
-
def http_status
|
47
|
-
codes[name][:http_status]
|
48
|
-
end
|
49
|
-
|
50
|
-
private
|
51
|
-
|
52
|
-
attr_reader :name
|
53
|
-
|
54
|
-
def codes
|
55
|
-
self.class.codes
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|