Completed
Push — master ( 227ddc...d26fca )
by Dominik
03:42
created

AzineEmailTwigExtension::getName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
namespace Azine\EmailBundle\Services;
3
4
use Symfony\Component\Translation\TranslatorInterface;
5
6
class AzineEmailTwigExtension extends \Twig_Extension
7
{
8
    /**
9
     * @var TemplateProviderInterface
10
     */
11
    private $templateProvider;
12
13
    /**
14
     * @var TranslatorInterface
15
     */
16
    private $translator;
17
18
    /**
19
     * @var array
20
     */
21
    private $domainsToTrack;
22
23
    /**
24
     * @param TemplateProviderInterface $templateProvider
25
     * @param TranslatorInterface $translator
26
     * @param array of string $domainsToTrack
27
     */
28 11
    public function __construct(TemplateProviderInterface $templateProvider, TranslatorInterface $translator, array $domainsToTrack = array()){
29 11
        $this->templateProvider = $templateProvider;
30 11
        $this->translator = $translator;
31 11
        $this->domainsToTrack = $domainsToTrack;
32 11
    }
33
34
    /**
35
     * {@inheritdoc}
36
     */
37 1
    public function getFilters()
38
    {
39 1
        $filters[] = new \Twig_SimpleFilter('textWrap', array($this, 'textWrap'));
0 ignored issues
show
Coding Style Comprehensibility introduced by
$filters was never initialized. Although not strictly required by PHP, it is generally a good practice to add $filters = array(); before regardless.

Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.

Let’s take a look at an example:

foreach ($collection as $item) {
    $myArray['foo'] = $item->getFoo();

    if ($item->hasBar()) {
        $myArray['bar'] = $item->getBar();
    }

    // do something with $myArray
}

As you can see in this example, the array $myArray is initialized the first time when the foreach loop is entered. You can also see that the value of the bar key is only written conditionally; thus, its value might result from a previous iteration.

This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.

Loading history...
Deprecated Code introduced by
The class Twig_SimpleFilter has been deprecated with message: to be removed in 3.0

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
40 1
        $filters[] = new \Twig_SimpleFilter('urlEncodeText', array($this, 'urlEncodeText'), array('is_safe' => array('html')));
0 ignored issues
show
Deprecated Code introduced by
The class Twig_SimpleFilter has been deprecated with message: to be removed in 3.0

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
41 1
        $filters[] = new \Twig_SimpleFilter('addCampaignParamsForTemplate', array($this, 'addCampaignParamsForTemplate'), array('is_safe' => array('html')));
0 ignored issues
show
Deprecated Code introduced by
The class Twig_SimpleFilter has been deprecated with message: to be removed in 3.0

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
42 1
        return $filters;
43
    }
44
45 1
    public function urlEncodeText($text)
46
    {
47 1
        $text = str_replace("%","%25", $text);
48 1
        $text = str_replace(array(	"\n",
49 1
                                    " ",
50 1
                                    "&",
51 1
                                    "\\",
52 1
                                    "<",
53 1
                                    ">",
54 1
                                    '"',
55 1
                                    "	",
56 1
                                ),
57 1
                            array(	"%0D%0A",
58 1
                                    "%20",
59 1
                                    "%26",
60 1
                                    "%5C",
61 1
                                    "%3D",
62 1
                                    "%3E",
63 1
                                    "%23",
64 1
                                    "%09",
65 1
                                ), $text);
66
67 1
        return $text;
68
    }
69
70
    /**
71
     * Wrap the text to the lineLength is not exeeded.
72
     * @param  string  $text
73
     * @param  integer $lineLength default: 75
74
     * @return string  the wrapped string
75
     */
76 3
    public function textWrap($text, $lineLength = 75)
77
    {
78 3
        return wordwrap($text, $lineLength);
79
    }
80
81
    /**
82
     * Returns the name of the extension.
83
     *
84
     * @return string The extension name
85
     */
86 1
    public function getName()
87
    {
88 1
        return 'azine_email_bundle_twig_extension';
89
    }
90
91
    public function addCampaignParamsForTemplate($html, $templateId, $templateParams){
92
        $campaignParams = $this->templateProvider->getCampaignParamsFor($templateId, $templateParams);
93
        return $this->addCampaignParamsToAllUrls($html, $campaignParams);
94
    }
95
96
    /**
97
     * Add the campaign-parameters to all URLs in the html
98
     * @param  string $html
99
     * @param  array  $campaignParams
100
     * @return string
101
     */
102 4
    public function addCampaignParamsToAllUrls($html, $campaignParams)
103
    {
104
105 4
        $urlPattern = '/(href=[\'|"])(http[s]?\:\/\/\S*)([\'|"])/';
106
107 4
        $filteredHtml = preg_replace_callback($urlPattern, function ($matches) use ($campaignParams) {
108 4
                                                                    $start = $matches[1];
109 4
                                                                    $url = $matches[2];
110 4
                                                                    $end = $matches[3];
111 4
                                                                    $domain = parse_url($url, PHP_URL_HOST);
112
113
                                                                    // if the url is not in the list of domains to track then
114 4
                                                                    if(array_search($domain, $this->domainsToTrack) === false){
115
                                                                        // don't append tracking parameters to the url
116 3
                                                                        return $start.$url.$end;
117
                                                                    }
118
119
                                                                    // avoid duplicate params and don't replace existing params
120 1
                                                                    $params = array();
121 1
                                                                    foreach($campaignParams as $nextKey => $nextValue){
122 1
                                                                        if(strpos($url, $nextKey) === false){
123 1
                                                                            $params[$nextKey] = $nextValue;
124 1
                                                                        }
125 1
                                                                    }
126
127 1
                                                                    $urlParams = http_build_query($params);
128
129 1
                                                                    if (strpos($url,"?") === false) {
130 1
                                                                        $urlParams = "?".$urlParams;
131 1
                                                                    } else {
132 1
                                                                        $urlParams = "&".$urlParams;
133
                                                                    }
134
135 1
                                                                    $replacement = $start.$url.$urlParams.$end;
136
137 1
                                                                    return $replacement;
138
139 4
                                                                }, $html);
140
141 4
        return $filteredHtml;
142
    }
143
}
144