mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-11 12:17:24 +03:00
21 lines
767 B
Python
21 lines
767 B
Python
|
from django.conf.urls.defaults import url
|
||
|
|
||
|
|
||
|
def format_suffix_patterns(urlpatterns, suffix_required=False):
|
||
|
"""
|
||
|
Supplement existing urlpatterns with corrosponding patterns that also
|
||
|
include a '.format' suffix. Retains urlpattern ordering.
|
||
|
"""
|
||
|
ret = []
|
||
|
for urlpattern in urlpatterns:
|
||
|
# Form our complementing '.format' urlpattern
|
||
|
regex = urlpattern.regex.pattern.rstrip('$') + '.(?P<format>[a-z]+)$'
|
||
|
view = urlpattern._callback or urlpattern._callback_str
|
||
|
kwargs = urlpattern.default_args
|
||
|
name = urlpattern.name
|
||
|
# Add in both the existing and the new urlpattern
|
||
|
if not suffix_required:
|
||
|
ret.append(urlpattern)
|
||
|
ret.append(url(regex, view, kwargs, name))
|
||
|
return ret
|