Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / admin / stats.py @ 3d6d8464

History | View | Annotate | Download (3.5 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
             "providers": [],
51
             "users": {},
52
             "resources": {}}
53

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

    
58
    for provider in settings.ASTAKOS_IM_MODULES:
59
        # Add provider
60
        stats["providers"].append(provider)
61

    
62
        # Add stats about users
63
        users = AstakosUser.objects.filter(auth_providers__module=provider)
64
        verified = users.filter(email_verified=True)
65
        active = users.filter(is_active=True)
66

    
67
        stats["users"][provider] = {"total": users.count(),
68
                                    "verified": verified.count(),
69
                                    "active": active.count()}
70

    
71
        # Add stats about resources
72
        users_uuids = users.values_list("uuid", flat=True)
73
        resources_stats = {}
74
        for resource in Resource.objects.all():
75
            info = Holding.objects\
76
                          .filter(holder__in=users_uuids,
77
                                  resource=resource.name)\
78
                          .aggregate(usage_sum=Sum("usage_max"),
79
                                     limit_sum=Sum("limit"))
80
            resources_stats[resource.name] = {"used": info["usage_sum"],
81
                                              "limit": info["limit_sum"],
82
                                              "unit": resource.unit,
83
                                              "description": resource.desc}
84
        stats["resources"][provider] = resources_stats
85

    
86
    return stats