1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2023 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\FlashMessages; 24use Fisharebest\Webtrees\Http\Exceptions\HttpAccessDeniedException; 25use Fisharebest\Webtrees\Http\ViewResponseTrait; 26use Fisharebest\Webtrees\I18N; 27use Fisharebest\Webtrees\Services\MessageService; 28use Fisharebest\Webtrees\Services\UserService; 29use Fisharebest\Webtrees\Validator; 30use Psr\Http\Message\ResponseInterface; 31use Psr\Http\Message\ServerRequestInterface; 32use Psr\Http\Server\RequestHandlerInterface; 33 34use function e; 35use function redirect; 36use function route; 37 38/** 39 * Send a message from a logged-in user. 40 */ 41class MessageAction implements RequestHandlerInterface 42{ 43 use ViewResponseTrait; 44 45 private MessageService $message_service; 46 47 private UserService $user_service; 48 49 /** 50 * @param MessageService $message_service 51 * @param UserService $user_service 52 */ 53 public function __construct(MessageService $message_service, UserService $user_service) 54 { 55 $this->user_service = $user_service; 56 $this->message_service = $message_service; 57 } 58 59 /** 60 * @param ServerRequestInterface $request 61 * 62 * @return ResponseInterface 63 */ 64 public function handle(ServerRequestInterface $request): ResponseInterface 65 { 66 $tree = Validator::attributes($request)->tree(); 67 $user = Validator::attributes($request)->user(); 68 $ip = Validator::attributes($request)->string('client-ip'); 69 $base_url = Validator::attributes($request)->string('base_url'); 70 $body = Validator::parsedBody($request)->string('body'); 71 $subject = Validator::parsedBody($request)->string('subject'); 72 $to = Validator::parsedBody($request)->string('to'); 73 $to_user = $this->user_service->findByUserName($to); 74 $url = Validator::parsedBody($request)->isLocalUrl()->string('url', $base_url); 75 76 if ($to_user === null || $to_user->getPreference(UserInterface::PREF_CONTACT_METHOD) === MessageService::CONTACT_METHOD_NONE) { 77 throw new HttpAccessDeniedException('Invalid contact user id'); 78 } 79 80 if ($body === '' || $subject === '') { 81 return redirect(route(MessagePage::class, [ 82 'body' => $body, 83 'subject' => $subject, 84 'to' => $to, 85 'tree' => $tree->name(), 86 'url' => $url, 87 ])); 88 } 89 90 if ($this->message_service->deliverMessage($user, $to_user, $subject, $body, $url, $ip)) { 91 FlashMessages::addMessage(I18N::translate('The message was successfully sent to %s.', e($to_user->realName())), 'success'); 92 93 return redirect($url); 94 } 95 96 FlashMessages::addMessage(I18N::translate('The message was not sent.'), 'danger'); 97 98 return redirect(route(MessagePage::class, [ 99 'body' => $body, 100 'subject' => $subject, 101 'to' => $to, 102 'tree' => $tree->name(), 103 'url' => $url, 104 ])); 105 } 106} 107