Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (3.9 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

    
82
@register.filter
83
def dkeys(d):
84
    return d.keys()
85

    
86

    
87
@register.filter
88
def month_name(month_number):
89
    return calendar.month_name[month_number]
90

    
91

    
92
@register.filter
93
def todate(value, arg=''):
94
    secs = int(value) / 1000
95
    return datetime.datetime.fromtimestamp(secs)
96

    
97

    
98
@register.filter
99
def rcut(value, chars='/'):
100
    return value.rstrip(chars)
101

    
102

    
103
@register.filter
104
def paginate(l, args):
105
    page, delim, sorting = args.partition(DELIM)
106
    if sorting:
107
        if isinstance(l, QuerySet):
108
            l = l.order_by(sorting)
109
        elif isinstance(l, list):
110
            default = ''
111
            if sorting.endswith('_date'):
112
                default = datetime.datetime.utcfromtimestamp(0)
113
            l.sort(key=lambda i: getattr(i, sorting)
114
                   if getattr(i, sorting) else default)
115

    
116
    paginator = Paginator(l, PAGINATE_BY)
117

    
118
    try:
119
        page_number = int(page)
120
    except ValueError:
121
        if page == 'last':
122
            page_number = paginator.num_pages
123
        else:
124
            page_number = 1
125
    try:
126
        page = paginator.page(page_number)
127
    except EmptyPage:
128
        page = paginator.page(1)
129
    return page
130

    
131

    
132
@register.filter
133
def concat(str1, str2):
134
    if not str2:
135
        return str(str1)
136
    return '%s%s%s' % (str1, DELIM, str2)
137

    
138

    
139
@register.filter
140
def items(d):
141
    if isinstance(d, defaultdict):
142
        return d.iteritems()
143
    return d
144

    
145

    
146
@register.filter
147
def get_value_after_dot(value):
148
    return value.split(".")[1]