Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
ab03729b
Commit
ab03729b
authored
Jun 12, 2015
by
homm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
allow cursor format customization
parent
e4b0273f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
11 deletions
+17
-11
rest_framework/pagination.py
+17
-11
No files found.
rest_framework/pagination.py
View file @
ab03729b
...
...
@@ -503,15 +503,10 @@ class CursorPagination(BasePagination):
self
.
base_url
=
request
.
build_absolute_uri
()
self
.
ordering
=
self
.
get_ordering
(
request
,
queryset
,
view
)
# Determine if we have a cursor, and if so then decode it.
encoded
=
request
.
query_params
.
get
(
self
.
cursor_query_param
)
if
encoded
is
None
:
self
.
cursor
=
None
self
.
cursor
=
self
.
decode_cursor
(
request
)
if
self
.
cursor
is
None
:
(
offset
,
reverse
,
current_position
)
=
(
0
,
False
,
None
)
else
:
self
.
cursor
=
_decode_cursor
(
encoded
)
if
self
.
cursor
is
None
:
raise
NotFound
(
self
.
invalid_cursor_message
)
(
offset
,
reverse
,
current_position
)
=
self
.
cursor
# Cursor pagination always enforces an ordering.
...
...
@@ -623,8 +618,7 @@ class CursorPagination(BasePagination):
position
=
self
.
previous_position
cursor
=
Cursor
(
offset
=
offset
,
reverse
=
False
,
position
=
position
)
encoded
=
_encode_cursor
(
cursor
)
return
replace_query_param
(
self
.
base_url
,
self
.
cursor_query_param
,
encoded
)
return
self
.
encode_cursor
(
cursor
)
def
get_previous_link
(
self
):
if
not
self
.
has_previous
:
...
...
@@ -672,8 +666,7 @@ class CursorPagination(BasePagination):
position
=
self
.
next_position
cursor
=
Cursor
(
offset
=
offset
,
reverse
=
True
,
position
=
position
)
encoded
=
_encode_cursor
(
cursor
)
return
replace_query_param
(
self
.
base_url
,
self
.
cursor_query_param
,
encoded
)
return
self
.
encode_cursor
(
cursor
)
def
get_ordering
(
self
,
request
,
queryset
,
view
):
"""
...
...
@@ -715,6 +708,19 @@ class CursorPagination(BasePagination):
return
(
ordering
,)
return
tuple
(
ordering
)
def
decode_cursor
(
self
,
request
):
# Determine if we have a cursor, and if so then decode it.
encoded
=
request
.
query_params
.
get
(
self
.
cursor_query_param
)
if
encoded
is
not
None
:
cursor
=
_decode_cursor
(
encoded
)
if
cursor
is
None
:
raise
NotFound
(
self
.
invalid_cursor_message
)
return
cursor
def
encode_cursor
(
self
,
cursor
):
encoded
=
_encode_cursor
(
cursor
)
return
replace_query_param
(
self
.
base_url
,
self
.
cursor_query_param
,
encoded
)
def
_get_position_from_instance
(
self
,
instance
,
ordering
):
attr
=
getattr
(
instance
,
ordering
[
0
]
.
lstrip
(
'-'
))
return
six
.
text_type
(
attr
)
...
...
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