Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templatetags / filters.py @ adaf6800

History | View | Annotate | Download (4.7 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 calendar
35
import datetime
36

    
37
from collections import defaultdict
38

    
39
from django import template
40
from django.core.paginator import Paginator, EmptyPage
41
from django.db.models.query import QuerySet
42

    
43
from astakos.im.settings import PAGINATE_BY
44

    
45
register = template.Library()
46

    
47
DELIM = ','
48

    
49

    
50
@register.filter
51
def monthssince(joined_date):
52
    now = datetime.datetime.now()
53
    date = datetime.datetime(
54
        year=joined_date.year, month=joined_date.month, day=1)
55
    months = []
56

    
57
    month = date.month
58
    year = date.year
59
    timestamp = calendar.timegm(date.utctimetuple())
60

    
61
    while date < now:
62
        months.append((year, month, timestamp))
63

    
64
        if date.month < 12:
65
            month = date.month + 1
66
            year = date.year
67
        else:
68
            month = 1
69
            year = date.year + 1
70

    
71
        date = datetime.datetime(year=year, month=month, day=1)
72
        timestamp = calendar.timegm(date.utctimetuple())
73

    
74
    return months
75

    
76

    
77
@register.filter
78
def lookup(d, key):
79
    return d.get(key)
80

    
81
@register.filter
82
def lookup_uni(d, key):
83
    return d.get(unicode(key))
84

    
85

    
86
@register.filter
87
def dkeys(d):
88
    return d.keys()
89

    
90

    
91
@register.filter
92
def month_name(month_number):
93
    return calendar.month_name[month_number]
94

    
95

    
96
@register.filter
97
def todate(value, arg=''):
98
    secs = int(value) / 1000
99
    return datetime.datetime.fromtimestamp(secs)
100

    
101

    
102
@register.filter
103
def rcut(value, chars='/'):
104
    return value.rstrip(chars)
105

    
106

    
107
@register.filter
108
def paginate(l, args):
109
   l = l or []
110
   page, delim, sorting = args.partition(DELIM)
111
   if sorting:
112
       if isinstance(l, QuerySet):
113
           l = l.order_by(sorting)
114
       elif isinstance(l, list):
115
           default = ''
116
           if sorting.endswith('_date'):
117
               default = datetime.datetime.utcfromtimestamp(0)
118
           l.sort(key=lambda i: getattr(i, sorting)
119
                  if getattr(i, sorting) else default)
120
   paginator = Paginator(l, PAGINATE_BY)
121
   try:
122
       paginator.len
123
   except AttributeError:
124
       paginator._count = len(list(l))
125
   
126
   try:
127
       page_number = int(page)
128
   except ValueError:
129
       if page == 'last':
130
           page_number = paginator.num_pages
131
       else:
132
           page_number = 1
133
   try:
134
       page = paginator.page(page_number)
135
   except EmptyPage:
136
       page = paginator.page(1)
137
   return page
138

    
139

    
140
@register.filter
141
def concat(str1, str2):
142
    if not str2:
143
        return str(str1)
144
    return '%s%s%s' % (str1, DELIM, str2)
145

    
146

    
147
@register.filter
148
def items(d):
149
    if isinstance(d, defaultdict):
150
        return d.iteritems()
151
    return d
152

    
153

    
154
@register.filter
155
def get_value_after_dot(value):
156
    return value.split(".")[1]
157

    
158
@register.filter
159
def strip_http(value):
160
    return value.replace('http://','')[:-1]
161

    
162

    
163
from math import log
164
unit_list = zip(['bytes', 'kB', 'MB', 'GB', 'TB', 'PB'], [0, 0, 0, 0, 0, 0])
165

    
166
@register.filter
167
def sizeof_fmt(num):
168
    """Human friendly file size"""
169
    if num > 1:
170
        exponent = min(int(log(num, 1024)), len(unit_list) - 1)
171
        quotient = float(num) / 1024**exponent
172
        unit, num_decimals = unit_list[exponent]
173
        format_string = '{:.%sf} {0}' % (num_decimals)
174
        return format_string.format(quotient, unit)
175
    if num == 0:
176
        return '0 bytes'
177
    if num == 1:
178
        return '1 byte'
179
    else:
180
       return '';