I'm using cancan 1.6.5, inherited_resources 1.2.2, and Rails 3.0.7, having recently upgraded from cancan 1.2 and inherited_resources 1.2.1.
After the upgrade, I'm getting a lot of failing tests related to inherited_resources + cancan, in particular the "belongs_to" macro is failing to load the associated object if and only if I'm calling a non-restful action. Got it? Probably not. So here's the code:
class ToursController < InheritedResources::Base
belongs_to :organization
load_and_authorize_resource :organization
load_and_authorize_resource :tour, :through => :organization
def index
end
def upload
end
end
According to the docs, this should work fine: https://github.com/ryanb/cancan/wiki/Inherited-Resources
And it does, provided I'm visiting one of the 7 restful routes. When I visit something else, such as "upload" above, I get
ActiveRecord::RecordNotFound in ToursController#upload
Couldn't find Organization without an ID
Application Trace | Framework Trace | Full Trace
activerecord (3.0.7) lib/active_record/relation/finder_methods.rb:287:in `find_with_ids'
activerecord (3.0.7) lib/active_record/relation/finder_methods.rb:107:in `find'
activerecord (3.0.7) lib/active_record/base.rb:439:in `__send__'
activerecord (3.0.7) lib/active_record/base.rb:439:in `find'
inherited_resources (1.2.2) lib/inherited_resources/belongs_to_helpers.rb:83:in `send'
inherited_resources (1.2.2) lib/inherited_resources/belongs_to_helpers.rb:83:in `evaluate_parent'
inherited_resources (1.2.2) lib/inherited_resources/base_helpers.rb:131:in `association_chain'
activemodel (3.0.7) lib/active_model/attribute_methods.rb:110:in `inject'
inherited_resources (1.2.2) lib/inherited_resources/base_helpers.rb:130:in `each'
inherited_resources (1.2.2) lib/inherited_resources/base_helpers.rb:130:in `inject'
inherited_resources (1.2.2) lib/inherited_resources/base_helpers.rb:130:in `association_chain'
cancan (1.6.5) lib/cancan/inherited_resource.rb:6:in `send'
cancan (1.6.5) lib/cancan/inherited_resource.rb:6:in `load_resource_instance'
cancan (1.6.5) lib/cancan/controller_resource.rb:32:in `load_resource'
cancan (1.6.5) lib/cancan/controller_resource.rb:25:in `load_and_authorize_resource'
cancan (1.6.5) lib/cancan/controller_resource.rb:10:in `send'
cancan (1.6.5) lib/cancan/controller_resource.rb:10:in `_callback_before_20259'
activesupport (3.0.7) lib/active_support/callbacks.rb:457:in `_run__989046079__process_action__1356283103__callbacks'
activesupport (3.0.7) lib/active_support/callbacks.rb:410:in `send'
activesupport (3.0.7) lib/active_support/callbacks.rb:410:in `_run_process_action_callbacks'
activesupport (3.0.7) lib/active_support/callbacks.rb:94:in `send'
activesupport (3.0.7) lib/active_support/callbacks.rb:94:in `run_callbacks'
actionpack (3.0.7) lib/abstract_controller/callbacks.rb:17:in `process_action'
actionpack (3.0.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
activesupport (3.0.7) lib/active_support/notifications.rb:52:in `instrument'
activesupport (3.0.7) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
activesupport (3.0.7) lib/active_support/notifications.rb:52:in `instrument'
actionpack (3.0.7) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
actionpack (3.0.7) lib/action_controller/metal/rescue.rb:17:in `process_action'
actionpack (3.0.7) lib/abstract_controller/base.rb:119:in `process'
actionpack (3.0.7) lib/abstract_controller/rendering.rb:41:in `process'
actionpack (3.0.7) lib/action_controller/metal.rb:138:in `dispatch'
actionpack (3.0.7) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
actionpack (3.0.7) lib/action_controller/metal.rb:178:in `action'
actionpack (3.0.7) lib/action_dispatch/routing/route_set.rb:62:in `call'
actionpack (3.0.7) lib/action_dispatch/routing/route_set.rb:62:in `dispatch'
actionpack (3.0.7) lib/action_dispatch/routing/route_set.rb:27:in `call'
rack-mount (0.6.14) lib/rack/mount/route_set.rb:148:in `call'
rack-mount (0.6.14) lib/rack/mount/code_generation.rb:93:in `recognize'
rack-mount (0.6.14) lib/rack/mount/code_generation.rb:75:in `optimized_each'
rack-mount (0.6.14) lib/rack/mount/code_generation.rb:92:in `recognize'
rack-mount (0.6.14) lib/rack/mount/route_set.rb:139:in `call'
actionpack (3.0.7) lib/action_dispatch/routing/route_set.rb:493:in `call'
haml (3.0.23) lib/sass/plugin/rack.rb:41:in `call'
actionpack (3.0.7) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
actionpack (3.0.7) lib/action_dispatch/middleware/head.rb:14:in `call'
rack (1.2.3) lib/rack/methodoverride.rb:24:in `call'
actionpack (3.0.7) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
actionpack (3.0.7) lib/action_dispatch/middleware/flash.rb:182:in `call'
actionpack (3.0.7) lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call'
vendor/plugins/uploadify_rails/lib/flash_session_cookie_middleware.rb:47:in `call'
actionpack (3.0.7) lib/action_dispatch/middleware/cookies.rb:302:in `call'
activerecord (3.0.7) lib/active_record/query_cache.rb:32:in `call'
activerecord (3.0.7) lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache'
activerecord (3.0.7) lib/active_record/query_cache.rb:12:in `cache'
activerecord (3.0.7) lib/active_record/query_cache.rb:31:in `call'
activerecord (3.0.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call'
actionpack (3.0.7) lib/action_dispatch/middleware/callbacks.rb:46:in `call'
activesupport (3.0.7) lib/active_support/callbacks.rb:416:in `_run_call_callbacks'
actionpack (3.0.7) lib/action_dispatch/middleware/callbacks.rb:44:in `call'
rack (1.2.3) lib/rack/sendfile.rb:107:in `call'
actionpack (3.0.7) lib/action_dispatch/middleware/remote_ip.rb:48:in `call'
actionpack (3.0.7) lib/action_dispatch/middleware/show_exceptions.rb:47:in `call'
railties (3.0.7) lib/rails/rack/logger.rb:13:in `call'
rack (1.2.3) lib/rack/runtime.rb:17:in `call'
activesupport (3.0.7) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
rack (1.2.3) lib/rack/lock.rb:11:in `call'
rack (1.2.3) lib/rack/lock.rb:11:in `synchronize'
rack (1.2.3) lib/rack/lock.rb:11:in `call'
actionpack (3.0.7) lib/action_dispatch/middleware/static.rb:30:in `call'
railties (3.0.7) lib/rails/application.rb:168:in `call'
railties (3.0.7) lib/rails/application.rb:77:in `send'
railties (3.0.7) lib/rails/application.rb:77:in `method_missing'
railties (3.0.7) lib/rails/rack/log_tailer.rb:14:in `call'
rack (1.2.3) lib/rack/content_length.rb:13:in `call'
rack (1.2.3) lib/rack/handler/webrick.rb:52:in `service'
/Users/mattrogish/.rvm/rubies/ree-1.8.7-2011.03/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
/Users/mattrogish/.rvm/rubies/ree-1.8.7-2011.03/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
/Users/mattrogish/.rvm/rubies/ree-1.8.7-2011.03/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
/Users/mattrogish/.rvm/rubies/ree-1.8.7-2011.03/lib/ruby/1.8/webrick/server.rb:162:in `start'
/Users/mattrogish/.rvm/rubies/ree-1.8.7-2011.03/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
/Users/mattrogish/.rvm/rubies/ree-1.8.7-2011.03/lib/ruby/1.8/webrick/server.rb:95:in `start'
/Users/mattrogish/.rvm/rubies/ree-1.8.7-2011.03/lib/ruby/1.8/webrick/server.rb:92:in `each'
/Users/mattrogish/.rvm/rubies/ree-1.8.7-2011.03/lib/ruby/1.8/webrick/server.rb:92:in `start'
/Users/mattrogish/.rvm/rubies/ree-1.8.7-2011.03/lib/ruby/1.8/webrick/server.rb:23:in `start'
/Users/mattrogish/.rvm/rubies/ree-1.8.7-2011.03/lib/ruby/1.8/webrick/server.rb:82:in `start'
rack (1.2.3) lib/rack/handler/webrick.rb:13:in `run'
rack (1.2.3) lib/rack/server.rb:217:in `start'
railties (3.0.7) lib/rails/commands/server.rb:65:in `start'
railties (3.0.7) lib/rails/commands.rb:30
railties (3.0.7) lib/rails/commands.rb:27:in `tap'
railties (3.0.7) lib/rails/commands.rb:27
script/rails:6:in `require'
script/rails:6
From looking at the cancan docs, it states "By default this will apply to every action ... even if it's is not one of the 7 RESTful actions" https://github.com/ryanb/cancan/wiki/Authorizing-Controller-Actions
The inherited_resources docs seem to imply that if I want additional actions, I add them via custom_actions, e.g.
class ToursController < InheritedResources::Base
belongs_to :organization
custom_actions :resource => :upload
load_and_authorize_resource :organization
load_and_authorize_resource :tour, :through => :organization
...
end
However this still fails with the same error. However, if I tell cancan NOT to load the resource in this particular action (by breaking load and authorize into separate steps), it will work!
class ToursController < InheritedResources::Base
belongs_to :organization
load_resource :except => [:upload]
authorize_resource
end
This forces me to set @organization = @tour.organization by hand. Not a big deal, but this seems like a smell. That, and there's a few controllers exhibiting this problem, so I've got a bit of code to edit. The docs suggest I should be able to do what I'm doing...
Any thoughts?
Thanks!
-- Matt