2018-09-25 07:30:50 -04:00
|
|
|
<?php namespace BookStack\Actions;
|
2015-08-16 13:59:23 -04:00
|
|
|
|
2018-09-25 07:30:50 -04:00
|
|
|
use BookStack\Auth\Permissions\PermissionService;
|
2020-04-10 15:55:33 -04:00
|
|
|
use BookStack\Auth\User;
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Chapter;
|
|
|
|
use BookStack\Entities\Models\Entity;
|
|
|
|
use BookStack\Entities\Models\Page;
|
2020-11-18 18:38:44 -05:00
|
|
|
use BookStack\Interfaces\Loggable;
|
2020-11-07 18:15:13 -05:00
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
2020-11-07 09:28:50 -05:00
|
|
|
use Illuminate\Database\Eloquent\Relations\Relation;
|
2020-07-28 07:59:43 -04:00
|
|
|
use Illuminate\Support\Facades\Log;
|
2015-08-16 13:59:23 -04:00
|
|
|
|
|
|
|
class ActivityService
|
|
|
|
{
|
|
|
|
protected $activity;
|
2016-05-01 16:20:50 -04:00
|
|
|
protected $permissionService;
|
2015-08-16 13:59:23 -04:00
|
|
|
|
2016-05-01 16:20:50 -04:00
|
|
|
public function __construct(Activity $activity, PermissionService $permissionService)
|
2015-08-16 13:59:23 -04:00
|
|
|
{
|
|
|
|
$this->activity = $activity;
|
2016-05-01 16:20:50 -04:00
|
|
|
$this->permissionService = $permissionService;
|
2015-08-16 13:59:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-11-07 18:15:13 -05:00
|
|
|
* Add activity data to database for an entity.
|
2015-08-16 13:59:23 -04:00
|
|
|
*/
|
2020-11-07 18:15:13 -05:00
|
|
|
public function addForEntity(Entity $entity, string $type)
|
2015-08-16 13:59:23 -04:00
|
|
|
{
|
2020-11-07 18:15:13 -05:00
|
|
|
$activity = $this->newActivityForUser($type);
|
2016-02-18 14:32:07 -05:00
|
|
|
$entity->activity()->save($activity);
|
2020-11-07 17:37:27 -05:00
|
|
|
$this->setNotification($type);
|
2015-08-16 13:59:23 -04:00
|
|
|
}
|
|
|
|
|
2020-11-18 18:38:44 -05:00
|
|
|
/**
|
|
|
|
* Add a generic activity event to the database.
|
|
|
|
* @param string|Loggable $detail
|
|
|
|
*/
|
|
|
|
public function add(string $type, $detail = '')
|
|
|
|
{
|
|
|
|
if ($detail instanceof Loggable) {
|
|
|
|
$detail = $detail->logDescriptor();
|
|
|
|
}
|
|
|
|
|
|
|
|
$activity = $this->newActivityForUser($type);
|
|
|
|
$activity->detail = $detail;
|
|
|
|
$activity->save();
|
|
|
|
$this->setNotification($type);
|
|
|
|
}
|
|
|
|
|
2019-09-19 13:03:17 -04:00
|
|
|
/**
|
|
|
|
* Get a new activity instance for the current user.
|
|
|
|
*/
|
2020-11-07 18:15:13 -05:00
|
|
|
protected function newActivityForUser(string $type): Activity
|
2019-09-19 13:03:17 -04:00
|
|
|
{
|
|
|
|
return $this->activity->newInstance()->forceFill([
|
2020-11-07 19:03:19 -05:00
|
|
|
'type' => strtolower($type),
|
|
|
|
'user_id' => user()->id,
|
2019-09-19 13:03:17 -04:00
|
|
|
]);
|
|
|
|
}
|
2015-08-29 11:00:19 -04:00
|
|
|
|
2015-08-23 09:20:34 -04:00
|
|
|
/**
|
|
|
|
* Removes the entity attachment from each of its activities
|
|
|
|
* and instead uses the 'extra' field with the entities name.
|
|
|
|
* Used when an entity is deleted.
|
|
|
|
*/
|
2020-11-07 18:15:13 -05:00
|
|
|
public function removeEntity(Entity $entity)
|
2015-08-23 09:20:34 -04:00
|
|
|
{
|
2020-04-10 15:55:33 -04:00
|
|
|
$entity->activity()->update([
|
2020-11-07 19:03:19 -05:00
|
|
|
'detail' => $entity->name,
|
|
|
|
'entity_id' => null,
|
|
|
|
'entity_type' => null,
|
2020-04-10 15:55:33 -04:00
|
|
|
]);
|
2015-08-23 09:20:34 -04:00
|
|
|
}
|
|
|
|
|
2015-08-16 15:11:21 -04:00
|
|
|
/**
|
|
|
|
* Gets the latest activity.
|
|
|
|
*/
|
2020-04-10 15:55:33 -04:00
|
|
|
public function latest(int $count = 20, int $page = 0): array
|
2015-08-16 15:11:21 -04:00
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
$activityList = $this->permissionService
|
2021-03-14 15:52:07 -04:00
|
|
|
->filterRestrictedEntityRelations($this->activity->newQuery(), 'activities', 'entity_id', 'entity_type')
|
2019-09-19 13:03:17 -04:00
|
|
|
->orderBy('created_at', 'desc')
|
2020-04-10 15:55:33 -04:00
|
|
|
->with(['user', 'entity'])
|
2019-09-19 13:03:17 -04:00
|
|
|
->skip($count * $page)
|
|
|
|
->take($count)
|
|
|
|
->get();
|
2016-02-28 14:03:04 -05:00
|
|
|
|
2015-08-30 10:31:16 -04:00
|
|
|
return $this->filterSimilar($activityList);
|
2015-08-30 06:47:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-02-16 16:25:11 -05:00
|
|
|
* Gets the latest activity for an entity, Filtering out similar
|
2015-08-30 06:47:58 -04:00
|
|
|
* items to prevent a message activity list.
|
|
|
|
*/
|
2020-04-10 15:55:33 -04:00
|
|
|
public function entityActivity(Entity $entity, int $count = 20, int $page = 1): array
|
2015-08-30 06:47:58 -04:00
|
|
|
{
|
2020-11-07 18:15:13 -05:00
|
|
|
/** @var [string => int[]] $queryIds */
|
|
|
|
$queryIds = [$entity->getMorphClass() => [$entity->id]];
|
|
|
|
|
2016-04-24 11:54:20 -04:00
|
|
|
if ($entity->isA('book')) {
|
2020-11-07 18:15:13 -05:00
|
|
|
$queryIds[(new Chapter)->getMorphClass()] = $entity->chapters()->visible()->pluck('id');
|
|
|
|
}
|
|
|
|
if ($entity->isA('book') || $entity->isA('chapter')) {
|
|
|
|
$queryIds[(new Page)->getMorphClass()] = $entity->pages()->visible()->pluck('id');
|
2016-04-24 11:54:20 -04:00
|
|
|
}
|
2020-07-28 07:59:43 -04:00
|
|
|
|
2020-11-07 18:15:13 -05:00
|
|
|
$query = $this->activity->newQuery();
|
|
|
|
$query->where(function (Builder $query) use ($queryIds) {
|
|
|
|
foreach ($queryIds as $morphClass => $idArr) {
|
|
|
|
$query->orWhere(function (Builder $innerQuery) use ($morphClass, $idArr) {
|
|
|
|
$innerQuery->where('entity_type', '=', $morphClass)
|
|
|
|
->whereIn('entity_id', $idArr);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$activity = $query->orderBy('created_at', 'desc')
|
2020-11-07 09:28:50 -05:00
|
|
|
->with(['entity' => function (Relation $query) {
|
|
|
|
$query->withTrashed();
|
|
|
|
}, 'user.avatar'])
|
2019-05-05 10:54:22 -04:00
|
|
|
->skip($count * ($page - 1))
|
|
|
|
->take($count)
|
|
|
|
->get();
|
2015-08-30 06:47:58 -04:00
|
|
|
|
|
|
|
return $this->filterSimilar($activity);
|
|
|
|
}
|
|
|
|
|
2016-02-16 16:25:11 -05:00
|
|
|
/**
|
2020-04-10 15:55:33 -04:00
|
|
|
* Get latest activity for a user, Filtering out similar items.
|
2016-02-16 16:25:11 -05:00
|
|
|
*/
|
2020-04-10 15:55:33 -04:00
|
|
|
public function userActivity(User $user, int $count = 20, int $page = 0): array
|
2016-02-16 16:25:11 -05:00
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
$activityList = $this->permissionService
|
2021-03-14 15:52:07 -04:00
|
|
|
->filterRestrictedEntityRelations($this->activity->newQuery(), 'activities', 'entity_id', 'entity_type')
|
2020-04-10 15:55:33 -04:00
|
|
|
->orderBy('created_at', 'desc')
|
|
|
|
->where('user_id', '=', $user->id)
|
|
|
|
->skip($count * $page)
|
|
|
|
->take($count)
|
2020-04-10 17:49:52 -04:00
|
|
|
->get();
|
2020-04-10 15:55:33 -04:00
|
|
|
|
2016-03-06 08:17:46 -05:00
|
|
|
return $this->filterSimilar($activityList);
|
2016-02-16 16:25:11 -05:00
|
|
|
}
|
|
|
|
|
2015-08-30 06:47:58 -04:00
|
|
|
/**
|
2016-01-01 04:03:40 -05:00
|
|
|
* Filters out similar activity.
|
2016-02-16 16:25:11 -05:00
|
|
|
* @param Activity[] $activities
|
2015-08-30 06:47:58 -04:00
|
|
|
* @return array
|
|
|
|
*/
|
2020-04-10 15:55:33 -04:00
|
|
|
protected function filterSimilar(iterable $activities): array
|
2015-08-30 10:31:16 -04:00
|
|
|
{
|
2015-08-30 06:47:58 -04:00
|
|
|
$newActivity = [];
|
2020-04-10 15:55:33 -04:00
|
|
|
$previousItem = null;
|
|
|
|
|
2016-02-16 16:25:11 -05:00
|
|
|
foreach ($activities as $activityItem) {
|
2020-04-10 15:55:33 -04:00
|
|
|
if (!$previousItem || !$activityItem->isSimilarTo($previousItem)) {
|
2015-08-30 06:47:58 -04:00
|
|
|
$newActivity[] = $activityItem;
|
|
|
|
}
|
2020-04-10 15:55:33 -04:00
|
|
|
|
2015-08-30 06:47:58 -04:00
|
|
|
$previousItem = $activityItem;
|
|
|
|
}
|
2020-04-10 15:55:33 -04:00
|
|
|
|
2015-08-30 06:47:58 -04:00
|
|
|
return $newActivity;
|
2015-08-16 15:11:21 -04:00
|
|
|
}
|
|
|
|
|
2015-08-29 11:00:19 -04:00
|
|
|
/**
|
|
|
|
* Flashes a notification message to the session if an appropriate message is available.
|
|
|
|
*/
|
2020-11-07 19:03:19 -05:00
|
|
|
protected function setNotification(string $type)
|
2015-08-29 11:00:19 -04:00
|
|
|
{
|
2020-11-07 19:03:19 -05:00
|
|
|
$notificationTextKey = 'activities.' . $type . '_notification';
|
2015-08-29 11:00:19 -04:00
|
|
|
if (trans()->has($notificationTextKey)) {
|
|
|
|
$message = trans($notificationTextKey);
|
2019-09-19 13:03:17 -04:00
|
|
|
session()->flash('success', $message);
|
2015-08-29 11:00:19 -04:00
|
|
|
}
|
|
|
|
}
|
2020-05-23 09:37:38 -04:00
|
|
|
|
|
|
|
/**
|
2020-07-28 07:59:43 -04:00
|
|
|
* Log out a failed login attempt, Providing the given username
|
|
|
|
* as part of the message if the '%u' string is used.
|
|
|
|
*/
|
|
|
|
public function logFailedLogin(string $username)
|
2020-05-23 09:37:38 -04:00
|
|
|
{
|
2020-07-28 07:59:43 -04:00
|
|
|
$message = config('logging.failed_login.message');
|
|
|
|
if (!$message) {
|
2020-05-23 09:37:38 -04:00
|
|
|
return;
|
2020-07-28 07:59:43 -04:00
|
|
|
}
|
2020-05-23 09:37:38 -04:00
|
|
|
|
2020-07-28 07:59:43 -04:00
|
|
|
$message = str_replace("%u", $username, $message);
|
|
|
|
$channel = config('logging.failed_login.channel');
|
|
|
|
Log::channel($channel)->warning($message);
|
2020-05-23 09:37:38 -04:00
|
|
|
}
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|