1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2021 webtrees development team 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <https://www.gnu.org/licenses/>. 16 */ 17 18declare(strict_types=1); 19 20namespace Fisharebest\Webtrees\Http\RequestHandlers; 21 22use Fisharebest\Webtrees\Contracts\UserInterface; 23use Fisharebest\Webtrees\Exceptions\HttpAccessDeniedException; 24use Fisharebest\Webtrees\FlashMessages; 25use Fisharebest\Webtrees\Http\ViewResponseTrait; 26use Fisharebest\Webtrees\I18N; 27use Fisharebest\Webtrees\Services\MessageService; 28use Fisharebest\Webtrees\Services\UserService; 29use Fisharebest\Webtrees\Tree; 30use Psr\Http\Message\ResponseInterface; 31use Psr\Http\Message\ServerRequestInterface; 32use Psr\Http\Server\RequestHandlerInterface; 33 34use function assert; 35use function e; 36use function redirect; 37use function route; 38 39/** 40 * Send a message from a logged-in user. 41 */ 42class MessageAction implements RequestHandlerInterface 43{ 44 use ViewResponseTrait; 45 46 private MessageService $message_service; 47 48 private UserService $user_service; 49 50 /** 51 * MessagePage constructor. 52 * 53 * @param MessageService $message_service 54 * @param UserService $user_service 55 */ 56 public function __construct(MessageService $message_service, UserService $user_service) 57 { 58 $this->user_service = $user_service; 59 $this->message_service = $message_service; 60 } 61 62 /** 63 * @param ServerRequestInterface $request 64 * 65 * @return ResponseInterface 66 */ 67 public function handle(ServerRequestInterface $request): ResponseInterface 68 { 69 $tree = $request->getAttribute('tree'); 70 assert($tree instanceof Tree); 71 72 $user = $request->getAttribute('user'); 73 $params = (array) $request->getParsedBody(); 74 $body = $params['body']; 75 $subject = $params['subject']; 76 $to = $params['to']; 77 $url = $params['url']; 78 $to_user = $this->user_service->findByUserName($to); 79 $ip = $request->getAttribute('client-ip'); 80 81 if ($to_user === null || $to_user->getPreference(UserInterface::PREF_CONTACT_METHOD) === 'none') { 82 throw new HttpAccessDeniedException('Invalid contact user id'); 83 } 84 85 if ($body === '' || $subject === '') { 86 return redirect(route(MessagePage::class, [ 87 'body' => $body, 88 'subject' => $subject, 89 'to' => $to, 90 'tree' => $tree->name(), 91 'url' => $url, 92 ])); 93 } 94 95 if ($this->message_service->deliverMessage($user, $to_user, $subject, $body, $url, $ip)) { 96 FlashMessages::addMessage(I18N::translate('The message was successfully sent to %s.', e($to_user->realName())), 'success'); 97 98 $base_url = $request->getAttribute('base_url'); 99 $url = str_starts_with($url, $base_url) ? $url : route(TreePage::class, ['tree' => $tree->name()]); 100 101 return redirect($url); 102 } 103 104 FlashMessages::addMessage(I18N::translate('The message was not sent.'), 'danger'); 105 106 return redirect(route(MessagePage::class, [ 107 'body' => $body, 108 'subject' => $subject, 109 'to' => $to, 110 'tree' => $tree->name(), 111 'url' => $url, 112 ])); 113 } 114} 115