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
3183092c
Commit
3183092c
authored
Jan 14, 2016
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add pagination headers to already paginated API resources
parent
9f8c38bd
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
52 additions
and
21 deletions
+52
-21
CHANGELOG
CHANGELOG
+1
-0
lib/api/helpers.rb
lib/api/helpers.rb
+19
-11
lib/api/notes.rb
lib/api/notes.rb
+3
-9
spec/requests/api/commit_status_spec.rb
spec/requests/api/commit_status_spec.rb
+5
-1
spec/requests/api/notes_spec.rb
spec/requests/api/notes_spec.rb
+4
-0
spec/support/api/pagination_shared_examples.rb
spec/support/api/pagination_shared_examples.rb
+20
-0
No files found.
CHANGELOG
View file @
3183092c
Please view this file on the master branch, on stable branches it's out of date.
v 8.4.0 (unreleased)
- Add pagination headers to already paginated API resources
- Autocomplete data is now always loaded, instead of when focusing a comment text area (Yorick Peterse)
- Improved performance of finding issues for an entire group (Yorick Peterse)
- Added custom application performance measuring system powered by InfluxDB (Yorick Peterse)
...
...
lib/api/helpers.rb
View file @
3183092c
...
...
@@ -97,11 +97,9 @@ module API
end
def
paginate
(
relation
)
per_page
=
params
[
:per_page
].
to_i
paginated
=
relation
.
page
(
params
[
:page
]).
per
(
per_page
)
add_pagination_headers
(
paginated
,
per_page
)
paginated
relation
.
page
(
params
[
:page
]).
per
(
params
[
:per_page
].
to_i
).
tap
do
|
data
|
add_pagination_headers
(
data
)
end
end
def
authenticate!
...
...
@@ -327,16 +325,26 @@ module API
private
def
add_pagination_headers
(
paginated
,
per_page
)
def
add_pagination_headers
(
paginated_data
)
header
'X-Total'
,
paginated_data
.
total_count
.
to_s
header
'X-Total-Pages'
,
paginated_data
.
total_pages
.
to_s
header
'X-Per-Page'
,
paginated_data
.
limit_value
.
to_s
header
'X-Page'
,
paginated_data
.
current_page
.
to_s
header
'X-Next-Page'
,
paginated_data
.
next_page
.
to_s
header
'X-Prev-Page'
,
paginated_data
.
prev_page
.
to_s
header
'Link'
,
pagination_links
(
paginated_data
)
end
def
pagination_links
(
paginated_data
)
request_url
=
request
.
url
.
split
(
'?'
).
first
links
=
[]
links
<<
%(<#{request_url}?page=#{paginated
.current_page - 1}&per_page=#{per_page}>; rel="prev")
unless
paginated
.
first_page?
links
<<
%(<#{request_url}?page=#{paginated
.current_page + 1}&per_page=#{per_page}>; rel="next")
unless
paginated
.
last_page?
links
<<
%(<#{request_url}?page=1&per_page=#{p
er_pag
e}>; rel="first")
links
<<
%(<#{request_url}?page=#{paginated
.total_pages}&per_page=#{per_pag
e}>; rel="last")
links
<<
%(<#{request_url}?page=#{paginated
_data.current_page - 1}&per_page=#{paginated_data.limit_value}>; rel="prev")
unless
paginated_data
.
first_page?
links
<<
%(<#{request_url}?page=#{paginated
_data.current_page + 1}&per_page=#{paginated_data.limit_value}>; rel="next")
unless
paginated_data
.
last_page?
links
<<
%(<#{request_url}?page=1&per_page=#{p
aginated_data.limit_valu
e}>; rel="first")
links
<<
%(<#{request_url}?page=#{paginated
_data.total_pages}&per_page=#{paginated_data.limit_valu
e}>; rel="last")
header
'Link'
,
links
.
join
(
', '
)
links
.
join
(
', '
)
end
def
abilities
...
...
lib/api/notes.rb
View file @
3183092c
...
...
@@ -22,17 +22,11 @@ module API
@noteable
=
user_project
.
send
(
:"
#{
noteables_str
}
"
).
find
(
params
[
:"
#{
noteable_id_str
}
"
])
# We exclude notes that are cross-references and that cannot be viewed
# by the current user. By doing this exclusion at this level and not
# at the DB query level (which we cannot in that case), the current
# page can have less elements than :per_page even if
# there's more than one page.
# by the current user.
notes
=
# paginate() only works with a relation. This could lead to a
# mismatch between the pagination headers info and the actual notes
# array returned, but this is really a edge-case.
paginate
(
@noteable
.
notes
).
@noteable
.
notes
.
reject
{
|
n
|
n
.
cross_reference_not_visible_for?
(
current_user
)
}
present
notes
,
with:
Entities
::
Note
present
paginate
(
Kaminari
.
paginate_array
(
notes
))
,
with:
Entities
::
Note
end
# Get a single +noteable+ note
...
...
spec/requests/api/commit_status_spec.rb
View file @
3183092c
require
'spec_helper'
describe
API
::
API
,
api:
true
do
describe
API
::
CommitStatus
,
api:
true
do
include
ApiHelpers
let
(
:user
)
{
create
(
:user
)
}
let
(
:user2
)
{
create
(
:user
)
}
...
...
@@ -12,6 +12,10 @@ describe API::API, api: true do
let
(
:commit_status
)
{
create
(
:commit_status
,
commit:
ci_commit
)
}
describe
"GET /projects/:id/repository/commits/:sha/statuses"
do
it_behaves_like
'a paginated resources'
do
let
(
:request
)
{
get
api
(
"/projects/
#{
project
.
id
}
/repository/commits/
#{
commit
.
id
}
/statuses"
,
user
)
}
end
context
"reporter user"
do
let
(
:statuses_id
)
{
json_response
.
map
{
|
status
|
status
[
'id'
]
}
}
...
...
spec/requests/api/notes_spec.rb
View file @
3183092c
...
...
@@ -32,6 +32,10 @@ describe API::API, api: true do
before
{
project
.
team
<<
[
user
,
:reporter
]
}
describe
"GET /projects/:id/noteable/:noteable_id/notes"
do
it_behaves_like
'a paginated resources'
do
let
(
:request
)
{
get
api
(
"/projects/
#{
project
.
id
}
/issues/
#{
issue
.
id
}
/notes"
,
user
)
}
end
context
"when noteable is an Issue"
do
it
"should return an array of issue notes"
do
get
api
(
"/projects/
#{
project
.
id
}
/issues/
#{
issue
.
id
}
/notes"
,
user
)
...
...
spec/support/api/pagination_shared_examples.rb
0 → 100644
View file @
3183092c
# Specs for paginated resources.
#
# Requires an API request:
# let(:request) { get api("/projects/#{project.id}/repository/branches", user) }
shared_examples
'a paginated resources'
do
before
do
# Fires the request
request
end
it
'has pagination headers'
do
expect
(
response
.
headers
).
to
include
(
'X-Total'
)
expect
(
response
.
headers
).
to
include
(
'X-Total-Pages'
)
expect
(
response
.
headers
).
to
include
(
'X-Per-Page'
)
expect
(
response
.
headers
).
to
include
(
'X-Page'
)
expect
(
response
.
headers
).
to
include
(
'X-Next-Page'
)
expect
(
response
.
headers
).
to
include
(
'X-Prev-Page'
)
expect
(
response
.
headers
).
to
include
(
'Link'
)
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