1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2022 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 * MessagePage constructor. 51 * 52 * @param MessageService $message_service 53 * @param UserService $user_service 54 */ 55 public function __construct(MessageService $message_service, UserService $user_service) 56 { 57 $this->user_service = $user_service; 58 $this->message_service = $message_service; 59 } 60 61 /** 62 * @param ServerRequestInterface $request 63 * 64 * @return ResponseInterface 65 */ 66 public function handle(ServerRequestInterface $request): ResponseInterface 67 { 68 $tree = Validator::attributes($request)->tree(); 69 $user = Validator::attributes($request)->user(); 70 $ip = Validator::attributes($request)->string('client-ip'); 71 $base_url = Validator::attributes($request)->string('base_url'); 72 $body = Validator::parsedBody($request)->string('body'); 73 $subject = Validator::parsedBody($request)->string('subject'); 74 $to = Validator::parsedBody($request)->string('to'); 75 $to_user = $this->user_service->findByUserName($to); 76 $url = Validator::parsedBody($request)->isLocalUrl()->string('url', $base_url); 77 78 if ($to_user === null || $to_user->getPreference(UserInterface::PREF_CONTACT_METHOD) === 'none') { 79 throw new HttpAccessDeniedException('Invalid contact user id'); 80 } 81 82 if ($body === '' || $subject === '') { 83 return redirect(route(MessagePage::class, [ 84 'body' => $body, 85 'subject' => $subject, 86 'to' => $to, 87 'tree' => $tree->name(), 88 'url' => $url, 89 ])); 90 } 91 92 if ($this->message_service->deliverMessage($user, $to_user, $subject, $body, $url, $ip)) { 93 FlashMessages::addMessage(I18N::translate('The message was successfully sent to %s.', e($to_user->realName())), 'success'); 94 95 return redirect($url); 96 } 97 98 FlashMessages::addMessage(I18N::translate('The message was not sent.'), 'danger'); 99 100 return redirect(route(MessagePage::class, [ 101 'body' => $body, 102 'subject' => $subject, 103 'to' => $to, 104 'tree' => $tree->name(), 105 'url' => $url, 106 ])); 107 } 108} 109