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\Http\ViewResponseTrait; 24use Fisharebest\Webtrees\I18N; 25use Fisharebest\Webtrees\Log; 26use Fisharebest\Webtrees\NoReplyUser; 27use Fisharebest\Webtrees\Services\EmailService; 28use Fisharebest\Webtrees\Services\UserService; 29use Fisharebest\Webtrees\SiteUser; 30use Fisharebest\Webtrees\User; 31use Illuminate\Database\Capsule\Manager as DB; 32use Psr\Http\Message\ResponseInterface; 33use Psr\Http\Message\ServerRequestInterface; 34use Psr\Http\Server\RequestHandlerInterface; 35 36/** 37 * Acknowledge an email verification code. 38 */ 39class VerifyEmail implements RequestHandlerInterface 40{ 41 use ViewResponseTrait; 42 43 private EmailService $email_service; 44 45 private UserService $user_service; 46 47 /** 48 * MessageController constructor. 49 * 50 * @param EmailService $email_service 51 * @param UserService $user_service 52 */ 53 public function __construct(EmailService $email_service, UserService $user_service) 54 { 55 $this->email_service = $email_service; 56 $this->user_service = $user_service; 57 } 58 59 /** 60 * Respond to a verification link that was emailed to a user. 61 * 62 * @param ServerRequestInterface $request 63 * 64 * @return ResponseInterface 65 */ 66 public function handle(ServerRequestInterface $request): ResponseInterface 67 { 68 $token = $request->getAttribute('token'); 69 $tree = $request->getAttribute('tree'); 70 $username = $request->getAttribute('username'); 71 72 $title = I18N::translate('User verification'); 73 74 $user = $this->user_service->findByUserName($username); 75 76 if ($user instanceof User && $user->getPreference(UserInterface::PREF_VERIFICATION_TOKEN) === $token) { 77 $old_language = I18N::languageTag(); 78 79 foreach ($this->user_service->administrators() as $administrator) { 80 // switch language to administrator settings 81 I18N::init($administrator->getPreference(UserInterface::PREF_LANGUAGE)); 82 83 $base_url = $request->getAttribute('base_url'); 84 85 /* I18N: %s is a server name/URL */ 86 $subject = I18N::translate('New user at %s', $base_url); 87 88 $this->email_service->send( 89 new SiteUser(), 90 $administrator, 91 new NoReplyUser(), 92 $subject, 93 view('emails/verify-notify-text', ['user' => $user]), 94 view('emails/verify-notify-html', ['user' => $user]) 95 ); 96 97 $mail1_method = $administrator->getPreference('CONTACT_METHOD'); 98 99 if ($mail1_method !== 'messaging3' && $mail1_method !== 'mailto' && $mail1_method !== 'none') { 100 DB::table('message')->insert([ 101 'sender' => $username, 102 'ip_address' => $request->getAttribute('client-ip'), 103 'user_id' => $administrator->id(), 104 'subject' => $subject, 105 'body' => view('emails/verify-notify-text', ['user' => $user]), 106 ]); 107 } 108 } 109 I18N::init($old_language); 110 111 $user->setPreference(UserInterface::PREF_IS_EMAIL_VERIFIED, '1'); 112 $user->setPreference(UserInterface::PREF_TIMESTAMP_REGISTERED, date('U')); 113 $user->setPreference(UserInterface::PREF_VERIFICATION_TOKEN, ''); 114 115 Log::addAuthenticationLog('User ' . $username . ' verified their email address'); 116 117 return $this->viewResponse('verify-success-page', [ 118 'title' => $title, 119 'tree' => $tree, 120 ]); 121 } 122 123 return $this->viewResponse('verify-failure-page', [ 124 'title' => $title, 125 'tree' => $tree, 126 ]); 127 } 128} 129