Cope with MySQL and Postgres.
This commit is contained in:
parent
66c95aa3f9
commit
bb7c4f93e2
1 changed files with 12 additions and 2 deletions
|
@ -1,13 +1,23 @@
|
||||||
class Acl < ActiveRecord::Base
|
class Acl < ActiveRecord::Base
|
||||||
def self.find_by_address(address, options)
|
def self.find_by_address(address, options)
|
||||||
self.with_scope(:find => {:conditions => ["inet_aton(?) & netmask = address", address]}) do
|
self.with_scope(:find => {:conditions => ["#{inet_aton} & netmask = address", address]}) do
|
||||||
return self.find(:first, options)
|
return self.find(:first, options)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.find_all_by_address(address, options)
|
def self.find_all_by_address(address, options)
|
||||||
self.with_scope(:find => {:conditions => ["inet_aton(?) & netmask = address", address]}) do
|
self.with_scope(:find => {:conditions => ["#{inet_aton} & netmask = address", address]}) do
|
||||||
return self.find(:all, options)
|
return self.find(:all, options)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def self.inet_aton
|
||||||
|
if self.connection.adapter_name == "MySQL"
|
||||||
|
"inet_aton(?)"
|
||||||
|
else
|
||||||
|
"?"
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue