Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / endpoints / quotaholder.py @ 5ce3ce4f

History | View | Annotate | Download (4.1 kB)

1
# Copyright 2011-2012 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

    
34
import socket
35
import logging
36

    
37
from django.utils.translation import ugettext as _
38

    
39
from astakos.im.settings import QUOTA_HOLDER_URL, LOGGING_LEVEL
40

    
41
if QUOTA_HOLDER_URL:
42
    from commissioning.clients.quotaholder import QuotaholderHTTP
43

    
44
ENTITY_KEY = '1'
45

    
46
logger = logging.getLogger(__name__)
47

    
48

    
49
def register_users(users, client=None):
50
    if not users:
51
        return
52

    
53
    if not QUOTA_HOLDER_URL:
54
        return
55

    
56
    c = client or QuotaholderHTTP(QUOTA_HOLDER_URL)
57
    data = []
58
    append = data.append
59
    for user in users:
60
        try:
61
            entity = user.email
62
        except AttributeError:
63
            continue
64
        else:
65
            args = entity, owner, key, ownerkey = (
66
                entity, 'system', ENTITY_KEY, ''
67
            )
68
            append(args)
69

    
70
    if not data:
71
        return
72

    
73
    rejected = c.create_entity(
74
        context={},
75
        create_entity=data,
76
    )
77
    msg = _('Create entities: %s - Rejected: %s' % (data, rejected,))
78
    logger.log(LOGGING_LEVEL, msg)
79

    
80
    created = filter(lambda u: unicode(u.email) not in rejected, users)
81
    send_quota(created, c)
82
    return rejected
83

    
84

    
85
def send_quota(users, client=None):
86
    if not users:
87
        return
88

    
89
    if not QUOTA_HOLDER_URL:
90
        return
91

    
92
    c = client or QuotaholderHTTP(QUOTA_HOLDER_URL)
93
    data = []
94
    append = data.append
95
    for user in users:
96
        try:
97
            entity = user.email
98
        except AttributeError:
99
            continue
100
        else:
101
            for resource, limit in user.quota.iteritems():
102
                args = entity, resource, key, quantity, capacity, import_limit, \
103
                    export_limit, flags = (
104
                        entity, resource, ENTITY_KEY, '0', str(limit), 0, 0, 0
105
                    )
106
                append(args)
107

    
108
    if not data:
109
        return
110

    
111
    rejected = c.set_quota(context={}, set_quota=data)
112
    msg = _('Set quota: %s - Rejected: %s' % (data, rejected,))
113
    logger.log(LOGGING_LEVEL, msg)
114
    return rejected
115

    
116

    
117
def get_quota(users, client=None):
118
    if not users:
119
        return
120

    
121
    if not QUOTA_HOLDER_URL:
122
        return
123

    
124
    c = client or QuotaholderHTTP(QUOTA_HOLDER_URL)
125
    data = []
126
    append = data.append
127
    for user in users:
128
        try:
129
            entity = user.email
130
        except AttributeError:
131
            continue
132
        else:
133
            for r in user.quota.keys():
134
                args = entity, resource, key = entity, r, ENTITY_KEY
135
                append(args)
136

    
137
    if not data:
138
        return
139

    
140
    r = c.get_quota(context={}, get_quota=data)
141
    msg = _('Get quota: %s' % data)
142
    logger.log(LOGGING_LEVEL, msg)
143
    return r