mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			203 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			203 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * UserController.php
 | |
|  * Copyright (c) 2017 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * This file is part of Firefly III.
 | |
|  *
 | |
|  * Firefly III is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU General Public License as published by
 | |
|  * the Free Software Foundation, either version 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  *
 | |
|  * Firefly III is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU General Public License
 | |
|  * along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace FireflyIII\Http\Controllers\Admin;
 | |
| 
 | |
| use FireflyIII\Http\Controllers\Controller;
 | |
| use FireflyIII\Http\Middleware\IsDemoUser;
 | |
| use FireflyIII\Http\Middleware\IsSandStormUser;
 | |
| use FireflyIII\Http\Requests\UserFormRequest;
 | |
| use FireflyIII\Repositories\User\UserRepositoryInterface;
 | |
| use FireflyIII\User;
 | |
| use Log;
 | |
| 
 | |
| /**
 | |
|  * Class UserController.
 | |
|  */
 | |
| class UserController extends Controller
 | |
| {
 | |
|     /**
 | |
|      * UserController constructor.
 | |
|      */
 | |
|     public function __construct()
 | |
|     {
 | |
|         parent::__construct();
 | |
| 
 | |
|         $this->middleware(
 | |
|             function ($request, $next) {
 | |
|                 app('view')->share('title', (string)trans('firefly.administration'));
 | |
|                 app('view')->share('mainTitleIcon', 'fa-hand-spock-o');
 | |
| 
 | |
|                 return $next($request);
 | |
|             }
 | |
|         );
 | |
|         $this->middleware(IsDemoUser::class)->except(['index', 'show']);
 | |
|         $this->middleware(IsSandStormUser::class);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Delete a user.
 | |
|      *
 | |
|      * @param User $user
 | |
|      *
 | |
|      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
 | |
|      */
 | |
|     public function delete(User $user)
 | |
|     {
 | |
|         $subTitle = (string)trans('firefly.delete_user', ['email' => $user->email]);
 | |
| 
 | |
|         return view('admin.users.delete', compact('user', 'subTitle'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Destroy a user.
 | |
|      *
 | |
|      * @param User                    $user
 | |
|      * @param UserRepositoryInterface $repository
 | |
|      *
 | |
|      * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
 | |
|      */
 | |
|     public function destroy(User $user, UserRepositoryInterface $repository)
 | |
|     {
 | |
|         $repository->destroy($user);
 | |
|         session()->flash('success', (string)trans('firefly.user_deleted'));
 | |
| 
 | |
|         return redirect(route('admin.users'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Edit user form.
 | |
|      *
 | |
|      * @param User $user
 | |
|      *
 | |
|      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
 | |
|      */
 | |
|     public function edit(User $user)
 | |
|     {
 | |
|         // put previous url in session if not redirect from store (not "return_to_edit").
 | |
|         if (true !== session('users.edit.fromUpdate')) {
 | |
|             $this->rememberPreviousUri('users.edit.uri');
 | |
|         }
 | |
|         session()->forget('users.edit.fromUpdate');
 | |
| 
 | |
|         $subTitle     = (string)trans('firefly.edit_user', ['email' => $user->email]);
 | |
|         $subTitleIcon = 'fa-user-o';
 | |
|         $codes        = [
 | |
|             ''              => (string)trans('firefly.no_block_code'),
 | |
|             'bounced'       => (string)trans('firefly.block_code_bounced'),
 | |
|             'expired'       => (string)trans('firefly.block_code_expired'),
 | |
|             'email_changed' => (string)trans('firefly.block_code_email_changed'),
 | |
|         ];
 | |
| 
 | |
|         return view('admin.users.edit', compact('user', 'subTitle', 'subTitleIcon', 'codes'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Show index of user manager.
 | |
|      *
 | |
|      * @param UserRepositoryInterface $repository
 | |
|      *
 | |
|      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
 | |
|      */
 | |
|     public function index(UserRepositoryInterface $repository)
 | |
|     {
 | |
|         $subTitle     = (string)trans('firefly.user_administration');
 | |
|         $subTitleIcon = 'fa-users';
 | |
|         $users        = $repository->all();
 | |
| 
 | |
|         // add meta stuff.
 | |
|         $users->each(
 | |
|             function (User $user) use ($repository) {
 | |
|                 $list          = ['twoFactorAuthEnabled', 'twoFactorAuthSecret'];
 | |
|                 $preferences   = app('preferences')->getArrayForUser($user, $list);
 | |
|                 $user->isAdmin = $repository->hasRole($user, 'owner');
 | |
|                 $is2faEnabled  = 1 === $preferences['twoFactorAuthEnabled'];
 | |
|                 $has2faSecret  = null !== $preferences['twoFactorAuthSecret'];
 | |
|                 $user->has2FA  = ($is2faEnabled && $has2faSecret);
 | |
|                 $user->prefs   = $preferences;
 | |
|             }
 | |
|         );
 | |
| 
 | |
|         return view('admin.users.index', compact('subTitle', 'subTitleIcon', 'users'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Show single user.
 | |
|      *
 | |
|      * @param UserRepositoryInterface $repository
 | |
|      * @param User                    $user
 | |
|      *
 | |
|      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
 | |
|      */
 | |
|     public function show(UserRepositoryInterface $repository, User $user)
 | |
|     {
 | |
|         $title         = (string)trans('firefly.administration');
 | |
|         $mainTitleIcon = 'fa-hand-spock-o';
 | |
|         $subTitle      = (string)trans('firefly.single_user_administration', ['email' => $user->email]);
 | |
|         $subTitleIcon  = 'fa-user';
 | |
|         $information   = $repository->getUserData($user);
 | |
| 
 | |
|         return view(
 | |
|             'admin.users.show', compact(
 | |
|                                   'title', 'mainTitleIcon', 'subTitle', 'subTitleIcon', 'information', 'user'
 | |
|                               )
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Update single user.
 | |
|      *
 | |
|      * @param UserFormRequest         $request
 | |
|      * @param User                    $user
 | |
|      * @param UserRepositoryInterface $repository
 | |
|      *
 | |
|      * @return $this|\Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
 | |
|      */
 | |
|     public function update(UserFormRequest $request, User $user, UserRepositoryInterface $repository)
 | |
|     {
 | |
|         Log::debug('Actually here');
 | |
|         $data = $request->getUserData();
 | |
| 
 | |
|         // update password
 | |
|         if (\strlen($data['password']) > 0) {
 | |
|             $repository->changePassword($user, $data['password']);
 | |
|         }
 | |
| 
 | |
|         $repository->changeStatus($user, $data['blocked'], $data['blocked_code']);
 | |
|         $repository->updateEmail($user, $data['email']);
 | |
| 
 | |
|         session()->flash('success', (string)trans('firefly.updated_user', ['email' => $user->email]));
 | |
|         app('preferences')->mark();
 | |
|         $redirect = redirect($this->getPreviousUri('users.edit.uri'));
 | |
|         if (1 === (int)$request->get('return_to_edit')) {
 | |
|             // @codeCoverageIgnoreStart
 | |
|             session()->put('users.edit.fromUpdate', true);
 | |
| 
 | |
|             $redirect = redirect(route('admin.users.edit', [$user->id]))->withInput(['return_to_edit' => 1]);
 | |
|             // @codeCoverageIgnoreEnd
 | |
|         }
 | |
| 
 | |
|         // redirect to previous URL.
 | |
|         return $redirect;
 | |
|     }
 | |
| }
 |