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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
4c1f435a
Commit
4c1f435a
authored
Jun 26, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #971 from gingko/master
Automatic password creation..
parents
1c8008c1
5ab18562
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
56 additions
and
7 deletions
+56
-7
app/assets/javascripts/admin.js
app/assets/javascripts/admin.js
+11
-0
app/models/user.rb
app/models/user.rb
+12
-1
app/views/admin/users/_form.html.haml
app/views/admin/users/_form.html.haml
+15
-6
spec/models/user_spec.rb
spec/models/user_spec.rb
+18
-0
No files found.
app/assets/javascripts/admin.js
0 → 100644
View file @
4c1f435a
$
(
document
).
ready
(
function
(){
$
(
'
input#user_force_random_password
'
).
on
(
'
change
'
,
function
(
elem
)
{
var
elems
=
$
(
'
#user_password, #user_password_confirmation
'
);
if
(
$
(
this
).
attr
(
'
checked
'
))
{
elems
.
val
(
''
).
attr
(
'
disabled
'
,
true
);
}
else
{
elems
.
removeAttr
(
'
disabled
'
);
}
});
});
app/models/user.rb
View file @
4c1f435a
...
...
@@ -5,7 +5,10 @@ class User < ActiveRecord::Base
:recoverable
,
:rememberable
,
:trackable
,
:validatable
,
:omniauthable
attr_accessible
:email
,
:password
,
:password_confirmation
,
:remember_me
,
:bio
,
:name
,
:projects_limit
,
:skype
,
:linkedin
,
:twitter
,
:dark_scheme
,
:theme_id
:name
,
:projects_limit
,
:skype
,
:linkedin
,
:twitter
,
:dark_scheme
,
:theme_id
,
:force_random_password
attr_accessor
:force_random_password
has_many
:users_projects
,
:dependent
=>
:destroy
has_many
:projects
,
:through
=>
:users_projects
...
...
@@ -53,6 +56,14 @@ class User < ActiveRecord::Base
scope
:blocked
,
where
(
:blocked
=>
true
)
scope
:active
,
where
(
:blocked
=>
false
)
before_validation
:generate_password
,
:on
=>
:create
def
generate_password
if
self
.
force_random_password
self
.
password
=
self
.
password_confirmation
=
Devise
.
friendly_token
.
first
(
8
)
end
end
def
self
.
filter
filter_name
case
filter_name
when
"admins"
;
self
.
admins
...
...
app/views/admin/users/_form.html.haml
View file @
4c1f435a
...
...
@@ -18,12 +18,21 @@
.input
=
f
.
text_field
:email
%span
.help-inline
* required
.clearfix
=
f
.
label
:password
.input
=
f
.
password_field
:password
.clearfix
=
f
.
label
:password_confirmation
.input
=
f
.
password_field
:password_confirmation
%hr
-
if
f
.
object
.
new_record?
.clearfix
=
f
.
label
:admin
,
:class
=>
"checkbox"
do
=
f
.
check_box
:force_random_password
,
{},
true
,
nil
%span
Generate random password
%div
.password-fields
.clearfix
=
f
.
label
:password
.input
=
f
.
password_field
:password
,
:disabled
=>
f
.
object
.
force_random_password
.clearfix
=
f
.
label
:password_confirmation
.input
=
f
.
password_field
:password_confirmation
,
:disabled
=>
f
.
object
.
force_random_password
%hr
.clearfix
=
f
.
label
:skype
...
...
spec/models/user_spec.rb
View file @
4c1f435a
...
...
@@ -22,6 +22,24 @@ describe User do
user
.
identifier
.
should
==
"test_mail_com"
end
it
"should execute callback when force_random_password specified"
do
user
=
User
.
new
(
:email
=>
"test@mail.com"
,
:force_random_password
=>
true
)
user
.
should_receive
(
:generate_password
)
user
.
save
end
it
"should not generate password by default"
do
user
=
Factory
(
:user
,
:password
=>
'abcdefg'
,
:password_confirmation
=>
'abcdefg'
)
user
.
password
.
should
==
'abcdefg'
end
it
"should generate password when forcing random password"
do
Devise
.
stub
(
:friendly_token
).
and_return
(
'123456789'
)
user
=
User
.
create
(
:email
=>
"test1@mail.com"
,
:force_random_password
=>
true
)
user
.
password
.
should
==
user
.
password_confirmation
user
.
password
.
should
==
'12345678'
end
it
"should have authentication token"
do
user
=
Factory
(
:user
)
user
.
authentication_token
.
should_not
==
""
...
...
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