Apps::createSegment()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 11

Duplication

Lines 11
Ratio 100 %

Importance

Changes 0
Metric Value
dl 11
loc 11
rs 9.9
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace OneSignal;
6
7
use OneSignal\Resolver\ResolverFactory;
8
9
class Apps extends AbstractApi
10
{
11
    private $resolverFactory;
12
13
    public function __construct(OneSignal $client, ResolverFactory $resolverFactory)
14
    {
15
        parent::__construct($client);
16
17
        $this->resolverFactory = $resolverFactory;
18
    }
19
20
    /**
21
     * Get information about application with provided ID.
22
     *
23
     * User authentication key must be set.
24
     *
25
     * @param string $id ID of your application
26
     */
27 View Code Duplication
    public function getOne(string $id): 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...
28
    {
29
        $request = $this->createRequest('GET', "/apps/$id");
30
        $request = $request->withHeader('Authorization', "Basic {$this->client->getConfig()->getUserAuthKey()}");
31
32
        return $this->client->sendRequest($request);
33
    }
34
35
    /**
36
     * Get information about all your created applications.
37
     *
38
     * User authentication key must be set.
39
     */
40 View Code Duplication
    public function getAll(): 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...
41
    {
42
        $request = $this->createRequest('GET', '/apps');
43
        $request = $request->withHeader('Authorization', "Basic {$this->client->getConfig()->getUserAuthKey()}");
44
45
        return $this->client->sendRequest($request);
46
    }
47
48
    /**
49
     * Create a new application with provided data.
50
     *
51
     * User authentication key must be set.
52
     *
53
     * @param array $data Application data
54
     */
55 View Code Duplication
    public function add(array $data): 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...
56
    {
57
        $resolvedData = $this->resolverFactory->createAppResolver()->resolve($data);
58
59
        $request = $this->createRequest('POST', '/apps');
60
        $request = $request->withHeader('Authorization', "Basic {$this->client->getConfig()->getUserAuthKey()}");
61
        $request = $request->withHeader('Content-Type', 'application/json');
62
        $request = $request->withBody($this->createStream($resolvedData));
63
64
        return $this->client->sendRequest($request);
65
    }
66
67
    /**
68
     * Update application with provided data.
69
     *
70
     * User authentication key must be set.
71
     *
72
     * @param string $id   ID of your application
73
     * @param array  $data New application data
74
     */
75 View Code Duplication
    public function update(string $id, array $data): 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...
76
    {
77
        $resolvedData = $this->resolverFactory->createAppResolver()->resolve($data);
78
79
        $request = $this->createRequest('PUT', "/apps/$id");
80
        $request = $request->withHeader('Authorization', "Basic {$this->client->getConfig()->getUserAuthKey()}");
81
        $request = $request->withHeader('Content-Type', 'application/json');
82
        $request = $request->withBody($this->createStream($resolvedData));
83
84
        return $this->client->sendRequest($request);
85
    }
86
87
    /**
88
     * Create a new segment for application with provided data.
89
     *
90
     * @param string $appId ID of your application
91
     * @param array  $data  Segment Data
92
     */
93 View Code Duplication
    public function createSegment($appId, array $data): 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...
94
    {
95
        $resolvedData = $this->resolverFactory->createSegmentResolver()->resolve($data);
96
97
        $request = $this->createRequest('POST', "/apps/$appId/segments");
98
        $request = $request->withHeader('Authorization', "Basic {$this->client->getConfig()->getApplicationAuthKey()}");
99
        $request = $request->withHeader('Content-Type', 'application/json');
100
        $request = $request->withBody($this->createStream($resolvedData));
101
102
        return $this->client->sendRequest($request);
103
    }
104
105
    /**
106
     * Delete existing segment from your application.
107
     *
108
     * Application auth key must be set.
109
     *
110
     * @param string $appId     Application ID
111
     * @param string $segmentId Segment ID
112
     */
113 View Code Duplication
    public function deleteSegment(string $appId, string $segmentId): 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...
114
    {
115
        $request = $this->createRequest('DELETE', "/apps/$appId/segments/$segmentId");
116
        $request = $request->withHeader('Authorization', "Basic {$this->client->getConfig()->getApplicationAuthKey()}");
117
118
        return $this->client->sendRequest($request);
119
    }
120
}
121