diff options
author | Dan McGee <dan@archlinux.org> | 2010-05-26 10:47:43 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-05-26 10:50:03 -0500 |
commit | debec14b736162c65421ee1bace3adb049746ed4 (patch) | |
tree | 1f532f8e36c2055ba0fb5d7372b72514b5fc6f5a /packages/views.py | |
parent | 5866498603eb8cc7d194bff39e01a45b11ba36d3 (diff) |
Add ability to download package from web interface
After adding filename to the database, this is a rather simple request (see
FS#19546). Right now the "randomly" chosen mirror happens to always be
mirrors.kernel.org as it is the only one filed under the 'Any' country which
is what we screen on. Perhaps this logic could be improved in the future but
I don't see these links being all that high traffic anyway.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'packages/views.py')
-rw-r--r-- | packages/views.py | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/packages/views.py b/packages/views.py index 682ddedf..6838de03 100644 --- a/packages/views.py +++ b/packages/views.py @@ -12,9 +12,11 @@ from django.views.generic import list_detail from django.db.models import Q import datetime +import string from main.models import Package, PackageFile from main.models import Arch, Repo, Signoff +from main.models import MirrorUrl from main.utils import make_choice from packages.models import PackageRelation @@ -316,5 +318,19 @@ def flag(request, name='', repo='', arch=''): return render_to_response('packages/flag.html', context) -# vim: set ts=4 sw=4 et: +def download(request, name='', repo='', arch=''): + pkg = get_object_or_404(Package, + pkgname=name, repo__name__iexact=repo, arch__name=arch) + mirrorurl = MirrorUrl.objects.filter(mirror__country='Any', + mirror__public=True, mirror__active=True, + protocol__protocol__iexact='HTTP')[0] + details = { + 'host': mirrorurl.url, + 'arch': pkg.arch.name, + 'repo': pkg.repo.name.lower(), + 'file': pkg.filename, + } + url = string.Template('${host}${repo}/os/${arch}/${file}').substitute(details) + return HttpResponseRedirect(url) +# vim: set ts=4 sw=4 et: |