diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-12-12 19:39:46 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-12-12 19:39:46 -0500 |
commit | 482ada7da21540dc62a1daeed4963bd591a77e00 (patch) | |
tree | efb3fc5b14bdb2f8838dfc37b09c56f3c6a2ae8c /public | |
parent | cdfa6c1195bb6feb812bffc981183f0758ca5e2f (diff) | |
parent | cbdcb08557112f53ddcf074b950ee0950e12a045 (diff) |
Merge tag 'release_2012-04-02'
Signing page changes, other tweaks
Conflicts:
README
local_settings.py.example
requirements_prod.txt
urls.py
Diffstat (limited to 'public')
-rw-r--r-- | public/views.py | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/public/views.py b/public/views.py index a8ce2fa7..e031201e 100644 --- a/public/views.py +++ b/public/views.py @@ -1,6 +1,8 @@ +from datetime import datetime + from django.conf import settings from django.contrib.auth.models import User -from django.db.models import Count +from django.db.models import Count, Q from django.http import Http404 from django.shortcuts import redirect from django.views.decorators.cache import cache_control @@ -71,17 +73,30 @@ def feeds(request): @cache_control(max_age=300) def keys(request): + not_expired = Q(expires__gt=datetime.utcnow) | Q(expires__isnull=True) master_keys = MasterKey.objects.select_related('owner', 'revoker', 'owner__userprofile', 'revoker__userprofile').filter( revoked__isnull=True) - sig_counts = PGPSignature.objects.filter(valid=True, - expires__isnull=True).values_list('signer').annotate( + + sig_counts = PGPSignature.objects.filter( + not_expired, valid=True).values_list('signer').annotate( Count('signer')) sig_counts = dict((key_id[-16:], ct) for key_id, ct in sig_counts) + for key in master_keys: key.signature_count = sig_counts.get(key.pgp_key[-16:], 0) + + users = User.objects.filter(is_active=True).select_related( + 'userprofile__pgp_key').order_by('first_name', 'last_name') + + # frozenset because we are going to do lots of __contains__ lookups + signatures = frozenset(PGPSignature.objects.filter( + not_expired, valid=True).values_list('signer', 'signee')) + context = { 'keys': master_keys, + 'active_users': users, + 'signatures': signatures, } return direct_to_template(request, 'public/keys.html', context) |