mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 04:36:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			83 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers\Admin\Settings;
 | |
| 
 | |
| use App\Models\Setting;
 | |
| use Illuminate\View\View;
 | |
| use Illuminate\Http\Request;
 | |
| use Illuminate\Http\Response;
 | |
| use Illuminate\Contracts\Console\Kernel;
 | |
| use App\Notifications\MailTested;
 | |
| use Illuminate\Support\Facades\Notification;
 | |
| use App\Exceptions\DisplayException;
 | |
| use App\Http\Controllers\Controller;
 | |
| use App\Providers\SettingsServiceProvider;
 | |
| use App\Http\Requests\Admin\Settings\MailSettingsFormRequest;
 | |
| 
 | |
| class MailController extends Controller
 | |
| {
 | |
|     /**
 | |
|      * MailController constructor.
 | |
|      */
 | |
|     public function __construct(
 | |
|         private Kernel $kernel,
 | |
|     ) {
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Render UI for editing mail settings. This UI should only display if
 | |
|      * the server is configured to send mail using SMTP.
 | |
|      */
 | |
|     public function index(): View
 | |
|     {
 | |
|         return view('admin.settings.mail', [
 | |
|             'disabled' => config('mail.default') !== 'smtp',
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Handle request to update SMTP mail settings.
 | |
|      *
 | |
|      * @throws DisplayException
 | |
|      * @throws \App\Exceptions\Model\DataValidationException
 | |
|      */
 | |
|     public function update(MailSettingsFormRequest $request): Response
 | |
|     {
 | |
|         if (config('mail.default') !== 'smtp') {
 | |
|             throw new DisplayException('This feature is only available if SMTP is the selected email driver for the Panel.');
 | |
|         }
 | |
| 
 | |
|         $values = $request->normalize();
 | |
|         if (array_get($values, 'mail:mailers:smtp:password') === '!e') {
 | |
|             $values['mail:mailers:smtp:password'] = '';
 | |
|         }
 | |
| 
 | |
|         foreach ($values as $key => $value) {
 | |
|             if (in_array($key, SettingsServiceProvider::getEncryptedKeys()) && !empty($value)) {
 | |
|                 $value = encrypt($value);
 | |
|             }
 | |
| 
 | |
|             Setting::set('settings::' . $key, $value);
 | |
|         }
 | |
| 
 | |
|         $this->kernel->call('queue:restart');
 | |
| 
 | |
|         return response('', 204);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Submit a request to send a test mail message.
 | |
|      */
 | |
|     public function test(Request $request): Response
 | |
|     {
 | |
|         try {
 | |
|             Notification::route('mail', $request->user()->email)
 | |
|                 ->notify(new MailTested($request->user()));
 | |
|         } catch (\Exception $exception) {
 | |
|             return response($exception->getMessage(), 500);
 | |
|         }
 | |
| 
 | |
|         return response('', 204);
 | |
|     }
 | |
| }
 | 
