-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathSetChannelMetadata.php
More file actions
199 lines (169 loc) · 3.84 KB
/
SetChannelMetadata.php
File metadata and controls
199 lines (169 loc) · 3.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<?php
namespace PubNub\Endpoints\Objects\Channel;
use PubNub\Endpoints\Endpoint;
use PubNub\Endpoints\Objects\MatchesETagTrait;
use PubNub\Enums\PNHttpMethod;
use PubNub\Enums\PNOperationType;
use PubNub\Exceptions\PubNubValidationException;
use PubNub\Models\Consumer\Objects\Channel\PNSetChannelMetadataResult;
use PubNub\PubNubUtil;
class SetChannelMetadata extends Endpoint
{
use MatchesETagTrait;
protected const PATH = "/v2/objects/%s/channels/%s";
/** @var string */
protected $channel;
/** @var array */
protected $meta;
/**
* @param string $ch
* @return $this
*/
public function channel($ch)
{
$this->channel = $ch;
return $this;
}
/**
* @deprecated use setName, setDescription and setCustom instead
*
* @param array $meta
* @return $this
*/
public function meta($meta)
{
$this->meta = $meta;
return $this;
}
/**
* @param string $name
* @return $this
*/
public function setName($name): self
{
$this->meta['name'] = $name;
return $this;
}
/**
* @param string $description
* @return $this
*/
public function setDescription($description): self
{
$this->meta['description'] = $description;
return $this;
}
/**
* @param string[] | string $custom
* @return $this
*/
public function setCustom($custom): self
{
$this->meta['custom'] = $custom;
return $this;
}
/**
* @param string $type
* @return $this
*/
public function setType($type): self
{
$this->meta['type'] = $type;
return $this;
}
/**
* @throws PubNubValidationException
*/
protected function validateParams()
{
$this->validateSubscribeKey();
if (!is_string($this->channel)) {
throw new PubNubValidationException("channel missing");
}
if (empty($this->meta)) {
throw new PubNubValidationException("meta missing");
}
}
/**
* @return string
* @throws PubNubBuildRequestException
*/
protected function buildData()
{
return PubNubUtil::writeValueAsString($this->meta);
}
/**
* @return string
*/
protected function buildPath()
{
return sprintf(
static::PATH,
$this->pubnub->getConfiguration()->getSubscribeKey(),
$this->channel
);
}
/**
* @param array $result Decoded json
* @return PNSetChannelMetadataResult
*/
protected function createResponse($result): PNSetChannelMetadataResult
{
return PNSetChannelMetadataResult::fromPayload($result);
}
public function sync(): PNSetChannelMetadataResult
{
return parent::sync();
}
/**
* @return array
*/
protected function customParams()
{
$params = $this->defaultParams();
$params['include'] = 'custom';
return $params;
}
/**
* @return bool
*/
protected function isAuthRequired()
{
return true;
}
/**
* @return int
*/
protected function getRequestTimeout()
{
return $this->pubnub->getConfiguration()->getNonSubscribeRequestTimeout();
}
/**
* @return int
*/
protected function getConnectTimeout()
{
return $this->pubnub->getConfiguration()->getConnectTimeout();
}
/**
* @return string PNHttpMethod
*/
protected function httpMethod()
{
return PNHttpMethod::PATCH;
}
/**
* @return int
*/
protected function getOperationType()
{
return PNOperationType::PNSetChannelMetadataOperation;
}
/**
* @return string
*/
protected function getName()
{
return "SetChannelMetadata";
}
}