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
Kazuhiko Shiozaki
gitlab-ce
Commits
33955584
Commit
33955584
authored
Oct 02, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'api_for_user_creation' of dev.gitlabhq.com:gitlabhq
parents
0187ae4e
bda0a755
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
72 additions
and
0 deletions
+72
-0
doc/api/users.md
doc/api/users.md
+21
-0
lib/api/helpers.rb
lib/api/helpers.rb
+4
-0
lib/api/users.rb
lib/api/users.rb
+26
-0
spec/requests/api/users_spec.rb
spec/requests/api/users_spec.rb
+21
-0
No files found.
doc/api/users.md
View file @
33955584
...
...
@@ -65,6 +65,27 @@ Parameters:
}
```
## User creation
Create user. Available only for admin
```
POST /users
```
Parameters:
+
`email`
(required) - Email
+
`name`
(required) - Name
+
`password`
(required) - Password
+
`password_confirmation`
(required) - Password confirmation
+
`skype`
- Skype ID
+
`linkedin`
(required) - Linkedin
+
`twitter`
- Twitter account
+
`projects_limit`
- Limit projects wich user can create
Will return created user with status
`201 Created`
on success, or
`404 Not
found`
on fail.
## Current user
Get currently authenticated user.
...
...
lib/api/helpers.rb
View file @
33955584
...
...
@@ -22,6 +22,10 @@ module Gitlab
unauthorized!
unless
current_user
end
def
authenticated_as_admin!
forbidden!
unless
current_user
.
is_admin?
end
def
authorize!
action
,
subject
unless
abilities
.
allowed?
(
current_user
,
action
,
subject
)
forbidden!
...
...
lib/api/users.rb
View file @
33955584
...
...
@@ -23,6 +23,30 @@ module Gitlab
@user
=
User
.
find
(
params
[
:id
])
present
@user
,
with:
Entities
::
User
end
# Create user. Available only for admin
#
# Parameters:
# email (required) - Email
# name (required) - Name
# password (required) - Password
# password_confirmation (required) - Password confirmation
# skype - Skype ID
# linkedin (required) - Linkedin
# twitter - Twitter account
# projects_limit - Limit projects wich user can create
# Example Request:
# POST /users
post
do
authenticated_as_admin!
attrs
=
attributes_for_keys
[
:email
,
:name
,
:password
,
:password_confirmation
,
:skype
,
:linkedin
,
:twitter
,
:projects_limit
]
user
=
User
.
new
attrs
if
user
.
save
present
user
,
with:
Entities
::
User
else
not_found!
end
end
end
resource
:user
do
...
...
@@ -78,6 +102,8 @@ module Gitlab
key
=
current_user
.
keys
.
find
params
[
:id
]
key
.
delete
end
end
end
end
spec/requests/api/users_spec.rb
View file @
33955584
...
...
@@ -4,6 +4,7 @@ describe Gitlab::API do
include
ApiHelpers
let
(
:user
)
{
Factory
:user
}
let
(
:admin
)
{
Factory
:admin
}
let
(
:key
)
{
Factory
:key
,
user:
user
}
describe
"GET /users"
do
...
...
@@ -32,6 +33,26 @@ describe Gitlab::API do
end
end
describe
"POST /users"
do
before
{
admin
}
it
"should not create invalid user"
do
post
api
(
"/users"
,
admin
),
{
email:
"invalid email"
}
response
.
status
.
should
==
404
end
it
"should create user"
do
expect
{
post
api
(
"/users"
,
admin
),
Factory
.
attributes
(
:user
)
}.
to
change
{
User
.
count
}.
by
(
1
)
end
it
"shouldn't available for non admin users"
do
post
api
(
"/users"
,
user
),
Factory
.
attributes
(
:user
)
response
.
status
.
should
==
403
end
end
describe
"GET /user"
do
it
"should return current user"
do
get
api
(
"/user"
,
user
)
...
...
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