Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-02-10 19:58:03 +0300
committerJoas Schilling <coding@schilljs.com>2021-02-11 20:56:36 +0300
commitf68e64e5dcc81dc87b1efe1ff30f558d3a4dae0d (patch)
treeb72668807e921a97e6269a333d0a8add948ae586
parentdd0e81c274f22e6ab0cc4bed96cd2736a815d5cc (diff)
Store the displayname upon change in the attendees table to save some user manager calls
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--lib/AppInfo/Application.php3
-rw-r--r--lib/Listener/UserDisplayNameListener.php58
-rw-r--r--lib/Service/ParticipantService.php9
3 files changed, 70 insertions, 0 deletions
diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php
index 787db6da2..819cb4cc4 100644
--- a/lib/AppInfo/Application.php
+++ b/lib/AppInfo/Application.php
@@ -46,6 +46,7 @@ use OCA\Talk\Listener\CSPListener;
use OCA\Talk\Listener\FeaturePolicyListener;
use OCA\Talk\Listener\RestrictStartingCalls as RestrictStartingCallsListener;
use OCA\Talk\Listener\UserDeletedListener;
+use OCA\Talk\Listener\UserDisplayNameListener;
use OCA\Talk\Middleware\CanUseTalkMiddleware;
use OCA\Talk\Middleware\InjectionMiddleware;
use OCA\Talk\Notification\Listener as NotificationListener;
@@ -75,6 +76,7 @@ use OCP\Security\CSP\AddContentSecurityPolicyEvent;
use OCP\Security\FeaturePolicy\AddFeaturePolicyEvent;
use OCP\Settings\IManager;
use OCP\User\Events\BeforeUserLoggedOutEvent;
+use OCP\User\Events\UserChangedEvent;
use OCP\User\Events\UserDeletedEvent;
class Application extends App implements IBootstrap {
@@ -96,6 +98,7 @@ class Application extends App implements IBootstrap {
$context->registerEventListener(BeforeTemplateRenderedEvent::class, PublicShareTemplateLoader::class);
$context->registerEventListener(BeforeTemplateRenderedEvent::class, PublicShareAuthTemplateLoader::class);
$context->registerEventListener(\OCP\AppFramework\Http\Events\BeforeTemplateRenderedEvent::class, UnifiedSearchCSSLoader::class);
+ $context->registerEventListener(UserChangedEvent::class, UserDisplayNameListener::class);
$context->registerSearchProvider(ConversationSearch::class);
$context->registerSearchProvider(CurrentMessageSearch::class);
diff --git a/lib/Listener/UserDisplayNameListener.php b/lib/Listener/UserDisplayNameListener.php
new file mode 100644
index 000000000..4416a19df
--- /dev/null
+++ b/lib/Listener/UserDisplayNameListener.php
@@ -0,0 +1,58 @@
+<?php
+
+declare(strict_types=1);
+/**
+ * @copyright Copyright (c) 2021 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\Talk\Listener;
+
+use OCA\Talk\Model\Attendee;
+use OCA\Talk\Service\ParticipantService;
+use OCP\EventDispatcher\Event;
+use OCP\EventDispatcher\IEventListener;
+use OCP\User\Events\UserChangedEvent;
+
+class UserDisplayNameListener implements IEventListener {
+
+ /** @var ParticipantService */
+ private $participantService;
+
+ public function __construct(ParticipantService $participantService) {
+ $this->participantService = $participantService;
+ }
+
+ public function handle(Event $event): void {
+ if (!($event instanceof UserChangedEvent)) {
+ // Unrelated
+ return;
+ }
+
+ if ($event->getFeature() !== 'displayName') {
+ // Unrelated
+ return;
+ }
+
+ $this->participantService->updateDisplayNameForActor(
+ Attendee::ACTOR_USERS,
+ $event->getUser()->getUID(),
+ (string) $event->getValue()
+ );
+ }
+}
diff --git a/lib/Service/ParticipantService.php b/lib/Service/ParticipantService.php
index f2267096a..e32d1f47f 100644
--- a/lib/Service/ParticipantService.php
+++ b/lib/Service/ParticipantService.php
@@ -519,6 +519,15 @@ class ParticipantService {
$query->execute();
}
+ public function updateDisplayNameForActor(string $actorType, string $actorId, string $displayName): void {
+ $query = $this->connection->getQueryBuilder();
+ $query->update('talk_attendees')
+ ->set('display_name', $query->createNamedParameter($displayName))
+ ->where($query->expr()->eq('actor_type', $query->createNamedParameter($actorType)))
+ ->andWhere($query->expr()->eq('actor_id', $query->createNamedParameter($actorId)));
+ $query->execute();
+ }
+
public function getLastCommonReadChatMessage(Room $room): int {
$query = $this->connection->getQueryBuilder();
$query->selectAlias($query->func()->min('last_read_message'), 'last_common_read_message')