TemplateHydrator::hydrate()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 18
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 12
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 18
ccs 12
cts 12
cp 1
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 12
nc 2
nop 2
crap 2
1
<?php
2
/**
3
 * Copyright (c) 2014 Roave, LLC.
4
 * All rights reserved.
5
 *
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions
8
 * are met:
9
 *
10
 *   * Redistributions of source code must retain the above copyright
11
 *     notice, this list of conditions and the following disclaimer.
12
 *
13
 *   * Redistributions in binary form must reproduce the above copyright
14
 *     notice, this list of conditions and the following disclaimer in
15
 *     the documentation and/or other materials provided with the
16
 *     distribution.
17
 *
18
 *   * Neither the names of the copyright holders nor the names of the
19
 *     contributors may be used to endorse or promote products derived
20
 *     from this software without specific prior written permission.
21
 *
22
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33
 * POSSIBILITY OF SUCH DAMAGE.
34
 *
35
 * @author Antoine Hedgecock
36
 *
37
 * @copyright 2014 Roave, LLC
38
 * @license http://www.opensource.org/licenses/bsd-license.php  BSD License
39
 */
40
41
namespace Roave\EmailTemplates\Hydrator;
42
43
use Roave\EmailTemplates\Entity\TemplateEntity;
44
use Zend\Hydrator\AbstractHydrator;
45
46
class TemplateHydrator extends AbstractHydrator
47
{
48
    /**
49
     * Extract values from an object
50
     *
51
     * @param object $object
52
     *
53
     * @throws Exception\InvalidArgumentException
54
     *
55
     * @return array
56
     */
57 2
    public function extract($object)
58
    {
59 2
        if (! $object instanceof TemplateEntity) {
60 1
            throw new Exception\InvalidArgumentException(sprintf(
61 1
                'Object must be an instance of %s',
62 1
                TemplateEntity::class
63
            ));
64
        }
65
66
        return [
67 1
            'id'               => $this->extractValue('id', $object->getId()),
68 1
            'uuid'             => $this->extractValue('uuid', $object->getUUID()),
69 1
            'locale'           => $this->extractValue('locale', $object->getLocale()),
70 1
            'subject'          => $this->extractValue('subject', $object->getSubject()),
71 1
            'textBody'         => $this->extractValue('textBody', $object->getTextBody()),
72 1
            'htmlBody'         => $this->extractValue('htmlBody', $object->getHtmlBody()),
73 1
            'description'      => $this->extractValue('description', $object->getDescription()),
74 1
            'parameters'       => $this->extractValue('parameters', $object->getParameters()),
75 1
            'updateParameters' => $this->extractValue('updateParameters', $object->getUpdateParameters()),
76
77
            // Dates
78 1
            'createdAt'           => $this->extractValue('createdAt', $object->getCreatedAt()),
79 1
            'updatedAt'           => $this->extractValue('updatedAt', $object->getUpdatedAt()),
80 1
            'parametersUpdatedAt' => $this->extractValue('parametersUpdatedAt', $object->getParametersUpdatedAt()),
81
        ];
82
    }
83
84
    /**
85
     * Hydrate $object with the provided $data.
86
     *
87
     * @param array  $data
88
     * @param object $object
89
     *
90
     * @throws Exception\InvalidArgumentException
91
     *
92
     * @return object
93
     */
94 2
    public function hydrate(array $data, $object)
95
    {
96 2
        if (! $object instanceof TemplateEntity) {
97 1
            throw new Exception\InvalidArgumentException(sprintf(
98 1
                'Object must be an instance of %s',
99 1
                TemplateEntity::class
100
            ));
101
        }
102
103 1
        $object->setSubject($this->hydrateValue('subject', $data['subject']));
104 1
        $object->setTextBody($this->hydrateValue('textBody', $data['textBody']));
105 1
        $object->setHtmlBody($this->hydrateValue('htmlBody', $data['htmlBody']));
106 1
        $object->setDescription($this->hydrateValue('description', $data['description']));
107 1
        $object->setParameters($this->hydrateValue('parameters', $data['parameters']));
108 1
        $object->setUpdateParameters($this->hydrateValue('updateParameters', $data['updateParameters']));
109
110 1
        return $object;
111
    }
112
}
113