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
4ad91d3c
Commit
4ad91d3c
authored
Jun 27, 2012
by
Nihad Abbasov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add users API
parent
4aca61e8
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
91 additions
and
1 deletion
+91
-1
lib/api.rb
lib/api.rb
+30
-1
lib/api/entities.rb
lib/api/entities.rb
+8
-0
lib/api/helpers.rb
lib/api/helpers.rb
+11
-0
spec/api/users_spec.rb
spec/api/users_spec.rb
+38
-0
spec/spec_helper.rb
spec/spec_helper.rb
+4
-0
No files found.
lib/api.rb
View file @
4ad91d3c
class
Gitlab::API
<
Grape
::
API
require
'api/entities'
require
'api/helpers'
module
Gitlab
class
API
<
Grape
::
API
format
:json
helpers
APIHelpers
resource
:users
do
before
{
authenticate!
}
# GET /users
get
do
@users
=
User
.
all
present
@users
,
:with
=>
Entities
::
User
end
# GET /users/:id
get
":id"
do
@user
=
User
.
find
(
params
[
:id
])
present
@user
,
:with
=>
Entities
::
User
end
end
# GET /user
get
"/user"
do
authenticate!
present
@current_user
,
:with
=>
Entities
::
User
end
end
end
lib/api/entities.rb
0 → 100644
View file @
4ad91d3c
module
Gitlab
module
Entities
class
User
<
Grape
::
Entity
expose
:id
,
:email
,
:name
,
:bio
,
:skype
,
:linkedin
,
:twitter
,
:dark_scheme
,
:theme_id
,
:blocked
,
:created_at
end
end
end
lib/api/helpers.rb
0 → 100644
View file @
4ad91d3c
module
Gitlab
module
APIHelpers
def
current_user
@current_user
||=
User
.
find_by_authentication_token
(
params
[
:private_token
])
end
def
authenticate!
error!
(
'401 Unauthorized'
,
401
)
unless
current_user
end
end
end
spec/api/users_spec.rb
0 → 100644
View file @
4ad91d3c
require
'spec_helper'
describe
Gitlab
::
API
do
let
(
:user
)
{
Factory
:user
}
describe
"GET /users"
do
it
"should return authentication error"
do
get
"/api/users"
response
.
status
.
should
==
401
end
describe
"authenticated GET /users"
do
it
"should return an array of users"
do
get
"/api/users?private_token=
#{
user
.
private_token
}
"
response
.
status
.
should
==
200
json
=
JSON
.
parse
(
response
.
body
)
json
.
should
be_an
Array
json
.
first
[
'email'
].
should
==
user
.
email
end
end
end
describe
"GET /users/:id"
do
it
"should return a user by id"
do
get
"/api/users/
#{
user
.
id
}
?private_token=
#{
user
.
private_token
}
"
response
.
status
.
should
==
200
JSON
.
parse
(
response
.
body
)[
'email'
].
should
==
user
.
email
end
end
describe
"GET /user"
do
it
"should return current user"
do
get
"/api/user?private_token=
#{
user
.
private_token
}
"
response
.
status
.
should
==
200
JSON
.
parse
(
response
.
body
)[
'email'
].
should
==
user
.
email
end
end
end
spec/spec_helper.rb
View file @
4ad91d3c
...
...
@@ -58,4 +58,8 @@ RSpec.configure do |config|
config
.
after
do
DatabaseCleaner
.
clean
end
config
.
include
RSpec
::
Rails
::
RequestExampleGroup
,
:type
=>
:request
,
:example_group
=>
{
:file_path
=>
/spec\/api/
}
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