Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
48628d31
Commit
48628d31
authored
Feb 07, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dont allow duplicates in ssh keys
parent
18fc0900
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
15 deletions
+3
-15
app/models/key.rb
app/models/key.rb
+3
-15
No files found.
app/models/key.rb
View file @
48628d31
...
...
@@ -24,8 +24,8 @@ class Key < ActiveRecord::Base
before_save
:set_identifier
validates
:title
,
presence:
true
,
length:
{
within:
0
..
255
}
validates
:key
,
presence:
true
,
length:
{
within:
0
..
5000
},
format:
{
:with
=>
/ssh-.{3} /
}
validate
:
unique_key
,
:
fingerprintable_key
validates
:key
,
presence:
true
,
length:
{
within:
0
..
5000
},
format:
{
:with
=>
/ssh-.{3} /
}
,
uniqueness:
true
validate
:fingerprintable_key
delegate
:name
,
:email
,
to: :user
,
prefix:
true
...
...
@@ -33,14 +33,6 @@ class Key < ActiveRecord::Base
self
.
key
=
self
.
key
.
strip
unless
self
.
key
.
blank?
end
def
unique_key
query
=
Key
.
where
(
key:
key
)
query
=
query
.
where
(
'(project_id IS NULL OR project_id = ?)'
,
project_id
)
if
project_id
if
(
query
.
count
>
0
)
errors
.
add
:key
,
'already exist.'
end
end
def
fingerprintable_key
return
true
unless
key
# Don't test if there is no key.
# `ssh-keygen -lf /dev/stdin <<< "#{key}"` errors with: redirection unexpected
...
...
@@ -65,7 +57,7 @@ class Key < ActiveRecord::Base
end
def
is_deploy_key
true
if
project_id
!!
project_id
end
# projects that has this key
...
...
@@ -77,10 +69,6 @@ class Key < ActiveRecord::Base
end
end
def
last_deploy?
Key
.
where
(
identifier:
identifier
).
count
==
0
end
def
shell_id
"key-
#{
self
.
id
}
"
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment