Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / admin / stats.py @ f6ff3033

History | View | Annotate | Download (3.4 kB)

1
# Copyright 2013 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33
import datetime
34
from django.conf import settings
35
from django.db.models import Sum
36

    
37
from astakos.im.models import AstakosUser, Resource
38
from astakos.quotaholder_app.models import Holding
39

    
40

    
41
def get_public_stats():
42
    users = AstakosUser.objects.all()
43
    active = users.filter(is_active=True)
44
    return {"users": {"total": users.count(),
45
                      "active": active.count()}}
46

    
47

    
48
def get_astakos_stats():
49
    stats = {"datetime": datetime.datetime.now().strftime("%c")}
50

    
51
    resources = Resource.objects.values_list("name", flat=True)
52

    
53
    users = AstakosUser.objects.all()
54
    verified = users.filter(email_verified=True)
55
    active = users.filter(is_active=True)
56

    
57
    user_stats = {}
58
    user_stats["total"] = {"total": users.count(),
59
                           "verified": verified.count(),
60
                           "active": active.count(),
61
                           "usage": {}}
62

    
63
    for resource in resources:
64
        usage = Holding.objects.filter(resource=resource)\
65
                               .aggregate(summ=Sum("usage_max"))
66
        user_stats["total"]["usage"][resource] = int(usage["summ"])
67

    
68
    for provider in settings.ASTAKOS_IM_MODULES:
69

    
70
        users = AstakosUser.objects.filter(auth_providers__module=provider)
71
        verified = users.filter(email_verified=True)
72
        active = users.filter(is_active=True)
73

    
74
        user_stats[provider] = {"total": users.count(),
75
                                "verified": verified.count(),
76
                                "active": active.count(),
77
                                "usage": {}}
78

    
79
        users_uuids = users.values_list("uuid", flat=True)
80
        for resource in resources:
81
            usage = Holding.objects\
82
                           .filter(holder__in=users_uuids, resource=resource)\
83
                           .aggregate(summ=Sum("usage_max"))
84
            user_stats[provider]["usage"][resource] = int(usage["summ"])
85

    
86
    stats["users"] = user_stats
87

    
88
    return stats