-
Notifications
You must be signed in to change notification settings - Fork 448
/
Copy pathHooks.php
177 lines (156 loc) · 5.01 KB
/
Hooks.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
<?php
declare(strict_types=1);
/**
* @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\Spreed\Activity;
use OCA\Spreed\Chat\ChatManager;
use OCA\Spreed\Room;
use OCP\Activity\IManager;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\ILogger;
use OCP\IUser;
use OCP\IUserSession;
class Hooks {
/** @var IManager */
protected $activityManager;
/** @var IUserSession */
protected $userSession;
/** @var ChatManager */
protected $chatManager;
/** @var ILogger */
protected $logger;
/** @var ITimeFactory */
protected $timeFactory;
public function __construct(IManager $activityManager, IUserSession $userSession, ChatManager $chatManager, ILogger $logger, ITimeFactory $timeFactory) {
$this->activityManager = $activityManager;
$this->userSession = $userSession;
$this->chatManager = $chatManager;
$this->logger = $logger;
$this->timeFactory = $timeFactory;
}
/**
* Mark the user as (in)active for a call
*
* @param Room $room
*/
public function setActive(Room $room) {
$room->setActiveSince(new \DateTime(), !$this->userSession->isLoggedIn());
}
/**
* Call activity: "You attended a call with {user1} and {user2}"
*
* @param Room $room
* @return bool True if activity was generated, false otherwise
*/
public function generateCallActivity(Room $room): bool {
$activeSince = $room->getActiveSince();
if (!$activeSince instanceof \DateTime || $room->hasSessionsInCall()) {
return false;
}
$duration = $this->timeFactory->getTime() - $activeSince->getTimestamp();
$participants = $room->getParticipants($activeSince->getTimestamp());
$userIds = array_map('\strval', array_keys($participants['users']));
if (empty($userIds) || (\count($userIds) === 1 && $room->getActiveGuests() === 0)) {
// Single user pinged or guests only => no activity
$room->resetActiveSince();
return false;
}
$event = $this->activityManager->generateEvent();
try {
$event->setApp('spreed')
->setType('spreed')
->setAuthor('')
->setObject('room', $room->getId(), $room->getName())
->setTimestamp($this->timeFactory->getTime())
->setSubject('call', [
'room' => $room->getId(),
'users' => $userIds,
'guests' => $room->getActiveGuests(),
'duration' => $duration,
]);
} catch (\InvalidArgumentException $e) {
$this->logger->logException($e, ['app' => 'spreed']);
return false;
}
$this->chatManager->addSystemMessage($room, 'users', $userIds[0], json_encode([
'message' => 'call_ended',
'parameters' => [
'users' => $userIds,
'guests' => $room->getActiveGuests(),
'duration' => $duration,
],
]), new \DateTime(), false);
foreach ($userIds as $userId) {
try {
$event->setAffectedUser($userId);
$this->activityManager->publish($event);
} catch (\BadMethodCallException $e) {
$this->logger->logException($e, ['app' => 'spreed']);
} catch (\InvalidArgumentException $e) {
$this->logger->logException($e, ['app' => 'spreed']);
}
}
$room->resetActiveSince();
return true;
}
/**
* Invitation activity: "{actor} invited you to {call}"
*
* @param Room $room
* @param array[] $participants
*/
public function generateInvitationActivity(Room $room, array $participants) {
$actor = $this->userSession->getUser();
if (!$actor instanceof IUser) {
return;
}
$actorId = $actor->getUID();
$event = $this->activityManager->generateEvent();
try {
$event->setApp('spreed')
->setType('spreed')
->setAuthor($actorId)
->setObject('room', $room->getId(), $room->getName())
->setTimestamp($this->timeFactory->getTime())
->setSubject('invitation', [
'user' => $actor->getUID(),
'room' => $room->getId(),
'name' => $room->getName(),
]);
} catch (\InvalidArgumentException $e) {
$this->logger->logException($e, ['app' => 'spreed']);
return;
}
foreach ($participants as $participant) {
if ($actorId === $participant['userId']) {
// No activity for self-joining and the creator
continue;
}
try {
$event->setAffectedUser($participant['userId']);
$this->activityManager->publish($event);
} catch (\InvalidArgumentException $e) {
$this->logger->logException($e, ['app' => 'spreed']);
} catch (\BadMethodCallException $e) {
$this->logger->logException($e, ['app' => 'spreed']);
}
}
}
}