2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Http\Controllers;
|
2015-08-08 15:05:30 -04:00
|
|
|
|
2018-09-25 07:30:50 -04:00
|
|
|
use BookStack\Auth\Access\SocialAuthService;
|
2022-10-30 08:02:06 -04:00
|
|
|
use BookStack\Auth\Queries\UsersAllPaginatedAndSorted;
|
2022-02-13 07:56:26 -05:00
|
|
|
use BookStack\Auth\Role;
|
2018-09-25 11:58:03 -04:00
|
|
|
use BookStack\Auth\UserRepo;
|
2021-03-09 18:06:12 -05:00
|
|
|
use BookStack\Exceptions\ImageUploadException;
|
2018-12-30 11:11:58 -05:00
|
|
|
use BookStack\Exceptions\UserUpdateException;
|
2019-05-04 10:48:15 -04:00
|
|
|
use BookStack\Uploads\ImageRepo;
|
2022-10-30 11:16:06 -04:00
|
|
|
use BookStack\Util\SimpleListOptions;
|
2021-03-09 18:06:12 -05:00
|
|
|
use Exception;
|
2018-09-25 11:58:03 -04:00
|
|
|
use Illuminate\Http\Request;
|
2022-01-19 14:46:38 -05:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2021-12-18 11:31:48 -05:00
|
|
|
use Illuminate\Validation\Rules\Password;
|
2021-03-09 18:06:12 -05:00
|
|
|
use Illuminate\Validation\ValidationException;
|
2015-08-08 15:05:30 -04:00
|
|
|
|
|
|
|
class UserController extends Controller
|
|
|
|
{
|
2022-08-09 07:40:59 -04:00
|
|
|
protected UserRepo $userRepo;
|
|
|
|
protected ImageRepo $imageRepo;
|
2015-08-08 15:05:30 -04:00
|
|
|
|
2022-02-03 19:26:19 -05:00
|
|
|
public function __construct(UserRepo $userRepo, ImageRepo $imageRepo)
|
2015-08-08 15:05:30 -04:00
|
|
|
{
|
2015-09-06 07:14:32 -04:00
|
|
|
$this->userRepo = $userRepo;
|
2019-05-04 10:48:15 -04:00
|
|
|
$this->imageRepo = $imageRepo;
|
2015-08-08 15:05:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display a listing of the users.
|
|
|
|
*/
|
2016-05-22 05:44:31 -04:00
|
|
|
public function index(Request $request)
|
2015-08-08 15:05:30 -04:00
|
|
|
{
|
2016-03-05 07:09:09 -05:00
|
|
|
$this->checkPermission('users-manage');
|
2022-02-13 07:56:26 -05:00
|
|
|
|
2022-10-30 11:16:06 -04:00
|
|
|
$listOptions = SimpleListOptions::fromRequest($request, 'users')->withSortOptions([
|
|
|
|
'name' => trans('common.sort_name'),
|
|
|
|
'email' => trans('auth.email'),
|
|
|
|
'created_at' => trans('common.sort_created_at'),
|
|
|
|
'updated_at' => trans('common.sort_updated_at'),
|
|
|
|
'last_activity_at' => trans('settings.users_latest_activity'),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$users = (new UsersAllPaginatedAndSorted())->run(20, $listOptions);
|
2021-01-10 17:43:22 -05:00
|
|
|
|
2016-12-04 11:51:39 -05:00
|
|
|
$this->setPageTitle(trans('settings.users'));
|
2022-10-30 11:16:06 -04:00
|
|
|
$users->appends($listOptions->getPaginationAppends());
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2022-02-13 07:56:26 -05:00
|
|
|
return view('users.index', [
|
2022-02-13 08:16:43 -05:00
|
|
|
'users' => $users,
|
2022-10-30 11:16:06 -04:00
|
|
|
'listOptions' => $listOptions,
|
2022-02-13 07:56:26 -05:00
|
|
|
]);
|
2015-08-08 15:05:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for creating a new user.
|
|
|
|
*/
|
|
|
|
public function create()
|
|
|
|
{
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkPermission('users-manage');
|
2016-01-13 17:22:30 -05:00
|
|
|
$authMethod = config('auth.method');
|
2022-02-13 07:56:26 -05:00
|
|
|
$roles = Role::query()->orderBy('display_name', 'asc')->get();
|
2022-01-31 17:15:21 -05:00
|
|
|
$this->setPageTitle(trans('settings.users_add_new'));
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2019-04-06 11:21:20 -04:00
|
|
|
return view('users.create', ['authMethod' => $authMethod, 'roles' => $roles]);
|
2015-08-08 15:05:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-02-03 19:26:19 -05:00
|
|
|
* Store a new user in storage.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2021-03-09 18:06:12 -05:00
|
|
|
* @throws ValidationException
|
2015-08-08 15:05:30 -04:00
|
|
|
*/
|
|
|
|
public function store(Request $request)
|
|
|
|
{
|
2016-02-27 14:24:42 -05:00
|
|
|
$this->checkPermission('users-manage');
|
2016-01-17 10:20:07 -05:00
|
|
|
|
|
|
|
$authMethod = config('auth.method');
|
2019-08-18 08:11:30 -04:00
|
|
|
$sendInvite = ($request->get('send_invite', 'false') === 'true');
|
2022-02-03 19:26:19 -05:00
|
|
|
$externalAuth = $authMethod === 'ldap' || $authMethod === 'saml2' || $authMethod === 'oidc';
|
|
|
|
$passwordRequired = ($authMethod === 'standard' && !$sendInvite);
|
2019-08-18 08:11:30 -04:00
|
|
|
|
2022-02-03 19:26:19 -05:00
|
|
|
$validationRules = [
|
2022-08-09 07:40:59 -04:00
|
|
|
'name' => ['required', 'max:100'],
|
2022-02-08 10:29:58 -05:00
|
|
|
'email' => ['required', 'email', 'unique:users,email'],
|
2022-08-04 12:24:04 -04:00
|
|
|
'language' => ['string', 'max:15', 'alpha_dash'],
|
2022-02-03 19:26:19 -05:00
|
|
|
'roles' => ['array'],
|
|
|
|
'roles.*' => ['integer'],
|
2022-02-08 10:29:58 -05:00
|
|
|
'password' => $passwordRequired ? ['required', Password::default()] : null,
|
2022-02-03 19:26:19 -05:00
|
|
|
'password-confirm' => $passwordRequired ? ['required', 'same:password'] : null,
|
|
|
|
'external_auth_id' => $externalAuth ? ['required'] : null,
|
|
|
|
];
|
2022-01-24 15:55:03 -05:00
|
|
|
|
2022-02-03 19:26:19 -05:00
|
|
|
$validated = $this->validate($request, array_filter($validationRules));
|
2022-01-24 15:55:03 -05:00
|
|
|
|
2022-02-03 19:26:19 -05:00
|
|
|
DB::transaction(function () use ($validated, $sendInvite) {
|
|
|
|
$this->userRepo->create($validated, $sendInvite);
|
2022-01-19 14:46:38 -05:00
|
|
|
});
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2016-02-16 16:25:11 -05:00
|
|
|
return redirect('/settings/users');
|
2015-08-08 15:05:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for editing the specified user.
|
|
|
|
*/
|
2019-12-29 08:02:26 -05:00
|
|
|
public function edit(int $id, SocialAuthService $socialAuthService)
|
2015-08-08 15:05:30 -04:00
|
|
|
{
|
2019-04-27 09:18:00 -04:00
|
|
|
$this->checkPermissionOrCurrentUser('users-manage', $id);
|
2015-09-04 15:40:36 -04:00
|
|
|
|
2022-10-30 11:25:02 -04:00
|
|
|
$user = $this->userRepo->getById($id);
|
|
|
|
$user->load(['apiTokens', 'mfaValues']);
|
2016-09-29 07:43:46 -04:00
|
|
|
$authMethod = ($user->system_name) ? 'system' : config('auth.method');
|
|
|
|
|
2015-09-04 15:40:36 -04:00
|
|
|
$activeSocialDrivers = $socialAuthService->getActiveDrivers();
|
2021-07-14 15:18:48 -04:00
|
|
|
$mfaMethods = $user->mfaValues->groupBy('method');
|
2016-12-04 11:51:39 -05:00
|
|
|
$this->setPageTitle(trans('settings.user_profile'));
|
2022-02-13 07:56:26 -05:00
|
|
|
$roles = Role::query()->orderBy('display_name', 'asc')->get();
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2019-12-29 08:02:26 -05:00
|
|
|
return view('users.edit', [
|
2021-06-26 11:23:15 -04:00
|
|
|
'user' => $user,
|
2019-12-29 08:02:26 -05:00
|
|
|
'activeSocialDrivers' => $activeSocialDrivers,
|
2021-07-14 15:06:41 -04:00
|
|
|
'mfaMethods' => $mfaMethods,
|
2021-06-26 11:23:15 -04:00
|
|
|
'authMethod' => $authMethod,
|
|
|
|
'roles' => $roles,
|
2019-12-29 08:02:26 -05:00
|
|
|
]);
|
2015-08-08 15:05:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the specified user in storage.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2018-12-30 11:11:58 -05:00
|
|
|
* @throws UserUpdateException
|
2021-03-09 18:06:12 -05:00
|
|
|
* @throws ImageUploadException
|
|
|
|
* @throws ValidationException
|
2015-08-08 15:05:30 -04:00
|
|
|
*/
|
2020-04-10 07:49:16 -04:00
|
|
|
public function update(Request $request, int $id)
|
2015-08-08 15:05:30 -04:00
|
|
|
{
|
2019-09-19 10:12:10 -04:00
|
|
|
$this->preventAccessInDemoMode();
|
2019-04-27 09:18:00 -04:00
|
|
|
$this->checkPermissionOrCurrentUser('users-manage', $id);
|
2015-12-31 12:57:34 -05:00
|
|
|
|
2022-02-03 11:52:28 -05:00
|
|
|
$validated = $this->validate($request, [
|
2022-08-09 07:40:59 -04:00
|
|
|
'name' => ['min:2', 'max:100'],
|
2021-11-04 20:26:55 -04:00
|
|
|
'email' => ['min:2', 'email', 'unique:users,email,' . $id],
|
2021-12-18 11:31:48 -05:00
|
|
|
'password' => ['required_with:password_confirm', Password::default()],
|
2021-11-04 20:26:55 -04:00
|
|
|
'password-confirm' => ['same:password', 'required_with:password'],
|
2022-08-04 12:24:04 -04:00
|
|
|
'language' => ['string', 'max:15', 'alpha_dash'],
|
2022-02-03 11:52:28 -05:00
|
|
|
'roles' => ['array'],
|
|
|
|
'roles.*' => ['integer'],
|
2022-02-03 20:02:13 -05:00
|
|
|
'external_auth_id' => ['string'],
|
2021-11-04 20:26:55 -04:00
|
|
|
'profile_image' => array_merge(['nullable'], $this->getImageValidationRules()),
|
2015-08-08 15:05:30 -04:00
|
|
|
]);
|
|
|
|
|
2018-12-30 11:11:58 -05:00
|
|
|
$user = $this->userRepo->getById($id);
|
2022-02-03 11:52:28 -05:00
|
|
|
$this->userRepo->update($user, $validated, userCan('users-manage'));
|
2017-01-15 11:27:24 -05:00
|
|
|
|
2019-05-04 10:48:15 -04:00
|
|
|
// Save profile image if in request
|
2020-03-03 18:08:01 -05:00
|
|
|
if ($request->hasFile('profile_image')) {
|
2019-05-04 10:48:15 -04:00
|
|
|
$imageUpload = $request->file('profile_image');
|
|
|
|
$this->imageRepo->destroyImage($user->avatar);
|
|
|
|
$image = $this->imageRepo->saveNew($imageUpload, 'user', $user->id);
|
|
|
|
$user->image_id = $image->id;
|
2022-02-03 11:52:28 -05:00
|
|
|
$user->save();
|
2019-05-04 10:48:15 -04:00
|
|
|
}
|
|
|
|
|
2020-12-08 18:46:38 -05:00
|
|
|
// Delete the profile image if reset option is in request
|
2019-05-04 10:48:15 -04:00
|
|
|
if ($request->has('profile_image_reset')) {
|
|
|
|
$this->imageRepo->destroyImage($user->avatar);
|
2023-01-26 12:15:09 -05:00
|
|
|
$user->image_id = 0;
|
|
|
|
$user->save();
|
2019-05-04 10:48:15 -04:00
|
|
|
}
|
|
|
|
|
2022-02-03 11:52:28 -05:00
|
|
|
$redirectUrl = userCan('users-manage') ? '/settings/users' : "/settings/users/{$user->id}";
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2016-03-13 11:37:46 -04:00
|
|
|
return redirect($redirectUrl);
|
2015-08-08 15:05:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the user delete page.
|
|
|
|
*/
|
2020-04-10 07:49:16 -04:00
|
|
|
public function delete(int $id)
|
2015-08-08 15:05:30 -04:00
|
|
|
{
|
2019-04-27 09:18:00 -04:00
|
|
|
$this->checkPermissionOrCurrentUser('users-manage', $id);
|
2015-12-31 12:57:34 -05:00
|
|
|
|
2018-12-30 11:11:58 -05:00
|
|
|
$user = $this->userRepo->getById($id);
|
2016-12-04 11:51:39 -05:00
|
|
|
$this->setPageTitle(trans('settings.users_delete_named', ['userName' => $user->name]));
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2019-04-06 11:21:20 -04:00
|
|
|
return view('users.delete', ['user' => $user]);
|
2015-08-08 15:05:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the specified user from storage.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2021-03-09 18:06:12 -05:00
|
|
|
* @throws Exception
|
2015-08-08 15:05:30 -04:00
|
|
|
*/
|
2021-01-01 13:31:01 -05:00
|
|
|
public function destroy(Request $request, int $id)
|
2015-08-08 15:05:30 -04:00
|
|
|
{
|
2019-09-19 10:12:10 -04:00
|
|
|
$this->preventAccessInDemoMode();
|
2019-04-27 09:18:00 -04:00
|
|
|
$this->checkPermissionOrCurrentUser('users-manage', $id);
|
2015-12-14 15:13:32 -05:00
|
|
|
|
2015-12-15 14:27:36 -05:00
|
|
|
$user = $this->userRepo->getById($id);
|
2021-01-01 13:31:01 -05:00
|
|
|
$newOwnerId = $request->get('new_owner_id', null);
|
2016-05-22 04:23:41 -04:00
|
|
|
|
2021-01-01 13:31:01 -05:00
|
|
|
$this->userRepo->destroy($user, $newOwnerId);
|
2015-12-14 15:13:32 -05:00
|
|
|
|
2016-02-16 16:25:11 -05:00
|
|
|
return redirect('/settings/users');
|
|
|
|
}
|
2015-08-08 15:05:30 -04:00
|
|
|
}
|