1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
/** |
6
|
|
|
* @copyright Copyright (c) 2020, Georg Ehrke |
7
|
|
|
* |
8
|
|
|
* @author Georg Ehrke <[email protected]> |
9
|
|
|
* |
10
|
|
|
* @license GNU AGPL version 3 or any later version |
11
|
|
|
* |
12
|
|
|
* This program is free software: you can redistribute it and/or modify |
13
|
|
|
* it under the terms of the GNU Affero General Public License as |
14
|
|
|
* published by the Free Software Foundation, either version 3 of the |
15
|
|
|
* License, or (at your option) any later version. |
16
|
|
|
* |
17
|
|
|
* This program is distributed in the hope that it will be useful, |
18
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
19
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
20
|
|
|
* GNU Affero General Public License for more details. |
21
|
|
|
* |
22
|
|
|
* You should have received a copy of the GNU Affero General Public License |
23
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
24
|
|
|
* |
25
|
|
|
*/ |
26
|
|
|
namespace OCA\UserStatus\Controller; |
27
|
|
|
|
28
|
|
|
use OCA\UserStatus\Db\UserStatus; |
29
|
|
|
use OCA\UserStatus\Service\StatusService; |
30
|
|
|
use OCP\AppFramework\Controller; |
31
|
|
|
use OCP\AppFramework\Db\DoesNotExistException; |
32
|
|
|
use OCP\AppFramework\Http; |
33
|
|
|
use OCP\AppFramework\Http\JSONResponse; |
34
|
|
|
use OCP\AppFramework\Utility\ITimeFactory; |
35
|
|
|
use OCP\EventDispatcher\IEventDispatcher; |
36
|
|
|
use OCP\IRequest; |
37
|
|
|
use OCP\IUserSession; |
38
|
|
|
use OCP\User\Events\UserLiveStatusEvent; |
39
|
|
|
use OCP\UserStatus\IUserStatus; |
40
|
|
|
|
41
|
|
|
class HeartbeatController extends Controller { |
42
|
|
|
|
43
|
|
|
/** @var IEventDispatcher */ |
44
|
|
|
private $eventDispatcher; |
45
|
|
|
|
46
|
|
|
/** @var IUserSession */ |
47
|
|
|
private $userSession; |
48
|
|
|
|
49
|
|
|
/** @var ITimeFactory */ |
50
|
|
|
private $timeFactory; |
51
|
|
|
|
52
|
|
|
/** @var StatusService */ |
53
|
|
|
private $service; |
54
|
|
|
|
55
|
|
|
public function __construct(string $appName, |
56
|
|
|
IRequest $request, |
57
|
|
|
IEventDispatcher $eventDispatcher, |
58
|
|
|
IUserSession $userSession, |
59
|
|
|
ITimeFactory $timeFactory, |
60
|
|
|
StatusService $service) { |
61
|
|
|
parent::__construct($appName, $request); |
62
|
|
|
$this->eventDispatcher = $eventDispatcher; |
63
|
|
|
$this->userSession = $userSession; |
64
|
|
|
$this->timeFactory = $timeFactory; |
65
|
|
|
$this->service = $service; |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
/** |
69
|
|
|
* @NoAdminRequired |
70
|
|
|
* |
71
|
|
|
* @param string $status |
72
|
|
|
* @return JSONResponse |
73
|
|
|
*/ |
74
|
|
|
public function heartbeat(string $status): JSONResponse { |
75
|
|
|
if (!\in_array($status, [IUserStatus::ONLINE, IUserStatus::AWAY], true)) { |
76
|
|
|
return new JSONResponse([], Http::STATUS_BAD_REQUEST); |
77
|
|
|
} |
78
|
|
|
|
79
|
|
|
$user = $this->userSession->getUser(); |
80
|
|
|
if ($user === null) { |
81
|
|
|
return new JSONResponse([], Http::STATUS_INTERNAL_SERVER_ERROR); |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
$this->eventDispatcher->dispatchTyped( |
85
|
|
|
new UserLiveStatusEvent( |
86
|
|
|
$user, |
87
|
|
|
$status, |
88
|
|
|
$this->timeFactory->getTime() |
89
|
|
|
) |
90
|
|
|
); |
91
|
|
|
|
92
|
|
|
try { |
93
|
|
|
$userStatus = $this->service->findByUserId($user->getUID()); |
94
|
|
|
} catch (DoesNotExistException $ex) { |
95
|
|
|
return new JSONResponse([], Http::STATUS_NO_CONTENT); |
96
|
|
|
} |
97
|
|
|
|
98
|
|
|
return new JSONResponse($this->formatStatus($userStatus)); |
99
|
|
|
} |
100
|
|
|
|
101
|
|
|
private function formatStatus(UserStatus $status): array { |
102
|
|
|
return [ |
103
|
|
|
'userId' => $status->getUserId(), |
104
|
|
|
'message' => $status->getCustomMessage(), |
105
|
|
|
'messageId' => $status->getMessageId(), |
106
|
|
|
'messageIsPredefined' => $status->getMessageId() !== null, |
107
|
|
|
'icon' => $status->getCustomIcon(), |
108
|
|
|
'clearAt' => $status->getClearAt(), |
109
|
|
|
'status' => $status->getStatus(), |
110
|
|
|
'statusIsUserDefined' => $status->getIsUserDefined(), |
111
|
|
|
]; |
112
|
|
|
} |
113
|
|
|
} |
114
|
|
|
|