I'd do it via a before_filter callback:
class TracksController < AC
before_filter :ensure_track, :only => [ :create, :destroy ]
private
def ensure_track
if Product
@product = Product.find(params[:product_id])
@track = @product.tracks.create(params[:track])
elsif Release
@release = Release.find(params[:release_id])
@track = @release.tracks.create(params[:track])
end
end
end
So with this setup it's ensured that you have a @track instance variable in your create and destroy methods, cause ensure_track gets invoked before those two methods.
I'm not sure though, if the logic you're applying makes sense... Why do you want to test if a constant named Product exists and if not if a constant named Release does? Maybe the question should be if either params[:product_id] or params[:release_id] is present!?
But that's a different question :)
UPDATE: See Rails Action Controller Guide for filters.