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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
7b5c3cc8
Commit
7b5c3cc8
authored
Jun 27, 2012
by
Nihad Abbasov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add projects API
parent
4ad91d3c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
101 additions
and
0 deletions
+101
-0
lib/api.rb
lib/api.rb
+30
-0
lib/api/entities.rb
lib/api/entities.rb
+15
-0
spec/api/projects_spec.rb
spec/api/projects_spec.rb
+56
-0
No files found.
lib/api.rb
View file @
7b5c3cc8
...
...
@@ -6,6 +6,7 @@ module Gitlab
format
:json
helpers
APIHelpers
# Users API
resource
:users
do
before
{
authenticate!
}
...
...
@@ -27,5 +28,34 @@ module Gitlab
authenticate!
present
@current_user
,
:with
=>
Entities
::
User
end
# Projects API
resource
:projects
do
before
{
authenticate!
}
# GET /projects
get
do
@projects
=
current_user
.
projects
present
@projects
,
:with
=>
Entities
::
Project
end
# GET /projects/:id
get
":id"
do
@project
=
Project
.
find_by_code
(
params
[
:id
])
present
@project
,
:with
=>
Entities
::
Project
end
# GET /projects/:id/repository/branches
get
":id/repository/branches"
do
@project
=
Project
.
find_by_code
(
params
[
:id
])
present
@project
.
repo
.
heads
.
sort_by
(
&
:name
),
:with
=>
Entities
::
ProjectRepositoryBranches
end
# GET /projects/:id/repository/tags
get
":id/repository/tags"
do
@project
=
Project
.
find_by_code
(
params
[
:id
])
present
@project
.
repo
.
tags
.
sort_by
(
&
:name
).
reverse
,
:with
=>
Entities
::
ProjectRepositoryTags
end
end
end
end
lib/api/entities.rb
View file @
7b5c3cc8
...
...
@@ -4,5 +4,20 @@ module Gitlab
expose
:id
,
:email
,
:name
,
:bio
,
:skype
,
:linkedin
,
:twitter
,
:dark_scheme
,
:theme_id
,
:blocked
,
:created_at
end
class
Project
<
Grape
::
Entity
expose
:id
,
:code
,
:name
,
:description
,
:path
,
:default_branch
expose
:owner
,
:using
=>
Entities
::
User
expose
:private_flag
,
:as
=>
:private
expose
:issues_enabled
,
:merge_requests_enabled
,
:wall_enabled
,
:wiki_enabled
,
:created_at
end
class
ProjectRepositoryBranches
<
Grape
::
Entity
expose
:name
,
:commit
end
class
ProjectRepositoryTags
<
Grape
::
Entity
expose
:name
,
:commit
end
end
end
spec/api/projects_spec.rb
0 → 100644
View file @
7b5c3cc8
require
'spec_helper'
describe
Gitlab
::
API
do
let
(
:user
)
{
Factory
:user
}
let!
(
:project
)
{
Factory
:project
,
:owner
=>
user
}
describe
"GET /projects"
do
before
{
project
.
add_access
(
user
,
:read
)
}
it
"should return authentication error"
do
get
"/api/projects"
response
.
status
.
should
==
401
end
describe
"authenticated GET /projects"
do
it
"should return an array of projects"
do
get
"/api/projects?private_token=
#{
user
.
private_token
}
"
response
.
status
.
should
==
200
json
=
JSON
.
parse
(
response
.
body
)
json
.
should
be_an
Array
json
.
first
[
'name'
].
should
==
project
.
name
json
.
first
[
'owner'
][
'email'
].
should
==
user
.
email
end
end
end
describe
"GET /projects/:id"
do
it
"should return a project by id"
do
get
"/api/projects/
#{
project
.
code
}
?private_token=
#{
user
.
private_token
}
"
response
.
status
.
should
==
200
json
=
JSON
.
parse
(
response
.
body
)
json
[
'name'
].
should
==
project
.
name
json
[
'owner'
][
'email'
].
should
==
user
.
email
end
end
describe
"GET /projects/:id/repository/branches"
do
it
"should return an array of project branches"
do
get
"/api/projects/
#{
project
.
code
}
/repository/branches?private_token=
#{
user
.
private_token
}
"
response
.
status
.
should
==
200
json
=
JSON
.
parse
(
response
.
body
)
json
.
should
be_an
Array
json
.
first
[
'name'
].
should
==
project
.
repo
.
heads
.
sort_by
(
&
:name
).
first
.
name
end
end
describe
"GET /projects/:id/repository/tags"
do
it
"should return an array of project tags"
do
get
"/api/projects/
#{
project
.
code
}
/repository/tags?private_token=
#{
user
.
private_token
}
"
response
.
status
.
should
==
200
json
=
JSON
.
parse
(
response
.
body
)
json
.
should
be_an
Array
json
.
first
[
'name'
].
should
==
project
.
repo
.
tags
.
sort_by
(
&
:name
).
reverse
.
first
.
name
end
end
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