Validate key uniqueness across Key and DeployKey tables
This commit is contained in:
parent
c973fce606
commit
5b4382e12e
|
@ -1,3 +1,5 @@
|
||||||
|
require 'unique_public_key_validator'
|
||||||
|
|
||||||
class DeployKey < ActiveRecord::Base
|
class DeployKey < ActiveRecord::Base
|
||||||
belongs_to :project
|
belongs_to :project
|
||||||
|
|
||||||
|
@ -10,6 +12,8 @@ class DeployKey < ActiveRecord::Base
|
||||||
:uniqueness => true,
|
:uniqueness => true,
|
||||||
:length => { :within => 0..5000 }
|
:length => { :within => 0..5000 }
|
||||||
|
|
||||||
|
validates_with UniquePublicKeyValidator
|
||||||
|
|
||||||
before_save :set_identifier
|
before_save :set_identifier
|
||||||
after_save :update_repository
|
after_save :update_repository
|
||||||
after_destroy :repository_delete_key
|
after_destroy :repository_delete_key
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
require 'unique_public_key_validator'
|
||||||
|
|
||||||
class Key < ActiveRecord::Base
|
class Key < ActiveRecord::Base
|
||||||
belongs_to :user
|
belongs_to :user
|
||||||
|
|
||||||
|
@ -10,6 +12,8 @@ class Key < ActiveRecord::Base
|
||||||
:uniqueness => true,
|
:uniqueness => true,
|
||||||
:length => { :within => 0..5000 }
|
:length => { :within => 0..5000 }
|
||||||
|
|
||||||
|
validates_with UniquePublicKeyValidator
|
||||||
|
|
||||||
before_save :set_identifier
|
before_save :set_identifier
|
||||||
after_save :update_repository
|
after_save :update_repository
|
||||||
after_destroy :repository_delete_key
|
after_destroy :repository_delete_key
|
||||||
|
|
7
lib/unique_public_key_validator.rb
Normal file
7
lib/unique_public_key_validator.rb
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
class UniquePublicKeyValidator < ActiveModel::Validator
|
||||||
|
def validate(record)
|
||||||
|
if (DeployKey.where('key = ? AND id !=?', record.key , record.id).count > 0 || Key.where('key = ? AND id !=?', record.key , record.id).count > 0)
|
||||||
|
record.errors.add :key, 'already exist.'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue