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\FlashMessages; 23use Fisharebest\Webtrees\GuestUser; 24use Fisharebest\Webtrees\Http\Exceptions\HttpAccessDeniedException; 25use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; 26use Fisharebest\Webtrees\Http\ViewResponseTrait; 27use Fisharebest\Webtrees\I18N; 28use Fisharebest\Webtrees\Services\CaptchaService; 29use Fisharebest\Webtrees\Services\EmailService; 30use Fisharebest\Webtrees\Services\MessageService; 31use Fisharebest\Webtrees\Services\RateLimitService; 32use Fisharebest\Webtrees\Services\UserService; 33use Fisharebest\Webtrees\Validator; 34use Psr\Http\Message\ResponseInterface; 35use Psr\Http\Message\ServerRequestInterface; 36use Psr\Http\Server\RequestHandlerInterface; 37 38use function e; 39use function in_array; 40use function preg_match; 41use function preg_quote; 42use function redirect; 43use function route; 44 45/** 46 * Send a message from a visitor. 47 */ 48class ContactAction implements RequestHandlerInterface 49{ 50 use ViewResponseTrait; 51 52 private CaptchaService $captcha_service; 53 54 private EmailService $email_service; 55 56 private MessageService $message_service; 57 58 private RateLimitService $rate_limit_service; 59 60 private UserService $user_service; 61 62 /** 63 * MessagePage constructor. 64 * 65 * @param CaptchaService $captcha_service 66 * @param EmailService $email_service 67 * @param MessageService $message_service 68 * @param RateLimitService $rate_limit_service 69 * @param UserService $user_service 70 */ 71 public function __construct( 72 CaptchaService $captcha_service, 73 EmailService $email_service, 74 MessageService $message_service, 75 RateLimitService $rate_limit_service, 76 UserService $user_service 77 ) { 78 $this->captcha_service = $captcha_service; 79 $this->email_service = $email_service; 80 $this->user_service = $user_service; 81 $this->rate_limit_service = $rate_limit_service; 82 $this->message_service = $message_service; 83 } 84 85 /** 86 * @param ServerRequestInterface $request 87 * 88 * @return ResponseInterface 89 */ 90 public function handle(ServerRequestInterface $request): ResponseInterface 91 { 92 $tree = Validator::attributes($request)->tree(); 93 94 $base_url = Validator::attributes($request)->string('base_url'); 95 $body = Validator::parsedBody($request)->optionalString('body') ?? ''; 96 $from_email = Validator::parsedBody($request)->optionalString('from_email') ?? ''; 97 $from_name = Validator::parsedBody($request)->optionalString('from_name') ?? ''; 98 $subject = Validator::parsedBody($request)->optionalString('subject') ?? ''; 99 $to = Validator::parsedBody($request)->optionalString('to') ?? ''; 100 $url = Validator::parsedBody($request)->isLocalUrl($base_url)->optionalString('url') ?? $base_url; 101 $ip = Validator::attributes($request)->string('client-ip'); 102 $to_user = $this->user_service->findByUserName($to); 103 104 if ($to_user === null) { 105 throw new HttpNotFoundException(); 106 } 107 108 if (!in_array($to_user, $this->message_service->validContacts($tree), false)) { 109 throw new HttpAccessDeniedException('Invalid contact user id'); 110 } 111 112 $errors = $body === '' || $subject === '' || $from_email === '' || $from_name === ''; 113 114 if ($this->captcha_service->isRobot($request)) { 115 FlashMessages::addMessage(I18N::translate('Please try again.'), 'danger'); 116 $errors = true; 117 } 118 119 if (!$this->email_service->isValidEmail($from_email)) { 120 FlashMessages::addMessage(I18N::translate('Please enter a valid email address.'), 'danger'); 121 $errors = true; 122 } 123 124 if (preg_match('/(?!' . preg_quote($base_url, '/') . ')(((?:ftp|http|https):\/\/)[a-zA-Z0-9.-]+)/', $subject . $body, $match)) { 125 FlashMessages::addMessage(I18N::translate('You are not allowed to send messages that contain external links.') . ' ' . /* I18N: e.g. ‘You should delete the “https://” from “https://www.example.com” and try again.’ */ 126 I18N::translate('You should delete the “%1$s” from “%2$s” and try again.', $match[2], $match[1]), 'danger'); 127 $errors = true; 128 } 129 130 if ($errors) { 131 return redirect(route(ContactPage::class, [ 132 'body' => $body, 133 'from_email' => $from_email, 134 'from_name' => $from_name, 135 'subject' => $subject, 136 'to' => $to, 137 'tree' => $tree->name(), 138 'url' => $url, 139 ])); 140 } 141 142 $sender = new GuestUser($from_email, $from_name); 143 144 $this->rate_limit_service->limitRateForUser($to_user, 20, 1200, 'rate-limit-contact'); 145 146 if ($this->message_service->deliverMessage($sender, $to_user, $subject, $body, $url, $ip)) { 147 FlashMessages::addMessage(I18N::translate('The message was successfully sent to %s.', e($to_user->realName())), 'success'); 148 149 return redirect($url); 150 } 151 152 FlashMessages::addMessage(I18N::translate('The message was not sent.'), 'danger'); 153 154 $redirect_url = route(ContactPage::class, [ 155 'body' => $body, 156 'from_email' => $from_email, 157 'from_name' => $from_name, 158 'subject' => $subject, 159 'to' => $to, 160 'tree' => $tree->name(), 161 'url' => $url, 162 ]); 163 164 return redirect($redirect_url); 165 } 166} 167