Merge branch 'master' of https://github.com/stellard/cancan into stellard-master
This commit is contained in:
commit
78cbea5733
2
Gemfile
2
Gemfile
|
@ -11,7 +11,7 @@ when "data_mapper"
|
||||||
gem "dm-migrations", "~> 1.0.2"
|
gem "dm-migrations", "~> 1.0.2"
|
||||||
when "mongoid"
|
when "mongoid"
|
||||||
gem "bson_ext", "~> 1.1"
|
gem "bson_ext", "~> 1.1"
|
||||||
gem "mongoid", "~> 2.0.0.beta.19"
|
gem "mongoid", "~> 2.0.0.beta.20"
|
||||||
else
|
else
|
||||||
raise "Unknown model adapter: #{ENV["MODEL_ADAPTER"]}"
|
raise "Unknown model adapter: #{ENV["MODEL_ADAPTER"]}"
|
||||||
end
|
end
|
||||||
|
|
|
@ -16,14 +16,22 @@ module CanCan
|
||||||
end
|
end
|
||||||
|
|
||||||
def database_records
|
def database_records
|
||||||
@model_class.where(conditions)
|
if @rules.size == 0
|
||||||
|
@model_class.where(false_query)
|
||||||
|
else
|
||||||
|
criteria = @model_class.all
|
||||||
|
@rules.each do |rule|
|
||||||
|
criteria = chain_criteria(rule, criteria)
|
||||||
|
end
|
||||||
|
criteria
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def conditions
|
def chain_criteria rule, criteria
|
||||||
if @rules.size == 0
|
if rule.base_behavior
|
||||||
false_query
|
criteria.or(rule.conditions)
|
||||||
else
|
else
|
||||||
@rules.first.conditions
|
criteria.excludes(rule.conditions)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@ if ENV["MODEL_ADAPTER"] == "mongoid"
|
||||||
lord = MongoidProject.create(:title => 'Lord')
|
lord = MongoidProject.create(:title => 'Lord')
|
||||||
dude = MongoidProject.create(:title => 'Dude')
|
dude = MongoidProject.create(:title => 'Dude')
|
||||||
|
|
||||||
MongoidProject.accessible_by(@ability, :read).should == [sir]
|
MongoidProject.accessible_by(@ability, :read).entries.should == [sir]
|
||||||
end
|
end
|
||||||
|
|
||||||
it "should return everything when the defined ability is manage all" do
|
it "should return everything when the defined ability is manage all" do
|
||||||
|
@ -155,6 +155,23 @@ if ENV["MODEL_ADAPTER"] == "mongoid"
|
||||||
MongoidProject.accessible_by(@ability, :read).entries.first.should == obj
|
MongoidProject.accessible_by(@ability, :read).entries.first.should == obj
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it "should exclude from the result if set to cannot" do
|
||||||
|
obj = MongoidProject.create(:bar => 1)
|
||||||
|
obj2 = MongoidProject.create(:bar => 2)
|
||||||
|
@ability.can :read, MongoidProject
|
||||||
|
@ability.cannot :read, MongoidProject, :bar => 2
|
||||||
|
MongoidProject.accessible_by(@ability, :read).entries.should == [obj]
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should combine the rules" do
|
||||||
|
obj = MongoidProject.create(:bar => 1)
|
||||||
|
obj2 = MongoidProject.create(:bar => 2)
|
||||||
|
obj3 = MongoidProject.create(:bar => 3)
|
||||||
|
@ability.can :read, MongoidProject, :bar => 1
|
||||||
|
@ability.can :read, MongoidProject, :bar => 2
|
||||||
|
MongoidProject.accessible_by(@ability, :read).entries.should =~ [obj, obj2]
|
||||||
|
end
|
||||||
|
|
||||||
it "should not allow to fetch records when ability with just block present" do
|
it "should not allow to fetch records when ability with just block present" do
|
||||||
@ability.can :read, MongoidProject do
|
@ability.can :read, MongoidProject do
|
||||||
false
|
false
|
||||||
|
|
Loading…
Reference in New Issue
Block a user