rails_conditional_params 0.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 +7 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +36 -0
- data/Rakefile +2 -0
- data/lib/rails_conditional_params/patch.rb +38 -0
- data/lib/rails_conditional_params/version.rb +3 -0
- data/lib/rails_conditional_params.rb +8 -0
- data/rails_conditional_params.gemspec +26 -0
- data/spec/params_spec.rb +20 -0
- metadata +126 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 701630303734a8185bfebf834b70e56806fa8f0a
|
4
|
+
data.tar.gz: b8990aa7db047fcce4ecbbb87c91581b794e05ad
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a635d866592b429a4dbf80bba1f21893310d6b512ad665eec1a6ff2387ee1639b1516a34864e320081385069415c7e9cd03430b590c7e10fd989b71239a4c429
|
7
|
+
data.tar.gz: 633d39ca54c301341cb7d72c3d8dad8f37109798e65329ce4c74cd62887c89c15181cf997e79c6d7fa01ea21af99243cbf0e2f6e697f2a4b8f5d31160471a4f8
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Brent Royal-Gordon
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# RailsConditionalParams
|
2
|
+
|
3
|
+
This gem patches `ActionController::Parameters` to support conditional
|
4
|
+
parameters—parameters that are permitted only if some condition is true.
|
5
|
+
Basically, it ensures that any hash key passed to `permit()` with `true` as
|
6
|
+
its value is made into a permitted key, while keys passed with `false` or `nil`
|
7
|
+
are ignored.
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem 'rails_conditional_params'
|
15
|
+
```
|
16
|
+
|
17
|
+
And then execute:
|
18
|
+
|
19
|
+
$ bundle
|
20
|
+
|
21
|
+
Or install it yourself as:
|
22
|
+
|
23
|
+
$ gem install rails_conditional_params
|
24
|
+
|
25
|
+
## Usage
|
26
|
+
|
27
|
+
params.permit(:title, :body, published: admin?)
|
28
|
+
# published will only be permitted if admin? returns true
|
29
|
+
|
30
|
+
## Contributing
|
31
|
+
|
32
|
+
1. Fork it ( https://github.com/brentdax/rails_conditional_params/fork )
|
33
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
34
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
35
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
36
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
module RailsConditionalParams
|
2
|
+
module Patch
|
3
|
+
# Adds support for conditional params:
|
4
|
+
#
|
5
|
+
# params.permit(yes: true, no: false)
|
6
|
+
# # => { "yes" => "..." }
|
7
|
+
#
|
8
|
+
# This is useful for parameters that should be permitted in some cases,
|
9
|
+
# but not others:
|
10
|
+
#
|
11
|
+
# params.permit(:title, :body, published: admin?)
|
12
|
+
# # Result only includes published if admin? is true.
|
13
|
+
def permit_with_conditional_params(*filters)
|
14
|
+
filters.each do |filter|
|
15
|
+
if filter.is_a? Hash
|
16
|
+
filter.delete_if do |key, value|
|
17
|
+
case value
|
18
|
+
when TrueClass
|
19
|
+
filters << key
|
20
|
+
true
|
21
|
+
when FalseClass, NilClass
|
22
|
+
# do nothing
|
23
|
+
true
|
24
|
+
else
|
25
|
+
false
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
permit_without_conditional_params(*filters)
|
32
|
+
end
|
33
|
+
|
34
|
+
def Patch.included(other)
|
35
|
+
other.alias_method_chain :permit, :conditional_params
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'rails_conditional_params/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "rails_conditional_params"
|
8
|
+
spec.version = RailsConditionalParams::VERSION
|
9
|
+
spec.authors = ["Brent Royal-Gordon"]
|
10
|
+
spec.email = ["brent@architechies.com"]
|
11
|
+
spec.summary = %q{Patches ActionController::Parameters to let you easily permit parameters sometimes}
|
12
|
+
spec.homepage = "http://github.com/brentdax/rails_conditional_params"
|
13
|
+
spec.license = "MIT"
|
14
|
+
|
15
|
+
spec.files = `git ls-files -z`.split("\x0")
|
16
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
17
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
|
+
spec.require_paths = ["lib"]
|
19
|
+
|
20
|
+
spec.required_ruby_version = '>= 2.2.0'
|
21
|
+
spec.add_dependency "actionpack", ">= 4.2.0"
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
24
|
+
spec.add_development_dependency "rspec", "~> 3.1"
|
25
|
+
spec.add_development_dependency "rack-test", "~> 0.6.3"
|
26
|
+
end
|
data/spec/params_spec.rb
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
require "rack/test"
|
2
|
+
require_relative "../lib/rails_conditional_params"
|
3
|
+
|
4
|
+
describe ActionController::Parameters do
|
5
|
+
before do
|
6
|
+
@params = ActionController::Parameters.new(allowed: "allowed", forbidden: "forbidden", maybe: "maybe")
|
7
|
+
end
|
8
|
+
|
9
|
+
it "should work the same without conditionals" do
|
10
|
+
expect(@params.permit(:allowed)).to eq("allowed" => "allowed")
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should include conditionals when conditionals are true" do
|
14
|
+
expect(@params.permit(:allowed, maybe: true)).to eq("allowed" => "allowed", "maybe" => "maybe")
|
15
|
+
end
|
16
|
+
|
17
|
+
it "should exclude conditionals when conditionals are false" do
|
18
|
+
expect(@params.permit(:allowed, maybe: false)).to eq("allowed" => "allowed")
|
19
|
+
end
|
20
|
+
end
|
metadata
ADDED
@@ -0,0 +1,126 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rails_conditional_params
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Brent Royal-Gordon
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-01-23 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: actionpack
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 4.2.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 4.2.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.7'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.7'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.1'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.1'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rack-test
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.6.3
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.6.3
|
83
|
+
description:
|
84
|
+
email:
|
85
|
+
- brent@architechies.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- Gemfile
|
92
|
+
- LICENSE.txt
|
93
|
+
- README.md
|
94
|
+
- Rakefile
|
95
|
+
- lib/rails_conditional_params.rb
|
96
|
+
- lib/rails_conditional_params/patch.rb
|
97
|
+
- lib/rails_conditional_params/version.rb
|
98
|
+
- rails_conditional_params.gemspec
|
99
|
+
- spec/params_spec.rb
|
100
|
+
homepage: http://github.com/brentdax/rails_conditional_params
|
101
|
+
licenses:
|
102
|
+
- MIT
|
103
|
+
metadata: {}
|
104
|
+
post_install_message:
|
105
|
+
rdoc_options: []
|
106
|
+
require_paths:
|
107
|
+
- lib
|
108
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: 2.2.0
|
113
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
requirements: []
|
119
|
+
rubyforge_project:
|
120
|
+
rubygems_version: 2.4.5
|
121
|
+
signing_key:
|
122
|
+
specification_version: 4
|
123
|
+
summary: Patches ActionController::Parameters to let you easily permit parameters
|
124
|
+
sometimes
|
125
|
+
test_files:
|
126
|
+
- spec/params_spec.rb
|