forked from alekseykuleshov/rocket-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUser.php
557 lines (484 loc) · 14.4 KB
/
User.php
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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
<?php
namespace ATDev\RocketChat\Users;
use ATDev\RocketChat\Common\Request;
/**
* User class
*/
class User extends Request
{
use Data;
/**
* Gets user listing
*
* @return Collection|boolean
*/
public static function listing($offset = null, $count = null)
{
$parameters = [];
if (!is_null($offset)) {
$parameters['offset'] = $offset;
}
if (!is_null($count)) {
$parameters['count'] = $count;
}
static::send("users.list", "GET", $parameters);
if (!static::getSuccess()) {
return false;
}
$users = new Collection();
$response = static::getResponse();
foreach ($response->users as $user) {
$users->add(static::createOutOfResponse($user));
}
if (isset($response->total)) {
$users->setTotal($response->total);
}
if (isset($response->count)) {
$users->setCount($response->count);
}
if (isset($response->offset)) {
$users->setOffset($response->offset);
}
return $users;
}
/**
* Creates user at api instance
*
* @return User|boolean
*/
public function create()
{
static::send("users.create", "POST", $this);
if (!static::getSuccess()) {
return false;
}
return $this->updateOutOfResponse(static::getResponse()->user);
}
/**
* Register user
*
* @param string|null $secretURL String appended to secret registration URL (if using)
* @return User|false
*/
public function register($secretURL = null)
{
$registrationParams = [
'username' => $this->getUsername(),
'email' => $this->getEmail(),
'pass' => $this->getPassword(),
'name' => $this->getName()
];
if (!is_null($secretURL) && is_string($secretURL)) {
$registrationParams['secretURL'] = $secretURL;
}
static::send('users.register', 'POST', $registrationParams);
if (!static::getSuccess()) {
return false;
}
return $this->updateOutOfResponse(static::getResponse()->user);
}
/**
* Updates user at api instance
*
* @return User|boolean
*/
public function update()
{
static::send("users.update", "POST", ["userId" => $this->getUserId(), "data" => $this]);
if (!static::getSuccess()) {
return false;
}
return $this->updateOutOfResponse(static::getResponse()->user);
}
/**
* Update own basic information
*
* @return User|false
*/
public function updateOwnBasicInfo()
{
$updateData = [
"email" => $this->email,
"name" => $this->name,
"username" => $this->username,
];
if (isset($this->password)) {
$updateData["currentPassword"] = $this->password;
}
if (isset($this->newPassword)) {
$updateData["newPassword"] = $this->newPassword;
}
if (isset($this->customFields)) {
$updateData["customFields"] = $this->customFields;
}
static::send("users.updateOwnBasicInfo", "POST", ["data" => $updateData]);
if (!static::getSuccess()) {
return false;
}
return $this->updateOutOfResponse(static::getResponse()->user);
}
/**
* Gets extended info of user
*
* @return boolean|$this
*/
public function info()
{
static::send("users.info", "GET", self::requestParams($this));
if (!static::getSuccess()) {
return false;
}
return $this->updateOutOfResponse(static::getResponse()->user);
}
/**
* Gets extended info of user
*
* @return boolean|$this
*/
public function delete()
{
static::send("users.delete", "POST", ["userId" => $this->getUserId()]);
if (!static::getSuccess()) {
return false;
}
return $this->setUserId(null);
}
/**
* Deletes your own user. Requires `Allow Users to Delete Own Account` enabled
*
* @return $this|false
*/
public function deleteOwnAccount()
{
static::send('users.deleteOwnAccount', 'POST', ['password' => $this->getPassword()]);
if (!static::getSuccess()) {
return false;
}
$this->setUserId(null);
$this->setUsername(null);
return $this;
}
/**
* Sets avatar for user
*
* @param Avatar $avatar
*
* @return boolean|$this
*/
public function setAvatar(Avatar $avatar)
{
if ($avatar::IS_FILE) {
static::send("users.setAvatar", "POST", self::requestParams($this), ["image" => $avatar->getSource()]);
if (!static::getSuccess()) {
return false;
}
} else {
static::send("users.setAvatar", "POST", array_merge(self::requestParams($this), ["avatarUrl" => $avatar->getSource()]));
if (!static::getSuccess()) {
return false;
}
}
return $this;
}
/**
* Gets avatar url for user
*
* @return boolean|$this
*/
public function getAvatar()
{
static::send("users.getAvatar", "GET", self::requestParams($this));
if (!static::getSuccess()) {
return false;
}
if (!empty(static::getResponseUrl())) {
$this->setAvatarUrl(static::getResponseUrl());
}
return $this;
}
/**
* Reset user's avatar
*
* @return bool
*/
public function resetAvatar()
{
static::send("users.resetAvatar", "POST", self::requestParams($this));
return static::getSuccess();
}
/**
* Gets all connected users presence
*
* @param string|null $from The last date you got a status change. ISO 8601 datetime. Timezone, milliseconds and seconds are optional
* @return Collection|false
*/
public static function presence($from = null)
{
static::send("users.presence", "GET", ['from' => $from]);
if (!static::getSuccess()) {
return false;
}
$users = new Collection();
$response = static::getResponse();
foreach ($response->users as $user) {
$users->add(static::createOutOfResponse($user));
}
if (isset($response->full)) {
$users->setFull($response->full);
}
return $users;
}
/**
* Gets a user's presence if the query string userId or username is provided, otherwise it gets the callee's
*
* @return false|mixed
*/
public function getPresence()
{
static::send('users.getPresence', 'GET', self::requestParams($this));
if (!static::getSuccess()) {
return false;
}
$response = static::getResponse();
$result = new \stdClass();
$result->presence = $response->presence;
if (isset($response->connectionStatus)) {
$result->connectionStatus = $response->connectionStatus;
}
if (isset($response->lastLogin)) {
$result->lastLogin = $response->lastLogin;
}
return $result;
}
/**
* Deactivate Idle users. Requires `edit-other-user-active-status` permission.
*
* @param int $daysIdle
* @param string $role
* @return int|false
*/
public static function deactivateIdle($daysIdle, $role = 'user')
{
static::send("users.deactivateIdle", "POST", ['daysIdle' => $daysIdle, 'role' => $role]);
if (!static::getSuccess()) {
return false;
}
return static::getResponse()->count;
}
/**
* Send email to reset your password.
*
* @param string $email
* @return bool|string
*/
public static function forgotPassword($email)
{
static::send("users.forgotPassword", "POST", ['email' => $email]);
return static::getSuccess();
}
/**
* Gets a user's Status if the query string userId or username is provided, otherwise it gets the callee's.
*
* @return false|User
*/
public function getStatus()
{
static::send('users.getStatus', 'GET', self::requestParams($this));
if (!static::getSuccess()) {
return false;
}
return $this->updateOutOfResponse(static::getResponse());
}
/**
* Sets a user status when the status message and state is given
*
* @param $message
* @param null $status
* @return $this|false
*/
public function setStatus($message, $status = null)
{
$params = ['message' => $message];
if (isset($status) && is_string($status)) {
$params['status'] = $status;
}
static::send("users.setStatus", "POST", $params);
if (!static::getSuccess()) {
return false;
}
$this->setStatusText($params['message']);
if (isset($params['status'])) {
$this->setStatusValue($params['status']);
}
return $this;
}
/**
* Sets user active status
*
* @param bool $activeStatus
* @return User|false
*/
public function setActiveStatus($activeStatus)
{
static::send(
"users.setActiveStatus",
"POST",
['activeStatus' => $activeStatus, 'userId' => $this->getUserId()]
);
if (!static::getSuccess()) {
return false;
}
return $this->updateOutOfResponse(static::getResponse()->user);
}
/**
* Gets a suggestion a new username to user
*
* @return string|null|false
*/
public function getUsernameSuggestion()
{
static::send("users.getUsernameSuggestion", "GET");
if (!static::getSuccess()) {
return false;
}
return isset(static::getResponse()->result) ? static::getResponse()->result : null;
}
/**
* Create a user authentication token. This is the same type of session token a user would get via login and
* will expire the same way. Requires `user-generate-access-token` permission.
*
* @return \stdClass|null|false
*/
public function createToken()
{
static::send('users.createToken', 'POST', self::requestParams($this));
if (!static::getSuccess()) {
return false;
}
return isset(static::getResponse()->data) ? static::getResponse()->data : null;
}
/**
* Gets the user’s personal access tokens. Requires `create-personal-access-tokens` permission
*
* @return array|null|false
*/
public function getPersonalAccessTokens()
{
static::send('users.getPersonalAccessTokens', 'GET');
if (!static::getSuccess()) {
return false;
}
return isset(static::getResponse()->tokens) ? static::getResponse()->tokens : null;
}
/**
* Generate Personal Access Token. Requires `create-personal-access-tokens` permission.
*
* @param string $tokenName
* @param bool $bypassTwoFactor
* @return string|null|false
*/
public function generatePersonalAccessToken($tokenName, $bypassTwoFactor = false)
{
static::send("users.generatePersonalAccessToken", "POST", ['tokenName' => $tokenName, 'bypassTwoFactor' => $bypassTwoFactor]);
if (!static::getSuccess()) {
return false;
}
return isset(static::getResponse()->token) ? static::getResponse()->token : null;
}
/**
* Regenerate a user personal access token. Requires `create-personal-access-tokens` permission
*
* @param string $tokenName
* @return string|null|false
*/
public function regeneratePersonalAccessToken($tokenName)
{
static::send("users.regeneratePersonalAccessToken", "POST", ['tokenName' => $tokenName]);
if (!static::getSuccess()) {
return false;
}
return isset(static::getResponse()->token) ? static::getResponse()->token : null;
}
/**
* Remove a personal access token. Requires `create-personal-access-tokens` permission.
*
* @param string $tokenName
* @return bool
*/
public function removePersonalAccessToken($tokenName)
{
static::send("users.removePersonalAccessToken", "POST", ['tokenName' => $tokenName]);
return static::getSuccess();
}
/**
* Removes other access tokens
*
* @return bool
*/
public function removeOtherTokens()
{
static::send("users.removeOtherTokens", "POST");
return static::getSuccess();
}
/**
* Request the user's data for download
*
* @param bool $fullExport If needs a full export
* @return false|mixed
*/
public function requestDataDownload($fullExport = false)
{
static::send("users.requestDataDownload", "GET", ['fullExport' => $fullExport]);
if (!static::getSuccess()) {
return false;
}
return static::getResponse()->exportOperation;
}
/**
* Gets all preferences of the user
*
* @return Preferences|false
*/
public function getPreferences()
{
static::send('users.getPreferences', 'GET');
if (!static::getSuccess()) {
return false;
}
return (new Preferences())->updateOutOfResponse(static::getResponse()->preferences);
}
/**
* Sets user's preferences
*
* @param Preferences $preferences
* @return User|false
*/
public function setPreferences(Preferences $preferences)
{
static::send(
'users.setPreferences',
'POST',
['userId' => $this->getUserId(), 'data' => $preferences]
);
if (!static::getSuccess()) {
return false;
}
return $this->updateOutOfResponse(static::getResponse()->user);
}
/**
* Prepares request params to have `userId` or `username`
*
* @param User|null $user
* @return array
*/
private static function requestParams(User $user = null)
{
$params = [];
if (isset($user) && !empty($user->getUserId())) {
$params = ['userId' => $user->getUserId()];
} elseif (isset($user) && !empty($user->getUsername())) {
$params = ['username' => $user->getUsername()];
}
return $params;
}
}