~ubuntu-branches/ubuntu/trusty/grantlee/trusty

« back to all changes in this revision

Viewing changes to defaultfilters/logic.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter
  • Date: 2010-06-11 23:41:45 UTC
  • Revision ID: james.westby@ubuntu.com-20100611234145-oas7rhdrbwy8j55c
Tags: upstream-0.1.1
ImportĀ upstreamĀ versionĀ 0.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  This file is part of the Grantlee template system.
 
3
 
 
4
  Copyright (c) 2009,2010 Stephen Kelly <steveire@gmail.com>
 
5
 
 
6
  This library is free software; you can redistribute it and/or
 
7
  modify it under the terms of the GNU Lesser General Public
 
8
  License as published by the Free Software Foundation; either version
 
9
  2 of the Licence, or (at your option) any later version.
 
10
 
 
11
  This library is distributed in the hope that it will be useful,
 
12
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
  Library General Public License for more details.
 
15
 
 
16
  You should have received a copy of the GNU Lesser General Public
 
17
  License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
18
 
 
19
*/
 
20
 
 
21
#include "logic.h"
 
22
#include "util.h"
 
23
 
 
24
QVariant DefaultFilter::doFilter( const QVariant& input, const QVariant &argument, bool autoescape ) const
 
25
{
 
26
  Q_UNUSED( autoescape )
 
27
  if ( !input.isValid() || getSafeString( input ).get().isEmpty() )
 
28
    return argument;
 
29
  return getSafeString( input );
 
30
}
 
31
 
 
32
QVariant DefaultIfNoneFilter::doFilter( const QVariant& input, const QVariant &argument, bool autoescape ) const
 
33
{
 
34
  Q_UNUSED( autoescape )
 
35
  if ( !input.isValid() )
 
36
    return argument;
 
37
  return getSafeString( input );
 
38
}
 
39
 
 
40
QVariant DivisibleByFilter::doFilter( const QVariant& input, const QVariant &argument, bool autoescape ) const
 
41
{
 
42
  Q_UNUSED( autoescape )
 
43
  return ( getSafeString( input ).get().toInt()
 
44
           % QVariant( argument ).toInt() == 0 )
 
45
         ? QString( "true" ) : QString();
 
46
}
 
47
 
 
48
QVariant YesNoFilter::doFilter( const QVariant& input, const QVariant &argument, bool autoescape ) const
 
49
{
 
50
  Q_UNUSED( autoescape )
 
51
  SafeString arg = getSafeString( argument );
 
52
  QString yes;
 
53
  QString no;
 
54
  QString maybe;
 
55
  if ( arg.get().isEmpty() ) {
 
56
    yes = "yes";
 
57
    no = "no";
 
58
    maybe = "maybe";
 
59
  } else {
 
60
    QStringList argList = arg.get().split( ',' );
 
61
    int numArgs = argList.size();
 
62
    if (( numArgs < 2 ) || ( numArgs > 3 ) ) {
 
63
      return input.toString();
 
64
    } else if ( numArgs == 2 ) {
 
65
      yes = argList.at( 0 );
 
66
      no = argList.at( 1 );
 
67
      maybe = argList.at( 1 );
 
68
    } else if ( numArgs == 3 ) {
 
69
      yes = argList.at( 0 );
 
70
      no = argList.at( 1 );
 
71
      maybe = argList.at( 2 );
 
72
    }
 
73
  }
 
74
  if ( !input.isValid() )
 
75
    return maybe;
 
76
  if ( !getSafeString( input ).get().isEmpty() )
 
77
    return yes;
 
78
  return no;
 
79
}
 
80