ZanoxEx::getSales()   A
last analyzed

Complexity

Conditions 3
Paths 3

Size

Total Lines 15

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 15
rs 9.7666
cc 3
nc 3
nop 4
1
<?php
2
/**
3
 * Copyright (c) Padosoft.com 2017.
4
 */
5
6
7
namespace Padosoft\AffiliateNetwork;
8
use Oara\Network\Publisher\Zanox as ZanoxOara;
9
10
class ZanoxEx extends ZanoxOara
11
{
12
    /**
13
     * Call protected/private method of a class.
14
     *
15
     * @param object &$object    Instantiated object that we will run method on.
16
     * @param string $methodName Method name to call
17
     * @param array  $parameters Array of parameters to pass into method.
18
     *
19
     * @return mixed Method return.
20
     */
21 View Code Duplication
    public function invokeMethod(&$object,$methodName, array $parameters = array())
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
22
    {
23
        $reflection = new \ReflectionClass(get_class($object));
24
        $method = $reflection->getMethod($methodName);
25
        $method->setAccessible(true);
26
        return $method->invokeArgs($object, $parameters);
27
    }
28
29
    /**
30
     * Call protected/private property of a class.
31
     * @param $object
32
     * @param $propertyName
33
     *
34
     * @return mixed
35
     */
36 View Code Duplication
    public function invokeProperty(&$object,$propertyName)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
37
    {
38
        $reflection = new \ReflectionClass(get_class($object));
39
        $property = $reflection->getProperty($propertyName);
40
        $property->setAccessible(true);
41
        return $property->getValue($object);
42
    }
43
    /**
44
     * get Sales updated/created on the date passed
45
     * @param $date
46
     * @param $page
47
     * @param $pageSize
48
     * @param int $iteration
49
     *
50
     * @return array
51
     */
52
    protected function getSales($date, $page, $pageSize, $iteration = 0)
53
    {
54
        $transactionList = array();
55
        try {
56
            $transactionList = $this->_apiClient->getSales($date, 'modifiedDate', null, null, null, $page, $pageSize, $iteration);
57
        } catch (\Exception $e) {
58
            $iteration++;
59
            if ($iteration < 5) {
60
                $transactionList = self::getSales($date, $page, $pageSize, $iteration);
61
            }
62
63
        }
64
        return $transactionList;
65
66
    }
67
68
    public function getProducts(array $params = [], $iteration = 0)
69
    {
70
        $productList = array();
71
        try {
72
            $productList = $this->_apiClient->searchProducts($params['query'],
73
                $params['searchType'],
74
                $params['region'],
75
                $params['categoryId'],
76
                $params['programId'],
77
                $params['hasImages'],
78
                $params['minPrice'],
79
                $params['maxPrice'],
80
                $params['adspaceId'],
81
                $params['page'],
82
                $params['items']);
83
        } catch (\Exception $e) {
84
            $iteration++;
85
            if ($iteration < 5) {
86
                $productList = self::getProducts($params, $iteration);
87
            }
88
        }
89
        return $productList;
90
    }
91
92
    public function getApiClient(){
93
        return $this->_apiClient;
94
    }
95
}