Browse Source
fix(federation): Don't post any messages into proxy conversations
fix(federation): Don't post any messages into proxy conversations
Signed-off-by: Joas Schilling <coding@schilljs.com>pull/11728/head
No known key found for this signature in database
GPG Key ID: 74434EFE0D2E2205
5 changed files with 109 additions and 0 deletions
-
17lib/Chat/ChatManager.php
-
46lib/Chat/SystemMessage/Listener.php
-
36lib/Exceptions/MessagingNotAllowedException.php
-
5lib/Flow/Operation.php
-
5tests/php/Chat/ChatManagerTest.php
@ -0,0 +1,36 @@ |
|||
<?php |
|||
|
|||
declare(strict_types=1); |
|||
/** |
|||
* @copyright Copyright (c) 2024 Joas Schilling <coding@schilljs.com> |
|||
* |
|||
* @author 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\Exceptions; |
|||
|
|||
/** |
|||
* Thrown when a room is a proxy room and a message is trying to be posted. |
|||
*/ |
|||
class MessagingNotAllowedException extends \OutOfBoundsException { |
|||
public function __construct(?\Throwable $previous = null) { |
|||
parent::__construct('Messaging is not allowed in proxy rooms', 1, $previous); |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue