2015-09-10 14:31:09 -04:00
|
|
|
<?php namespace BookStack\Repos;
|
2015-09-04 12:16:58 -04:00
|
|
|
|
2018-01-28 09:08:14 -05:00
|
|
|
use Activity;
|
2018-01-28 13:09:26 -05:00
|
|
|
use BookStack\Exceptions\NotFoundException;
|
2018-01-28 09:08:14 -05:00
|
|
|
use BookStack\Image;
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Role;
|
|
|
|
use BookStack\User;
|
2016-09-17 16:33:55 -04:00
|
|
|
use Exception;
|
2018-01-28 09:08:14 -05:00
|
|
|
use Images;
|
2015-09-04 12:16:58 -04:00
|
|
|
|
|
|
|
class UserRepo
|
|
|
|
{
|
|
|
|
|
|
|
|
protected $user;
|
2015-09-06 07:14:32 -04:00
|
|
|
protected $role;
|
2016-02-20 07:37:06 -05:00
|
|
|
protected $entityRepo;
|
2015-09-04 12:16:58 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* UserRepo constructor.
|
2016-02-16 16:25:11 -05:00
|
|
|
* @param User $user
|
|
|
|
* @param Role $role
|
2016-02-20 07:37:06 -05:00
|
|
|
* @param EntityRepo $entityRepo
|
2015-09-04 12:16:58 -04:00
|
|
|
*/
|
2018-01-28 09:08:14 -05:00
|
|
|
public function __construct(User $user, Role $role, EntityRepo $entityRepo)
|
2015-09-04 12:16:58 -04:00
|
|
|
{
|
|
|
|
$this->user = $user;
|
2015-09-06 07:14:32 -04:00
|
|
|
$this->role = $role;
|
2016-02-20 07:37:06 -05:00
|
|
|
$this->entityRepo = $entityRepo;
|
2015-09-04 12:16:58 -04:00
|
|
|
}
|
|
|
|
|
2015-09-06 07:14:32 -04:00
|
|
|
/**
|
|
|
|
* @param string $email
|
|
|
|
* @return User|null
|
|
|
|
*/
|
|
|
|
public function getByEmail($email)
|
|
|
|
{
|
2015-09-04 12:16:58 -04:00
|
|
|
return $this->user->where('email', '=', $email)->first();
|
|
|
|
}
|
2015-09-05 15:25:57 -04:00
|
|
|
|
2015-09-06 07:14:32 -04:00
|
|
|
/**
|
|
|
|
* @param int $id
|
|
|
|
* @return User
|
|
|
|
*/
|
2015-09-05 15:25:57 -04:00
|
|
|
public function getById($id)
|
|
|
|
{
|
|
|
|
return $this->user->findOrFail($id);
|
|
|
|
}
|
2015-09-06 07:14:32 -04:00
|
|
|
|
2016-02-27 14:24:42 -05:00
|
|
|
/**
|
|
|
|
* Get all the users with their permissions.
|
|
|
|
* @return \Illuminate\Database\Eloquent\Builder|static
|
|
|
|
*/
|
|
|
|
public function getAllUsers()
|
|
|
|
{
|
|
|
|
return $this->user->with('roles', 'avatar')->orderBy('name', 'asc')->get();
|
|
|
|
}
|
|
|
|
|
2016-05-22 05:44:31 -04:00
|
|
|
/**
|
|
|
|
* Get all the users with their permissions in a paginated format.
|
|
|
|
* @param int $count
|
|
|
|
* @param $sortData
|
|
|
|
* @return \Illuminate\Database\Eloquent\Builder|static
|
|
|
|
*/
|
2018-01-28 11:58:52 -05:00
|
|
|
public function getAllUsersPaginatedAndSorted($count, $sortData)
|
2016-05-22 05:44:31 -04:00
|
|
|
{
|
|
|
|
$query = $this->user->with('roles', 'avatar')->orderBy($sortData['sort'], $sortData['order']);
|
|
|
|
|
|
|
|
if ($sortData['search']) {
|
|
|
|
$term = '%' . $sortData['search'] . '%';
|
2018-01-28 11:58:52 -05:00
|
|
|
$query->where(function ($query) use ($term) {
|
2016-05-22 05:44:31 -04:00
|
|
|
$query->where('name', 'like', $term)
|
|
|
|
->orWhere('email', 'like', $term);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return $query->paginate($count);
|
|
|
|
}
|
|
|
|
|
2018-08-20 21:19:25 -04:00
|
|
|
/**
|
2015-09-06 07:14:32 -04:00
|
|
|
* Creates a new user and attaches a role to them.
|
|
|
|
* @param array $data
|
2018-09-21 13:05:06 -04:00
|
|
|
* @param boolean $verifyEmail
|
2015-09-06 07:14:32 -04:00
|
|
|
* @return User
|
|
|
|
*/
|
2018-09-21 13:05:06 -04:00
|
|
|
public function registerNew(array $data, $verifyEmail = false)
|
2015-09-06 07:14:32 -04:00
|
|
|
{
|
2018-09-21 13:05:06 -04:00
|
|
|
$user = $this->create($data, $verifyEmail);
|
2015-12-15 14:27:36 -05:00
|
|
|
$this->attachDefaultRole($user);
|
2016-01-17 10:20:07 -05:00
|
|
|
|
|
|
|
// Get avatar from gravatar and save
|
2018-01-28 13:09:26 -05:00
|
|
|
$this->downloadGravatarToUserAvatar($user);
|
2016-01-17 10:20:07 -05:00
|
|
|
|
2015-12-15 14:27:36 -05:00
|
|
|
return $user;
|
|
|
|
}
|
2015-09-06 07:14:32 -04:00
|
|
|
|
2015-12-15 14:27:36 -05:00
|
|
|
/**
|
|
|
|
* Give a user the default role. Used when creating a new user.
|
2018-09-22 17:09:34 -04:00
|
|
|
* @param User $user
|
2015-12-15 14:27:36 -05:00
|
|
|
*/
|
2018-09-22 17:09:34 -04:00
|
|
|
public function attachDefaultRole(User $user)
|
2015-12-15 14:27:36 -05:00
|
|
|
{
|
2016-03-06 07:55:08 -05:00
|
|
|
$roleId = setting('registration-role');
|
2018-09-22 17:09:34 -04:00
|
|
|
if ($roleId !== false && $user->roles()->where('id', '=', $roleId)->count() === 0) {
|
|
|
|
$user->attachRoleId($roleId);
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|
2015-09-06 07:14:32 -04:00
|
|
|
}
|
|
|
|
|
2018-01-28 13:09:26 -05:00
|
|
|
/**
|
|
|
|
* Assign a user to a system-level role.
|
|
|
|
* @param User $user
|
|
|
|
* @param $systemRoleName
|
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
|
|
|
public function attachSystemRole(User $user, $systemRoleName)
|
|
|
|
{
|
|
|
|
$role = $this->role->newQuery()->where('system_name', '=', $systemRoleName)->first();
|
|
|
|
if ($role === null) {
|
|
|
|
throw new NotFoundException("Role '{$systemRoleName}' not found");
|
|
|
|
}
|
|
|
|
$user->attachRole($role);
|
|
|
|
}
|
|
|
|
|
2015-09-06 07:14:32 -04:00
|
|
|
/**
|
|
|
|
* Checks if the give user is the only admin.
|
|
|
|
* @param User $user
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isOnlyAdmin(User $user)
|
|
|
|
{
|
2018-01-28 11:58:52 -05:00
|
|
|
if (!$user->hasSystemRole('admin')) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-09-06 07:14:32 -04:00
|
|
|
|
2017-12-29 11:14:20 -05:00
|
|
|
$adminRole = $this->role->getSystemRole('admin');
|
2018-01-28 11:58:52 -05:00
|
|
|
if ($adminRole->users->count() > 1) {
|
|
|
|
return false;
|
|
|
|
}
|
2015-09-06 07:14:32 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new basic instance of user.
|
|
|
|
* @param array $data
|
2018-09-21 13:05:06 -04:00
|
|
|
* @param boolean $verifyEmail
|
2015-09-06 07:14:32 -04:00
|
|
|
* @return User
|
|
|
|
*/
|
2018-09-21 13:05:06 -04:00
|
|
|
public function create(array $data, $verifyEmail = false)
|
2015-09-06 07:14:32 -04:00
|
|
|
{
|
2018-07-29 15:28:49 -04:00
|
|
|
|
2016-01-13 17:22:30 -05:00
|
|
|
return $this->user->forceCreate([
|
2015-09-06 07:14:32 -04:00
|
|
|
'name' => $data['name'],
|
|
|
|
'email' => $data['email'],
|
2016-04-03 07:16:54 -04:00
|
|
|
'password' => bcrypt($data['password']),
|
2018-09-21 13:05:06 -04:00
|
|
|
'email_confirmed' => $verifyEmail
|
2015-09-06 07:14:32 -04:00
|
|
|
]);
|
|
|
|
}
|
2015-12-15 14:27:36 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the given user from storage, Delete all related content.
|
|
|
|
* @param User $user
|
2018-01-28 09:08:14 -05:00
|
|
|
* @throws Exception
|
2015-12-15 14:27:36 -05:00
|
|
|
*/
|
|
|
|
public function destroy(User $user)
|
|
|
|
{
|
|
|
|
$user->socialAccounts()->delete();
|
|
|
|
$user->delete();
|
2018-01-28 08:50:24 -05:00
|
|
|
|
2018-01-28 09:08:14 -05:00
|
|
|
// Delete user profile images
|
|
|
|
$profileImages = $images = Image::where('type', '=', 'user')->where('created_by', '=', $user->id)->get();
|
|
|
|
foreach ($profileImages as $image) {
|
2018-05-13 12:41:35 -04:00
|
|
|
Images::destroy($image);
|
2018-01-28 08:50:24 -05:00
|
|
|
}
|
2015-12-15 14:27:36 -05:00
|
|
|
}
|
2016-02-16 16:25:11 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the latest activity for a user.
|
|
|
|
* @param User $user
|
|
|
|
* @param int $count
|
|
|
|
* @param int $page
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getActivity(User $user, $count = 20, $page = 0)
|
|
|
|
{
|
2018-01-28 09:08:14 -05:00
|
|
|
return Activity::userActivity($user, $count, $page);
|
2016-02-16 16:25:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-02-17 17:11:48 -05:00
|
|
|
* Get the recently created content for this given user.
|
2016-02-16 16:25:11 -05:00
|
|
|
* @param User $user
|
|
|
|
* @param int $count
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-02-17 17:11:48 -05:00
|
|
|
public function getRecentlyCreated(User $user, $count = 20)
|
2016-02-16 16:25:11 -05:00
|
|
|
{
|
2016-02-17 17:11:48 -05:00
|
|
|
return [
|
2017-01-01 11:05:44 -05:00
|
|
|
'pages' => $this->entityRepo->getRecentlyCreated('page', $count, 0, function ($query) use ($user) {
|
2016-03-06 08:17:46 -05:00
|
|
|
$query->where('created_by', '=', $user->id);
|
|
|
|
}),
|
2017-01-01 11:05:44 -05:00
|
|
|
'chapters' => $this->entityRepo->getRecentlyCreated('chapter', $count, 0, function ($query) use ($user) {
|
2016-03-06 08:17:46 -05:00
|
|
|
$query->where('created_by', '=', $user->id);
|
|
|
|
}),
|
2017-01-01 11:05:44 -05:00
|
|
|
'books' => $this->entityRepo->getRecentlyCreated('book', $count, 0, function ($query) use ($user) {
|
2016-03-06 08:17:46 -05:00
|
|
|
$query->where('created_by', '=', $user->id);
|
|
|
|
})
|
2016-02-17 17:11:48 -05:00
|
|
|
];
|
2016-02-16 16:25:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get asset created counts for the give user.
|
2016-02-17 17:11:48 -05:00
|
|
|
* @param User $user
|
2016-02-16 16:25:11 -05:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getAssetCounts(User $user)
|
|
|
|
{
|
|
|
|
return [
|
2016-03-06 08:17:46 -05:00
|
|
|
'pages' => $this->entityRepo->page->where('created_by', '=', $user->id)->count(),
|
2016-02-20 07:37:06 -05:00
|
|
|
'chapters' => $this->entityRepo->chapter->where('created_by', '=', $user->id)->count(),
|
2016-03-06 08:17:46 -05:00
|
|
|
'books' => $this->entityRepo->book->where('created_by', '=', $user->id)->count(),
|
2016-02-16 16:25:11 -05:00
|
|
|
];
|
|
|
|
}
|
2016-02-17 17:11:48 -05:00
|
|
|
|
2016-05-01 14:36:53 -04:00
|
|
|
/**
|
|
|
|
* Get the roles in the system that are assignable to a user.
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-09-29 07:43:46 -04:00
|
|
|
public function getAllRoles()
|
2016-05-01 14:36:53 -04:00
|
|
|
{
|
2016-09-29 07:43:46 -04:00
|
|
|
return $this->role->all();
|
2016-05-01 14:36:53 -04:00
|
|
|
}
|
|
|
|
|
2016-02-28 05:49:41 -05:00
|
|
|
/**
|
|
|
|
* Get all the roles which can be given restricted access to
|
|
|
|
* other entities in the system.
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getRestrictableRoles()
|
|
|
|
{
|
2016-09-29 07:43:46 -04:00
|
|
|
return $this->role->where('system_name', '!=', 'admin')->get();
|
2016-02-28 05:49:41 -05:00
|
|
|
}
|
2018-01-28 13:09:26 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a gravatar image for a user and set it as their avatar.
|
|
|
|
* Does not run if gravatar disabled in config.
|
|
|
|
* @param User $user
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function downloadGravatarToUserAvatar(User $user)
|
|
|
|
{
|
|
|
|
// Get avatar from gravatar and save
|
|
|
|
if (!config('services.gravatar')) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
$avatar = Images::saveUserGravatar($user);
|
|
|
|
$user->avatar()->associate($avatar);
|
|
|
|
$user->save();
|
|
|
|
return true;
|
|
|
|
} catch (Exception $e) {
|
|
|
|
\Log::error('Failed to save user gravatar image');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2018-08-20 21:19:25 -04:00
|
|
|
}
|