cancan_strong_parameters 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +18 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/cancan_strong_parameters.gemspec +20 -0
- data/lib/cancan_strong_parameters.rb +5 -0
- data/lib/cancan_strong_parameters/cancan/controller_resource.rb +23 -0
- data/lib/cancan_strong_parameters/version.rb +3 -0
- metadata +77 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Colin Young
|
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,29 @@
|
|
1
|
+
# CancanStrongParameters
|
2
|
+
|
3
|
+
CanCan and [strong_parameters](https://github.com/rails/strong_parameters) are friends now!
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'cancan_strong_parameters'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install cancan_strong_parameters
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
Just add it to your Gemfile! Use both CanCan and strong_parameters as normal.
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/cancan_strong_parameters/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Colin Young"]
|
6
|
+
gem.email = ["me@colinyoung.com"]
|
7
|
+
gem.description = %q{make CanCan work with strong_parameters}
|
8
|
+
gem.summary = %q{make CanCan work with strong_parameters}
|
9
|
+
gem.homepage = "https://github.com/colinyoung/cancan_strong_parameters"
|
10
|
+
|
11
|
+
gem.add_dependency "cancan"
|
12
|
+
gem.add_dependency "strong_parameters"
|
13
|
+
|
14
|
+
gem.files = `git ls-files`.split($\)
|
15
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
16
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
17
|
+
gem.name = "cancan_strong_parameters"
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
gem.version = CancanStrongParameters::VERSION
|
20
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module CanCan
|
2
|
+
class ControllerResource
|
3
|
+
def load_resource_with_secure_params(*args)
|
4
|
+
secure_params!
|
5
|
+
load_resource_without_secure_params # This name comes from alias_method_chain. The params are already secured.
|
6
|
+
end
|
7
|
+
|
8
|
+
def secure_params!
|
9
|
+
controller = @controller
|
10
|
+
if controller.params.respond_to?(:require)
|
11
|
+
protected_actions = controller.respond_to?(:protected_actions) ? controller.protected_actions : ['create', 'update']
|
12
|
+
if protected_actions.include?(controller.action_name)
|
13
|
+
internal_keys = ['controller', 'action', 'authenticity_token', 'commit', 'utf8']
|
14
|
+
internal_values = @params.select {|k,v| internal_keys.include?(k) }
|
15
|
+
@params = ({resource_class.name.downcase => controller.secure_params}.merge(internal_values))
|
16
|
+
@params = ActiveSupport::HashWithIndifferentAccess.new(@params)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
alias_method_chain :load_resource, :secure_params
|
22
|
+
end
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cancan_strong_parameters
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Colin Young
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-08-24 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: cancan
|
16
|
+
requirement: &70144855890200 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *70144855890200
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: strong_parameters
|
27
|
+
requirement: &70144855889740 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *70144855889740
|
36
|
+
description: make CanCan work with strong_parameters
|
37
|
+
email:
|
38
|
+
- me@colinyoung.com
|
39
|
+
executables: []
|
40
|
+
extensions: []
|
41
|
+
extra_rdoc_files: []
|
42
|
+
files:
|
43
|
+
- .gitignore
|
44
|
+
- Gemfile
|
45
|
+
- LICENSE
|
46
|
+
- README.md
|
47
|
+
- Rakefile
|
48
|
+
- cancan_strong_parameters.gemspec
|
49
|
+
- lib/cancan_strong_parameters.rb
|
50
|
+
- lib/cancan_strong_parameters/cancan/controller_resource.rb
|
51
|
+
- lib/cancan_strong_parameters/version.rb
|
52
|
+
homepage: https://github.com/colinyoung/cancan_strong_parameters
|
53
|
+
licenses: []
|
54
|
+
post_install_message:
|
55
|
+
rdoc_options: []
|
56
|
+
require_paths:
|
57
|
+
- lib
|
58
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
60
|
+
requirements:
|
61
|
+
- - ! '>='
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
64
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ! '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
requirements: []
|
71
|
+
rubyforge_project:
|
72
|
+
rubygems_version: 1.8.10
|
73
|
+
signing_key:
|
74
|
+
specification_version: 3
|
75
|
+
summary: make CanCan work with strong_parameters
|
76
|
+
test_files: []
|
77
|
+
has_rdoc:
|