42 lines
1.6 KiB
Python
42 lines
1.6 KiB
Python
# Copyright (C) 2014-2015 Andrey Antukh <niwi@niwi.be>
|
|
# Copyright (C) 2014-2015 Jesús Espino <jespinog@gmail.com>
|
|
# Copyright (C) 2014-2015 David Barragán <bameda@dbarragan.com>
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# This code is partially taken from django-rest-framework:
|
|
# Copyright (c) 2011-2014, Tom Christie
|
|
|
|
"""
|
|
Provide reverse functions that return fully qualified URLs
|
|
"""
|
|
from django.core.urlresolvers import reverse as django_reverse
|
|
from django.utils.functional import lazy
|
|
|
|
|
|
def reverse(viewname, args=None, kwargs=None, request=None, format=None, **extra):
|
|
"""
|
|
Same as `django.core.urlresolvers.reverse`, but optionally takes a request
|
|
and returns a fully qualified URL, using the request to get the base URL.
|
|
"""
|
|
if format is not None:
|
|
kwargs = kwargs or {}
|
|
kwargs["format"] = format
|
|
url = django_reverse(viewname, args=args, kwargs=kwargs, **extra)
|
|
if request:
|
|
return request.build_absolute_uri(url)
|
|
return url
|
|
|
|
|
|
reverse_lazy = lazy(reverse, str)
|