ApiLog   A
last analyzed

Complexity

Total Complexity 7

Size/Duplication

Total Lines 55
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Importance

Changes 0
Metric Value
wmc 7
c 0
b 0
f 0
lcom 1
cbo 0
dl 0
loc 55
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A _construct() 0 4 1
A getUnserializedArray() 0 15 4
A getRawRequestArray() 0 4 1
A getRawResponseArray() 0 4 1
1
<?php
2
3
/**
4
 * PAYONE Magento 2 Connector is free software: you can redistribute it and/or modify
5
 * it under the terms of the GNU Lesser General Public License as published by
6
 * the Free Software Foundation, either version 3 of the License, or
7
 * (at your option) any later version.
8
 *
9
 * PAYONE Magento 2 Connector is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU Lesser General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public License
15
 * along with PAYONE Magento 2 Connector. If not, see <http://www.gnu.org/licenses/>.
16
 *
17
 * PHP version 5
18
 *
19
 * @category  Payone
20
 * @package   Payone_Magento2_Plugin
21
 * @author    FATCHIP GmbH <[email protected]>
22
 * @copyright 2003 - 2016 Payone GmbH
23
 * @license   <http://www.gnu.org/licenses/> GNU Lesser General Public License
24
 * @link      http://www.payone.de
25
 */
26
27
namespace Payone\Core\Model\Entities;
28
29
use Magento\Framework\Model\AbstractModel;
30
31
/**
32
 * ApiLog entity model
33
 */
34
class ApiLog extends AbstractModel
35
{
36
    /**
37
     * Initialize resource model
38
     *
39
     * @return void
40
     */
41
    protected function _construct()
42
    {
43
        $this->_init('Payone\Core\Model\ResourceModel\ApiLog');
44
    }
45
46
    /**
47
     * Unserialize a given column from the entity
48
     *
49
     * @param  string $sKey
50
     * @param  bool   $blSort
51
     * @return array
52
     */
53
    protected function getUnserializedArray($sKey, $blSort = false)
54
    {
55
        $aReturn = [];
56
        $sRequest = $this->getData($sKey);
57
        if ($sRequest) {
58
            $aRequest = unserialize($sRequest);
59
            if (is_array($aRequest)) {
60
                $aReturn = $aRequest;
61
            }
62
        }
63
        if ($blSort) {
64
            ksort($aReturn);
65
        }
66
        return $aReturn;
67
    }
68
69
    /**
70
     * Unserialize raw_request column from entity
71
     *
72
     * @return array
73
     */
74
    public function getRawRequestArray()
75
    {
76
        return $this->getUnserializedArray('raw_request', true);
77
    }
78
79
    /**
80
     * Unserialize raw_response column from entity
81
     *
82
     * @return array
83
     */
84
    public function getRawResponseArray()
85
    {
86
        return $this->getUnserializedArray('raw_response', true);
87
    }
88
}
89