forked from alekseykuleshov/rocket-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathData.php
More file actions
483 lines (433 loc) · 10.5 KB
/
Data.php
File metadata and controls
483 lines (433 loc) · 10.5 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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<?php
namespace ATDev\RocketChat\Messages;
use ATDev\RocketChat\Channels\Channel;
use ATDev\RocketChat\Users\User;
trait Data
{
/** @var string Message id from api */
private $messageId;
/* Required properties for creation */
/** @var string The room id of where the message is to be sent */
private $roomId;
/** @var string The text of the message to send */
private $text;
/** @var string This will cause the message's name to appear as the given alias */
private $alias;
/** @var string If provided, this will make the avatar on this message be an emoji */
private $emoji;
/** @var string If provided, this will make the avatar use the provided image url */
private $avatar;
/* Readonly properties returned from api */
/** @var bool Indicates if urls from messages are parsed */
private $parseUrls;
/** @var bool */
private $groupable;
/** @var string timestamp */
private $ts;
/** @var string message type */
private $t;
/** @var string message user id */
private $userId;
/** @var string message user name */
private $username;
/** @var string Date-time */
private $updatedAt;
/** @var \ATDev\RocketChat\Users\Collection Users mentioned in message */
private $mentions;
/** @var \ATDev\RocketChat\Channels\Collection Channels mentioned in message */
private $channels;
/**
* Class constructor
*
* @param string|null $messageId
*/
public function __construct($messageId = null)
{
if (!empty($messageId)) {
$this->setMessageId($messageId);
}
}
/**
* @return string
*/
public function getMessageId()
{
return $this->messageId;
}
/**
* @param string $messageId
* @return Data $this
*/
public function setMessageId($messageId)
{
if (!(is_null($messageId) || is_string($messageId))) {
$this->setDataError("Invalid message Id");
} else {
$this->messageId = $messageId;
}
return $this;
}
/**
* @return string
*/
public function getRoomId()
{
return $this->roomId;
}
/**
* @param string $roomId
* @return Data $this
*/
public function setRoomId($roomId)
{
if (!(is_null($roomId) || is_string($roomId))) {
$this->setDataError("Invalid room Id");
} else {
$this->roomId = $roomId;
}
return $this;
}
/**
* @return string The text of the message
*/
public function getMsg()
{
return $this->text;
}
/**
* @param string $text The text of the message to send, is optional because of attachments.
* @return Data $this
*/
public function setText($text)
{
if (is_string($text)) {
$this->text = $text;
}
return $this;
}
/**
* @return string
*/
public function getAlias()
{
return $this->alias;
}
/**
* @param string $alias This will cause the message's name to appear as the given alias, but your username will still display.
* @return Data $this
*/
public function setAlias($alias)
{
if (is_string($alias)) {
$this->alias = $alias;
}
return $this;
}
/**
* @return string
*/
public function getEmoji()
{
return $this->emoji;
}
/**
* @param string $emoji If provided, this will make the avatar on this message be an emoji.
* @return Data $this
*/
public function setEmoji($emoji)
{
if (is_string($emoji)) {
$this->emoji = $emoji;
}
return $this;
}
/**
* @return string
*/
public function getAvatar()
{
return $this->avatar;
}
/**
* @param string $avatar If provided, this will make the avatar use the provided image url.
* @return Data $this
*/
public function setAvatar($avatar)
{
if (is_string($avatar)) {
$this->avatar = $avatar;
}
return $this;
}
/**
* @return bool
*/
public function isParseUrls()
{
return $this->parseUrls;
}
/**
* @param bool $parseUrls
* @return Data $this
*/
private function setParseUrls($parseUrls)
{
if (!is_bool($parseUrls)) {
$this->setDataError('Invalid parseUrls value');
} else {
$this->parseUrls = $parseUrls;
}
return $this;
}
/**
* @return bool
*/
public function isGroupable()
{
return $this->groupable;
}
/**
* @param bool $groupable
* @return Data $this
*/
private function setGroupable($groupable)
{
if (!is_bool($groupable)) {
$this->setDataError('Invalid groupable value');
} else {
$this->groupable = $groupable;
}
return $this;
}
/**
* @return string
*/
public function getTs()
{
return $this->ts;
}
/**
* @param string $value
* @return $this
*/
private function setTs($value)
{
if (is_string($value)) {
$this->ts = $value;
}
return $this;
}
/**
* @return string
*/
public function getT()
{
return $this->t;
}
/**
* @param string $value
* @return $this
*/
private function setT($value)
{
if (is_string($value)) {
$this->t = $value;
}
return $this;
}
/**
* @return string
*/
public function getUserId()
{
return $this->userId;
}
/**
* @param string $userId
* @return $this
*/
private function setUserId($userId)
{
if (is_string($userId)) {
$this->userId = $userId;
}
return $this;
}
/**
* @return string
*/
public function getUsername()
{
return $this->username;
}
/**
* @param string $username
* @return $this
*/
private function setUsername($username)
{
if (is_string($username)) {
$this->username = $username;
}
return $this;
}
/**
* @return string
*/
public function getUpdatedAt()
{
return $this->updatedAt;
}
/**
* @param string $updatedAt
* @return $this
*/
private function setUpdatedAt($updatedAt)
{
if (is_string($updatedAt)) {
$this->updatedAt = $updatedAt;
}
return $this;
}
/**
* Returns users collection mentioned in message
*
* @return \ATDev\RocketChat\Users\Collection
*/
public function getMentions()
{
return $this->mentions;
}
/**
* Sets users collection mentioned in message
*
* @param array $mentions
* @return $this
*/
private function setMentions($mentions = [])
{
if (is_array($mentions)) {
$this->mentions = new \ATDev\RocketChat\Users\Collection();
foreach ($mentions as $user) {
$this->mentions->add(User::createOutOfResponse($user));
}
}
return $this;
}
/**
* Returns channels collection mentioned in message
*
* @return \ATDev\RocketChat\Channels\Collection
*/
public function getChannels()
{
return $this->channels;
}
/**
* Sets channels collection mentioned in message
*
* @param array $channels
* @return $this
*/
private function setChannels($channels = [])
{
if (is_array($channels)) {
$this->channels = new \ATDev\RocketChat\Channels\Collection();
foreach ($channels as $channel) {
$this->channels->add(Channel::createOutOfResponse($channel));
}
}
return $this;
}
/**
* @param \stdClass $response
* @return Data
*/
public static function createOutOfResponse($response)
{
$message = new static($response->_id);
return $message->updateOutOfResponse($response);
}
/**
* @param \stdClass $response
* @return Data $this
*/
public function updateOutOfResponse($response)
{
if (isset($response->_id)) {
$this->setMessageId($response->_id);
}
if (isset($response->rid)) {
$this->setRoomId($response->rid);
}
if (isset($response->alias)) {
$this->setAlias($response->alias);
}
if (isset($response->msg)) {
$this->setText($response->msg);
}
if (isset($response->emoji)) {
$this->setEmoji($response->emoji);
}
if (isset($response->avatar)) {
$this->setAvatar($response->avatar);
}
if (isset($response->parseUrls)) {
$this->setParseUrls($response->parseUrls);
}
if (isset($response->groupable)) {
$this->setGroupable($response->groupable);
}
if (isset($response->u)) {
$this->setUserId($response->u->_id);
$this->setUsername($response->u->username);
}
if (isset($response->ts)) {
$this->setTs($response->ts);
}
if (isset($response->t)) {
$this->setT($response->t);
}
if (isset($response->_updatedAt)) {
$this->setUpdatedAt($response->_updatedAt);
}
if (isset($response->mentions)) {
$this->setMentions($response->mentions);
}
if (isset($response->channels)) {
$this->setChannels($response->channels);
}
return $this;
}
/**
* Prepares message data to be sent to API
*
* @return array
*/
public function jsonSerialize()
{
$messageData = ['roomId' => $this->roomId];
if (!is_null($this->text)) {
$messageData['text'] = $this->text;
}
if (!is_null($this->avatar)) {
$messageData['avatar'] = $this->avatar;
}
if (!is_null($this->alias)) {
$messageData['alias'] = $this->alias;
}
if (!is_null($this->emoji)) {
$messageData['emoji'] = $this->emoji;
}
return $messageData;
}
/**
* @param string $error
* @return Data $this
*/
private function setDataError($error)
{
static::setError($error);
return $this;
}
}