protobuf-activerecord 6.1.0 → 7.1.0
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/.rubocop.yml +2 -27
- data/.standard.yml +3 -0
- data/CHANGELOG.md +13 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/LICENSE.txt +17 -18
- data/README.md +8 -4
- data/Rakefile +13 -9
- data/lib/protobuf/active_record/attribute_methods.rb +2 -2
- data/lib/protobuf/active_record/columns.rb +3 -5
- data/lib/protobuf/active_record/middleware/connection_management_async.rb +2 -3
- data/lib/protobuf/active_record/middleware/query_cache.rb +1 -3
- data/lib/protobuf/active_record/nested_attributes.rb +2 -2
- data/lib/protobuf/active_record/persistence.rb +6 -6
- data/lib/protobuf/active_record/scope.rb +10 -10
- data/lib/protobuf/active_record/serialization.rb +29 -34
- data/lib/protobuf/active_record/transformation.rb +22 -25
- data/lib/protobuf/active_record/transformer.rb +1 -1
- data/lib/protobuf/active_record/version.rb +1 -1
- metadata +20 -174
- data/.gitignore +0 -12
- data/.travis.yml +0 -4
- data/Gemfile +0 -4
- data/protobuf-activerecord.gemspec +0 -43
- data/spec/protobuf/active_record/columns_spec.rb +0 -100
- data/spec/protobuf/active_record/nested_attributes_spec.rb +0 -28
- data/spec/protobuf/active_record/persistence_spec.rb +0 -70
- data/spec/protobuf/active_record/scope_spec.rb +0 -201
- data/spec/protobuf/active_record/serialization_spec.rb +0 -208
- data/spec/protobuf/active_record/transformation_spec.rb +0 -254
- data/spec/protobuf/active_record/transformer_spec.rb +0 -42
- data/spec/spec_helper.rb +0 -27
- data/spec/support/db/setup.rb +0 -29
- data/spec/support/db.rb +0 -1
- data/spec/support/definitions/messages.proto +0 -23
- data/spec/support/models/photo.rb +0 -3
- data/spec/support/models/user.rb +0 -53
- data/spec/support/models.rb +0 -2
- data/spec/support/protobuf/messages.pb.rb +0 -41
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7bc4240e3a09e5096128e31fa18dbd04aae1f3a053e1b77928a446c74ffa97c9
|
4
|
+
data.tar.gz: 1f27900848c3d25372398cf6faa872056f528ec2c871cf8cc1e9da460cc0b895
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b72e52b18db91e69b455418fe3063cd073b988b89832077cba73fc6fce72e860cd4b5e8f3034e1276ef495669a1b2128060457416719b69301e928cf56106214
|
7
|
+
data.tar.gz: d299f498ef5d6cea450d0e4e0bbfdb48c4d755f6edfd9536b3f6823823817921a9db70c000b07e1a5ee283e489800c49a118c550ac9047d2443351e992f1cc3c
|
data/.rubocop.yml
CHANGED
@@ -1,28 +1,3 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
---
|
3
2
|
inherit_gem:
|
4
|
-
|
5
|
-
|
6
|
-
# Styles that are modified from the defaults
|
7
|
-
AllCops:
|
8
|
-
TargetRubyVersion: 2.5
|
9
|
-
Exclude:
|
10
|
-
- "**/*.pb.rb"
|
11
|
-
|
12
|
-
Style/BlockDelimiters:
|
13
|
-
Description: >-
|
14
|
-
Avoid using {...} for multi-line blocks (multiline chaining is always ugly).
|
15
|
-
Prefer {...} over do...end for single-line blocks.
|
16
|
-
Exclude:
|
17
|
-
- "spec/**/*"
|
18
|
-
|
19
|
-
Style/HashSyntax:
|
20
|
-
Description: >-
|
21
|
-
Prefer Ruby 1.8 hash syntax { :a => 1, :b => 2 } over 1.9 syntax { a: 1, b: 2 }.
|
22
|
-
EnforcedStyle: hash_rockets
|
23
|
-
Exclude:
|
24
|
-
- "Gemfile"
|
25
|
-
|
26
|
-
Layout/SpaceAroundOperators:
|
27
|
-
Exclude:
|
28
|
-
- "*.gemspec"
|
3
|
+
standard: config/ruby-2.7.yml
|
data/.standard.yml
ADDED
data/CHANGELOG.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
All notable changes to this project will be documented in this file.
|
2
|
+
|
3
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
4
|
+
|
5
|
+
Protobuf Active Record adheres to a shifted version of [semver](https://semver.org/spec/v2.0.0.html)
|
6
|
+
(a la Rails): major/minor versions shadow Rails [versions](https://guides.rubyonrails.org/maintenance_policy.html#versioning)
|
7
|
+
since it depends on specific Rails versions.
|
8
|
+
|
9
|
+
## [Unreleased]
|
10
|
+
|
11
|
+
## [7.0.0] – 2024-03-03
|
12
|
+
|
13
|
+
- Added Rails 7.0 support
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
9
|
+
nationality, personal appearance, race, caste, color, religion, or sexual
|
10
|
+
identity and orientation.
|
11
|
+
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
13
|
+
diverse, inclusive, and healthy community.
|
14
|
+
|
15
|
+
## Our Standards
|
16
|
+
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
18
|
+
community include:
|
19
|
+
|
20
|
+
* Demonstrating empathy and kindness toward other people
|
21
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
22
|
+
* Giving and gracefully accepting constructive feedback
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
24
|
+
and learning from the experience
|
25
|
+
* Focusing on what is best not just for us as individuals, but for the overall
|
26
|
+
community
|
27
|
+
|
28
|
+
Examples of unacceptable behavior include:
|
29
|
+
|
30
|
+
* The use of sexualized language or imagery, and sexual attention or advances of
|
31
|
+
any kind
|
32
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
33
|
+
* Public or private harassment
|
34
|
+
* Publishing others' private information, such as a physical or email address,
|
35
|
+
without their explicit permission
|
36
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
37
|
+
professional setting
|
38
|
+
|
39
|
+
## Enforcement Responsibilities
|
40
|
+
|
41
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
42
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
43
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
44
|
+
or harmful.
|
45
|
+
|
46
|
+
Community leaders have the right and responsibility to remove, edit, or reject
|
47
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
48
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
49
|
+
decisions when appropriate.
|
50
|
+
|
51
|
+
## Scope
|
52
|
+
|
53
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
54
|
+
an individual is officially representing the community in public spaces.
|
55
|
+
Examples of representing our community include using an official email address,
|
56
|
+
posting via an official social media account, or acting as an appointed
|
57
|
+
representative at an online or offline event.
|
58
|
+
|
59
|
+
## Enforcement
|
60
|
+
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
62
|
+
reported to the community leaders responsible for enforcement at
|
63
|
+
[INSERT CONTACT METHOD].
|
64
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
65
|
+
|
66
|
+
All community leaders are obligated to respect the privacy and security of the
|
67
|
+
reporter of any incident.
|
68
|
+
|
69
|
+
## Enforcement Guidelines
|
70
|
+
|
71
|
+
Community leaders will follow these Community Impact Guidelines in determining
|
72
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
73
|
+
|
74
|
+
### 1. Correction
|
75
|
+
|
76
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
77
|
+
unprofessional or unwelcome in the community.
|
78
|
+
|
79
|
+
**Consequence**: A private, written warning from community leaders, providing
|
80
|
+
clarity around the nature of the violation and an explanation of why the
|
81
|
+
behavior was inappropriate. A public apology may be requested.
|
82
|
+
|
83
|
+
### 2. Warning
|
84
|
+
|
85
|
+
**Community Impact**: A violation through a single incident or series of
|
86
|
+
actions.
|
87
|
+
|
88
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
89
|
+
interaction with the people involved, including unsolicited interaction with
|
90
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
91
|
+
includes avoiding interactions in community spaces as well as external channels
|
92
|
+
like social media. Violating these terms may lead to a temporary or permanent
|
93
|
+
ban.
|
94
|
+
|
95
|
+
### 3. Temporary Ban
|
96
|
+
|
97
|
+
**Community Impact**: A serious violation of community standards, including
|
98
|
+
sustained inappropriate behavior.
|
99
|
+
|
100
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
101
|
+
communication with the community for a specified period of time. No public or
|
102
|
+
private interaction with the people involved, including unsolicited interaction
|
103
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
104
|
+
Violating these terms may lead to a permanent ban.
|
105
|
+
|
106
|
+
### 4. Permanent Ban
|
107
|
+
|
108
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
109
|
+
standards, including sustained inappropriate behavior, harassment of an
|
110
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
111
|
+
|
112
|
+
**Consequence**: A permanent ban from any sort of public interaction within the
|
113
|
+
community.
|
114
|
+
|
115
|
+
## Attribution
|
116
|
+
|
117
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
118
|
+
version 2.1, available at
|
119
|
+
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
120
|
+
|
121
|
+
Community Impact Guidelines were inspired by
|
122
|
+
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
123
|
+
|
124
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
125
|
+
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
|
126
|
+
[https://www.contributor-covenant.org/translations][translations].
|
127
|
+
|
128
|
+
[homepage]: https://www.contributor-covenant.org
|
129
|
+
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
130
|
+
[Mozilla CoC]: https://github.com/mozilla/diversity
|
131
|
+
[FAQ]: https://www.contributor-covenant.org/faq
|
132
|
+
[translations]: https://www.contributor-covenant.org/translations
|
data/LICENSE.txt
CHANGED
@@ -1,22 +1,21 @@
|
|
1
|
-
|
1
|
+
The MIT License (MIT)
|
2
2
|
|
3
|
-
|
3
|
+
Copyright (c) 2024 Adam Hutchison
|
4
4
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
the following conditions:
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
12
11
|
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
15
14
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
OF
|
22
|
-
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
+
[](https://github.com/liveh2o/protobuf-activerecord/actions)
|
2
|
+
[](https://github.com/standardrb/standard)
|
1
3
|
[](http://badge.fury.io/rb/protobuf-activerecord)
|
2
|
-
[](https://travis-ci.org/liveh2o/protobuf-activerecord)
|
3
4
|
|
4
5
|
# Protobuf ActiveRecord
|
5
6
|
|
@@ -170,11 +171,12 @@ end
|
|
170
171
|
|
171
172
|
### Setting attributes to nil
|
172
173
|
|
173
|
-
The protocol buffers specification does not allow for the transport of 'null' or 'nil' values for a field.
|
174
|
+
The protocol buffers specification does not allow for the transport of 'null' or 'nil' values for a field. In fact, in order to keep messages small and lightweight this is desireable behavior. Fields are that are not set to a value will not be sent over the wire, but we cannot assume given a message has an absent value for a field that we should set the our attributes to nil.
|
174
175
|
|
175
|
-
In order to solve this problem, Protobuf::ActiveRecord has a convention that tells it when to set an attribute to nil.
|
176
|
+
In order to solve this problem, Protobuf::ActiveRecord has a convention that tells it when to set an attribute to nil. A message must define a repeated string field named 'nullify'. If an attribute has the same name as an element in the 'nullify' field, this attribute will be set to nil.
|
176
177
|
|
177
178
|
Example:
|
179
|
+
|
178
180
|
```
|
179
181
|
message UserMessage {
|
180
182
|
optional string name = 1;
|
@@ -182,14 +184,16 @@ message UserMessage {
|
|
182
184
|
}
|
183
185
|
|
184
186
|
```
|
187
|
+
|
185
188
|
```ruby
|
186
189
|
m = UserMessage.new(:nullify => [:name])
|
187
190
|
# When Protobuf::ActiveRecord maps this message, it will set the name attribute to nil overwriting any value that is set.
|
188
191
|
```
|
189
192
|
|
190
|
-
For attribute transformers, the field name will not match the attribute name so we need to give the attribute transformer a hint to instruct it on how to nullify a given attribute.
|
193
|
+
For attribute transformers, the field name will not match the attribute name so we need to give the attribute transformer a hint to instruct it on how to nullify a given attribute. When declaring an attribute transformer, you can specify a :nullify_on option. This indicates for the given attribute, if the value of 'nullify_on' is present in the nullify field, set this attribute to nil.
|
191
194
|
|
192
195
|
Example:
|
196
|
+
|
193
197
|
```Ruby
|
194
198
|
class User < ActiveRecord::Base
|
195
199
|
# When 'account_guid' is present in the nullify array, our 'account_id' attribute will be set to nil
|
data/Rakefile
CHANGED
@@ -1,24 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require "bundler/gem_tasks"
|
2
|
-
require "protobuf/tasks"
|
3
|
-
require "rspec/core/rake_task"
|
4
|
-
require "rubocop/rake_task"
|
5
4
|
|
6
|
-
|
7
|
-
::RuboCop::RakeTask.new(:rubocop)
|
5
|
+
require "rspec/core/rake_task"
|
8
6
|
|
9
7
|
desc "Run specs"
|
10
|
-
|
8
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
9
|
+
t.ruby_opts = %w[-w]
|
10
|
+
end
|
11
|
+
|
12
|
+
require "standard/rake"
|
11
13
|
|
12
14
|
desc "Run cops and specs (default)"
|
13
|
-
task :
|
15
|
+
task default: %i[spec standard:fix]
|
14
16
|
|
15
17
|
desc "Remove protobuf definitions that have been compiled"
|
16
18
|
task :clean do
|
17
|
-
|
19
|
+
FileUtils.rm(Dir.glob("spec/support/protobuf/**/*.proto"))
|
18
20
|
puts "Cleaned"
|
19
21
|
end
|
20
22
|
|
23
|
+
require "protobuf/tasks"
|
24
|
+
|
21
25
|
desc "Compile spec/support protobuf definitions"
|
22
26
|
task :compile, [] => :clean do
|
23
|
-
|
27
|
+
Rake::Task["protobuf:compile"].invoke("", "spec/support/definitions", "spec/support/protobuf")
|
24
28
|
end
|
@@ -18,7 +18,7 @@ module Protobuf
|
|
18
18
|
value = proto.__send__(:"#{field_alias}!")
|
19
19
|
value ||= proto.__send__(:"#{attribute}!") if proto.respond_to?(attribute)
|
20
20
|
|
21
|
-
|
21
|
+
_protobuf_convert_fields_to_attributes(attribute, value)
|
22
22
|
end
|
23
23
|
end
|
24
24
|
|
@@ -26,7 +26,7 @@ module Protobuf
|
|
26
26
|
lambda do |record|
|
27
27
|
value = record.__send__(field_alias)
|
28
28
|
|
29
|
-
|
29
|
+
_protobuf_convert_attributes_to_fields(attribute, value)
|
30
30
|
end
|
31
31
|
end
|
32
32
|
end
|
@@ -1,6 +1,4 @@
|
|
1
|
-
require "set"
|
2
1
|
require "active_support/concern"
|
3
|
-
require "thread"
|
4
2
|
|
5
3
|
module Protobuf
|
6
4
|
module ActiveRecord
|
@@ -14,9 +12,9 @@ module Protobuf
|
|
14
12
|
include ::Heredity
|
15
13
|
|
16
14
|
inheritable_attributes :_protobuf_columns,
|
17
|
-
|
18
|
-
|
19
|
-
|
15
|
+
:_protobuf_column_types,
|
16
|
+
:_protobuf_date_datetime_time_or_timestamp_column,
|
17
|
+
:_protobuf_mapped_columns
|
20
18
|
end
|
21
19
|
|
22
20
|
module ClassMethods
|
@@ -1,5 +1,4 @@
|
|
1
1
|
require "concurrent"
|
2
|
-
require "thread"
|
3
2
|
|
4
3
|
module Protobuf
|
5
4
|
module ActiveRecord
|
@@ -13,8 +12,8 @@ module Protobuf
|
|
13
12
|
return if timed_task_started.true?
|
14
13
|
|
15
14
|
args = {
|
16
|
-
:
|
17
|
-
:
|
15
|
+
execution_interval: ::Protobuf::ActiveRecord.config.connection_reaping_interval,
|
16
|
+
timeout_interval: ::Protobuf::ActiveRecord.config.connection_reaping_timeout_interval
|
18
17
|
}
|
19
18
|
timed_task = ::Concurrent::TimerTask.new(args) do
|
20
19
|
::ActiveRecord::Base.clear_active_connections!
|
@@ -1,5 +1,3 @@
|
|
1
|
-
require "thread"
|
2
|
-
|
3
1
|
module Protobuf
|
4
2
|
module ActiveRecord
|
5
3
|
module Middleware
|
@@ -20,7 +18,7 @@ module Protobuf
|
|
20
18
|
restore_query_cache_settings(enabled)
|
21
19
|
end
|
22
20
|
|
23
|
-
|
21
|
+
private
|
24
22
|
|
25
23
|
def restore_query_cache_settings(enabled)
|
26
24
|
::Thread.current[CURRENT_CONNECTION].clear_query_cache
|
@@ -37,7 +37,7 @@ module Protobuf
|
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
40
|
-
super
|
40
|
+
super
|
41
41
|
end
|
42
42
|
|
43
43
|
# :nodoc:
|
@@ -47,7 +47,7 @@ module Protobuf
|
|
47
47
|
attributes = reflection.klass.attributes_from_proto(attributes)
|
48
48
|
end
|
49
49
|
|
50
|
-
super
|
50
|
+
super
|
51
51
|
end
|
52
52
|
end
|
53
53
|
end
|
@@ -10,14 +10,14 @@ module Protobuf
|
|
10
10
|
def create(attributes = {}, &block)
|
11
11
|
attributes = attributes_from_proto(attributes) if attributes.is_a?(::Protobuf::Message)
|
12
12
|
|
13
|
-
super
|
13
|
+
super
|
14
14
|
end
|
15
15
|
|
16
16
|
# :nodoc:
|
17
17
|
def create!(attributes = {}, &block)
|
18
18
|
attributes = attributes_from_proto(attributes) if attributes.is_a?(::Protobuf::Message)
|
19
19
|
|
20
|
-
super
|
20
|
+
super
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
@@ -27,28 +27,28 @@ module Protobuf
|
|
27
27
|
def initialize(*args, &block)
|
28
28
|
args[0] = attributes_from_proto(args.first) if args.first.is_a?(::Protobuf::Message)
|
29
29
|
|
30
|
-
super
|
30
|
+
super
|
31
31
|
end
|
32
32
|
|
33
33
|
# :nodoc:
|
34
34
|
def assign_attributes(attributes)
|
35
35
|
attributes = attributes_from_proto(attributes) if attributes.is_a?(::Protobuf::Message)
|
36
36
|
|
37
|
-
super
|
37
|
+
super
|
38
38
|
end
|
39
39
|
|
40
40
|
# :nodoc:
|
41
41
|
def update(attributes)
|
42
42
|
attributes = attributes_from_proto(attributes) if attributes.is_a?(::Protobuf::Message)
|
43
43
|
|
44
|
-
super
|
44
|
+
super
|
45
45
|
end
|
46
46
|
|
47
47
|
# :nodoc:
|
48
48
|
def update!(attributes)
|
49
49
|
attributes = attributes_from_proto(attributes) if attributes.is_a?(::Protobuf::Message)
|
50
50
|
|
51
|
-
super
|
51
|
+
super
|
52
52
|
end
|
53
53
|
end
|
54
54
|
end
|
@@ -42,11 +42,11 @@ module Protobuf
|
|
42
42
|
#
|
43
43
|
def field_scope(field, options = {})
|
44
44
|
scope_name = if options.include?(:scope)
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
45
|
+
options[:scope]
|
46
|
+
else
|
47
|
+
# When no scope is defined, assume the scope is the field, prefixed with `by_`
|
48
|
+
:"by_#{field}"
|
49
|
+
end
|
50
50
|
searchable_fields[field] = scope_name
|
51
51
|
|
52
52
|
searchable_field_parsers[field] = options[:parser] if options[:parser]
|
@@ -56,7 +56,7 @@ module Protobuf
|
|
56
56
|
# use `all` instead of `scoped`.
|
57
57
|
# :noapi:
|
58
58
|
def model_scope
|
59
|
-
::ActiveRecord::VERSION::MAJOR >= 4 ? all : scoped
|
59
|
+
(::ActiveRecord::VERSION::MAJOR >= 4) ? all : scoped
|
60
60
|
end
|
61
61
|
|
62
62
|
# :noapi:
|
@@ -66,10 +66,10 @@ module Protobuf
|
|
66
66
|
if searchable_field_parsers[field]
|
67
67
|
parser = searchable_field_parsers[field]
|
68
68
|
|
69
|
-
if parser.respond_to?(:to_sym)
|
70
|
-
|
69
|
+
value = if parser.respond_to?(:to_sym)
|
70
|
+
__send__(parser.to_sym, value)
|
71
71
|
else
|
72
|
-
|
72
|
+
parser.call(value)
|
73
73
|
end
|
74
74
|
end
|
75
75
|
|
@@ -99,7 +99,7 @@ module Protobuf
|
|
99
99
|
search_relation = search_relation.__send__(scope_name, *search_values)
|
100
100
|
end
|
101
101
|
|
102
|
-
|
102
|
+
search_relation
|
103
103
|
end
|
104
104
|
|
105
105
|
# :noapi:
|
@@ -1,4 +1,3 @@
|
|
1
|
-
require "set"
|
2
1
|
require "active_support/concern"
|
3
2
|
|
4
3
|
module Protobuf
|
@@ -9,9 +8,9 @@ module Protobuf
|
|
9
8
|
included do
|
10
9
|
class << self
|
11
10
|
attr_writer :_protobuf_field_symbol_transformers,
|
12
|
-
|
13
|
-
|
14
|
-
|
11
|
+
:_protobuf_field_transformers,
|
12
|
+
:_protobuf_field_options,
|
13
|
+
:protobuf_message
|
15
14
|
end
|
16
15
|
end
|
17
16
|
|
@@ -33,24 +32,20 @@ module Protobuf
|
|
33
32
|
end
|
34
33
|
|
35
34
|
def _protobuf_message_deprecated_fields
|
36
|
-
@_protobuf_message_deprecated_fields ||=
|
37
|
-
|
38
|
-
|
39
|
-
next unless field.deprecated?
|
35
|
+
@_protobuf_message_deprecated_fields ||= protobuf_message.all_fields.map do |field|
|
36
|
+
next if field.nil?
|
37
|
+
next unless field.deprecated?
|
40
38
|
|
41
|
-
|
42
|
-
end
|
39
|
+
field.name.to_sym
|
43
40
|
end
|
44
41
|
end
|
45
42
|
|
46
43
|
def _protobuf_message_non_deprecated_fields
|
47
|
-
@_protobuf_message_non_deprecated_fields ||=
|
48
|
-
|
49
|
-
|
50
|
-
next if field.deprecated?
|
44
|
+
@_protobuf_message_non_deprecated_fields ||= protobuf_message.all_fields.map do |field|
|
45
|
+
next if field.nil?
|
46
|
+
next if field.deprecated?
|
51
47
|
|
52
|
-
|
53
|
-
end
|
48
|
+
field.name.to_sym
|
54
49
|
end
|
55
50
|
end
|
56
51
|
|
@@ -147,7 +142,7 @@ module Protobuf
|
|
147
142
|
def call(selph)
|
148
143
|
selph.__send__(@method_name).to_a
|
149
144
|
rescue NameError # Has happened when field is not on model or ignored from db
|
150
|
-
|
145
|
+
nil
|
151
146
|
end
|
152
147
|
end
|
153
148
|
|
@@ -167,7 +162,7 @@ module Protobuf
|
|
167
162
|
value.to_time(:utc).to_i
|
168
163
|
end
|
169
164
|
rescue NameError # Has happened when field is not on model or ignored from db
|
170
|
-
|
165
|
+
nil
|
171
166
|
end
|
172
167
|
end
|
173
168
|
|
@@ -181,7 +176,7 @@ module Protobuf
|
|
181
176
|
|
182
177
|
value&.to_i
|
183
178
|
rescue NameError # Has happened when field is not on model or ignored from db
|
184
|
-
|
179
|
+
nil
|
185
180
|
end
|
186
181
|
end
|
187
182
|
|
@@ -193,7 +188,7 @@ module Protobuf
|
|
193
188
|
def call(selph)
|
194
189
|
selph.__send__(@field)
|
195
190
|
rescue NameError # Has happened when field is not on model or ignored from db
|
196
|
-
|
191
|
+
nil
|
197
192
|
end
|
198
193
|
end
|
199
194
|
|
@@ -325,21 +320,21 @@ module Protobuf
|
|
325
320
|
|
326
321
|
# :nodoc:
|
327
322
|
def _protobuf_field_objects(field)
|
328
|
-
self.class._protobuf_field_objects[field] ||=
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
self.class._protobuf_convert_to_fields_object(field)
|
339
|
-
end
|
323
|
+
self.class._protobuf_field_objects[field] ||= if _protobuf_field_symbol_transformers.key?(field)
|
324
|
+
|
325
|
+
self.class._protobuf_symbol_transformer_object(field)
|
326
|
+
elsif _protobuf_field_transformers.key?(field)
|
327
|
+
|
328
|
+
self.class._protobuf_field_transformer_object(field)
|
329
|
+
elsif respond_to?(field)
|
330
|
+
|
331
|
+
if _is_collection_association?(field)
|
332
|
+
self.class._protobuf_collection_association_object(field)
|
340
333
|
else
|
341
|
-
self.class.
|
334
|
+
self.class._protobuf_convert_to_fields_object(field)
|
342
335
|
end
|
336
|
+
else
|
337
|
+
self.class._protobuf_nil_object(field)
|
343
338
|
end
|
344
339
|
end
|
345
340
|
|
@@ -362,7 +357,7 @@ module Protobuf
|
|
362
357
|
def to_proto(options = {})
|
363
358
|
raise MessageNotDefined, self.class if _protobuf_message.nil?
|
364
359
|
|
365
|
-
fields =
|
360
|
+
fields = fields_from_record(options)
|
366
361
|
_protobuf_message.new(fields)
|
367
362
|
end
|
368
363
|
end
|