| 
									
										
										
										
											2017-09-27 15:45:55 +02:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * AdminEventHandler.php | 
					
						
							| 
									
										
										
										
											2020-01-28 08:45:38 +01:00
										 |  |  |  * Copyright (c) 2019 james@firefly-iii.org | 
					
						
							| 
									
										
										
										
											2017-09-27 15:45:55 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * This file is part of Firefly III (https://github.com/firefly-iii). | 
					
						
							| 
									
										
										
										
											2017-10-21 08:40:00 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as | 
					
						
							|  |  |  |  * published by the Free Software Foundation, either version 3 of the | 
					
						
							|  |  |  |  * License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2017-10-21 08:40:00 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2017-10-21 08:40:00 +02:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * GNU Affero General Public License for more details. | 
					
						
							| 
									
										
										
										
											2017-10-21 08:40:00 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <https://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2017-09-27 15:45:55 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | declare(strict_types=1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace FireflyIII\Handlers\Events; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 14:42:07 +02:00
										 |  |  | use Exception; | 
					
						
							| 
									
										
										
										
											2017-09-27 15:45:55 +02:00
										 |  |  | use FireflyIII\Events\AdminRequestedTestMessage; | 
					
						
							|  |  |  | use FireflyIII\Mail\AdminTestMail; | 
					
						
							| 
									
										
										
										
											2018-03-30 22:40:20 +02:00
										 |  |  | use FireflyIII\Repositories\User\UserRepositoryInterface; | 
					
						
							| 
									
										
										
										
											2017-09-27 15:45:55 +02:00
										 |  |  | use Log; | 
					
						
							|  |  |  | use Mail; | 
					
						
							|  |  |  | use Session; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2017-11-15 12:25:49 +01:00
										 |  |  |  * Class AdminEventHandler. | 
					
						
							| 
									
										
										
										
											2017-09-27 15:45:55 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | class AdminEventHandler | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2017-11-25 15:20:53 +01:00
										 |  |  |      * Sends a test message to an administrator. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2017-09-27 15:45:55 +02:00
										 |  |  |      * @param AdminRequestedTestMessage $event | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function sendTestMessage(AdminRequestedTestMessage $event): bool | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-03-30 22:40:20 +02:00
										 |  |  |         /** @var UserRepositoryInterface $repository */ | 
					
						
							|  |  |  |         $repository = app(UserRepositoryInterface::class); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // is user even admin?
 | 
					
						
							| 
									
										
										
										
											2018-07-07 07:48:10 +02:00
										 |  |  |         if ($repository->hasRole($event->user, 'owner')) { | 
					
						
							|  |  |  |             $email     = $event->user->email; | 
					
						
							|  |  |  |             $ipAddress = $event->ipAddress; | 
					
						
							| 
									
										
										
										
											2017-09-27 15:45:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-03 20:33:46 +01:00
										 |  |  |             // if user is demo user, send to owner:
 | 
					
						
							|  |  |  |             if($event->user->hasRole('demo')) { | 
					
						
							|  |  |  |                 $email = config('firefly.site_owner'); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-03 07:03:41 +02:00
										 |  |  |             // see if user has alternative email address:
 | 
					
						
							|  |  |  |             $pref = app('preferences')->getForUser($event->user, 'remote_guard_alt_email', null); | 
					
						
							|  |  |  |             if (null !== $pref) { | 
					
						
							|  |  |  |                 $email = $pref->data; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-07 07:48:10 +02:00
										 |  |  |             Log::debug(sprintf('Now in sendTestMessage event handler. Email is %s, IP is %s', $email, $ipAddress)); | 
					
						
							|  |  |  |             try { | 
					
						
							|  |  |  |                 Log::debug('Trying to send message...'); | 
					
						
							|  |  |  |                 Mail::to($email)->send(new AdminTestMail($email, $ipAddress)); | 
					
						
							|  |  |  |                 // @codeCoverageIgnoreStart
 | 
					
						
							| 
									
										
										
										
											2018-08-24 16:07:33 +02:00
										 |  |  |                 // Laravel cannot pretend this process failed during testing.
 | 
					
						
							| 
									
										
										
										
											2018-07-07 07:48:10 +02:00
										 |  |  |             } catch (Exception $e) { | 
					
						
							|  |  |  |                 Log::debug('Send message failed! :('); | 
					
						
							|  |  |  |                 Log::error($e->getMessage()); | 
					
						
							|  |  |  |                 Log::error($e->getTraceAsString()); | 
					
						
							|  |  |  |                 Session::flash('error', 'Possible email error: ' . $e->getMessage()); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-08-24 16:07:33 +02:00
										 |  |  |             // @codeCoverageIgnoreEnd
 | 
					
						
							| 
									
										
										
										
											2018-07-07 07:48:10 +02:00
										 |  |  |             Log::debug('If no error above this line, message was sent.'); | 
					
						
							| 
									
										
										
										
											2017-09-27 15:45:55 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-10-05 11:49:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-27 15:45:55 +02:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-11-08 09:05:10 +01:00
										 |  |  | } |