Passed
Branch 2.0.0 (30c2f4)
by Chubarov
03:05
created

Update::processData()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 5
Ratio 100 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 5
loc 5
ccs 0
cts 3
cp 0
crap 2
rs 9.4285
c 0
b 0
f 0
1
<?php
2
namespace agoalofalife\bpm\Actions;
3
4
use agoalofalife\bpm\Assistants\ConstructorUrl;
5
use agoalofalife\bpm\Assistants\QueryBuilder;
6
use agoalofalife\bpm\Contracts\Action;
7
use agoalofalife\bpm\Contracts\ActionGet;
8
use agoalofalife\bpm\Contracts\ActionSet;
9
use agoalofalife\bpm\KernelBpm;
10
11
/**
12
 * Class Update
13
 * @property KernelBpm kernel
14
 * @property string HTTP_TYPE
15
 * @property array data
16
 * @property string url
17
 * @package agoalofalife\bpm\Actions
18
 */
19 View Code Duplication
class Update implements Action, ActionGet, ActionSet
0 ignored issues
show
Duplication introduced by
This class 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...
20
{
21
    use ConstructorUrl, QueryBuilder;
22
23
    protected $url = '?';
24
25
    /**
26
     * Request type to created
27
     * @var string
28
     */
29
    protected $HTTP_TYPE = 'PUT';
30
    protected $data = [];
31
    protected $kernel;
32
33
    /**
34
     * @param KernelBpm $bpm
35
     * @return void
36
     */
37 1
    public function injectionKernel(KernelBpm $bpm)
38
    {
39 1
        $this->kernel = $bpm;
40 1
    }
41
42
    /**
43
     * @return string
44
     */
45 2
    public function getUrl()
46
    {
47 2
        return $this->url;
48
    }
49
50
    /**
51
     * @param array $data
52
     * @return array
53
     */
54 2
    public function setData(array $data)
55
    {
56 2
        return $this->data = $data;
57
    }
58
59
    /**
60
     * @return \agoalofalife\bpm\Contracts\Handler
61
     */
62
    public function processData()
63
    {
64
        $this->query();
65
        return $this->kernel->getHandler();
66
    }
67
68
    /**
69
     * @return array
70
     */
71 1
    public function getData()
72
    {
73 1
        return $this->data;
74
    }
75
76
    /**
77
     * @return mixed
78
     */
79
    private function query()
80
    {
81
        $parameters = str_replace(' ', '%20', $this->url);
82
        $url        = $this->kernel->getCollection() . $parameters;
83
        $urlHome    = config($this->kernel->getPrefixConfig() . '.UrlHome');
84
85
        $response   =  $this->kernel->getCurl()->request($this->HTTP_TYPE, $urlHome . $url,
86
                       $this->headers()->getCookie()->body()->httpErrorsFalse()->get()
87
        );
88
        $body       = $response->getBody();
89
90
        $this->kernel->getHandler()->parse($body->getContents());
0 ignored issues
show
Bug introduced by
The method parse() does not seem to exist on object<Illuminate\Container\Container>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
91
92
        if ( $response->getStatusCode() == 401 && $response->getReasonPhrase() == 'Unauthorized' )
93
        {
94
            $this->kernel->authentication();
95
            $this->query();
96
        }
97
    }
98
99
}