Improved validation. Strip key.
This commit is contained in:
parent
e3e9db9509
commit
f5a16663f0
|
@ -13,14 +13,19 @@ class Key < ActiveRecord::Base
|
||||||
:length => { :within => 0..5000 }
|
:length => { :within => 0..5000 }
|
||||||
|
|
||||||
before_save :set_identifier
|
before_save :set_identifier
|
||||||
|
before_validation :strip_white_space
|
||||||
after_save :update_repository
|
after_save :update_repository
|
||||||
after_destroy :repository_delete_key
|
after_destroy :repository_delete_key
|
||||||
validate :unique_key
|
validate :unique_key
|
||||||
|
|
||||||
|
def strip_white_space
|
||||||
|
self.key = self.key.strip
|
||||||
|
end
|
||||||
|
|
||||||
def unique_key
|
def unique_key
|
||||||
query = 'key = ?'
|
query = Key.where('key = ?', key)
|
||||||
query << ' AND project_id IS NULL' unless user_id
|
query = query.where('(project_id IS NULL OR project_id = ?)', project_id) if project_id
|
||||||
if (Key.where(query, key.strip).count > 0)
|
if (query.count > 0)
|
||||||
errors.add :key, 'already exist.'
|
errors.add :key, 'already exist.'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue