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;
|
2019-10-05 07:55:01 -04:00
|
|
|
use BookStack\Entities\Book;
|
2018-09-25 07:30:50 -04:00
|
|
|
use BookStack\Entities\Entity;
|
2015-08-16 13:59:23 -04:00
|
|
|
|
|
|
|
class ActivityService
|
|
|
|
{
|
|
|
|
protected $activity;
|
|
|
|
protected $user;
|
2016-05-01 16:20:50 -04:00
|
|
|
protected $permissionService;
|
2015-08-16 13:59:23 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ActivityService constructor.
|
2019-09-19 13:03:17 -04:00
|
|
|
* @param Activity $activity
|
2016-05-01 16:20:50 -04:00
|
|
|
* @param PermissionService $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;
|
2016-09-29 07:43:46 -04:00
|
|
|
$this->user = user();
|
2015-08-16 13:59:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add activity data to database.
|
2019-09-19 13:03:17 -04:00
|
|
|
* @param \BookStack\Entities\Entity $entity
|
|
|
|
* @param string $activityKey
|
2016-03-06 08:17:46 -05:00
|
|
|
* @param int $bookId
|
2015-08-16 13:59:23 -04:00
|
|
|
*/
|
2019-09-19 13:03:17 -04:00
|
|
|
public function add(Entity $entity, string $activityKey, int $bookId = null)
|
2015-08-16 13:59:23 -04:00
|
|
|
{
|
2019-09-19 13:03:17 -04:00
|
|
|
$activity = $this->newActivityForUser($activityKey, $bookId);
|
2016-02-18 14:32:07 -05:00
|
|
|
$entity->activity()->save($activity);
|
2015-08-29 11:00:19 -04:00
|
|
|
$this->setNotification($activityKey);
|
2015-08-16 13:59:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-09-19 13:03:17 -04:00
|
|
|
* Adds a activity history with a message, without binding to a entity.
|
|
|
|
* @param string $activityKey
|
|
|
|
* @param string $message
|
2016-03-06 08:17:46 -05:00
|
|
|
* @param int $bookId
|
2015-08-16 13:59:23 -04:00
|
|
|
*/
|
2019-09-19 13:03:17 -04:00
|
|
|
public function addMessage(string $activityKey, string $message, int $bookId = null)
|
2015-08-16 13:59:23 -04:00
|
|
|
{
|
2019-09-19 13:03:17 -04:00
|
|
|
$this->newActivityForUser($activityKey, $bookId)->forceFill([
|
|
|
|
'extra' => $message
|
|
|
|
])->save();
|
|
|
|
|
2015-08-29 11:00:19 -04:00
|
|
|
$this->setNotification($activityKey);
|
2015-08-16 13:59:23 -04:00
|
|
|
}
|
|
|
|
|
2019-09-19 13:03:17 -04:00
|
|
|
/**
|
|
|
|
* Get a new activity instance for the current user.
|
|
|
|
* @param string $key
|
|
|
|
* @param int|null $bookId
|
|
|
|
* @return Activity
|
|
|
|
*/
|
|
|
|
protected function newActivityForUser(string $key, int $bookId = null)
|
|
|
|
{
|
|
|
|
return $this->activity->newInstance()->forceFill([
|
|
|
|
'key' => strtolower($key),
|
|
|
|
'user_id' => $this->user->id,
|
|
|
|
'book_id' => $bookId ?? 0,
|
|
|
|
]);
|
|
|
|
}
|
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.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @param \BookStack\Entities\Entity $entity
|
2015-08-23 09:20:34 -04:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function removeEntity(Entity $entity)
|
|
|
|
{
|
2019-09-19 19:18:28 -04:00
|
|
|
// TODO - Rewrite to db query.
|
2015-08-23 09:20:34 -04:00
|
|
|
$activities = $entity->activity;
|
2015-08-30 06:47:58 -04:00
|
|
|
foreach ($activities as $activity) {
|
2015-08-23 09:20:34 -04:00
|
|
|
$activity->extra = $entity->name;
|
|
|
|
$activity->entity_id = 0;
|
|
|
|
$activity->entity_type = null;
|
|
|
|
$activity->save();
|
|
|
|
}
|
|
|
|
return $activities;
|
|
|
|
}
|
|
|
|
|
2015-08-16 15:11:21 -04:00
|
|
|
/**
|
|
|
|
* Gets the latest activity.
|
|
|
|
* @param int $count
|
|
|
|
* @param int $page
|
2015-08-30 10:31:16 -04:00
|
|
|
* @return array
|
2015-08-16 15:11:21 -04:00
|
|
|
*/
|
|
|
|
public function latest($count = 20, $page = 0)
|
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
$activityList = $this->permissionService
|
2016-02-28 14:03:04 -05:00
|
|
|
->filterRestrictedEntityRelations($this->activity, 'activities', 'entity_id', 'entity_type')
|
2019-09-19 13:03:17 -04:00
|
|
|
->orderBy('created_at', 'desc')
|
|
|
|
->with('user', 'entity')
|
|
|
|
->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.
|
2019-10-05 07:55:01 -04:00
|
|
|
* @param \BookStack\Entities\Entity $entity
|
2016-03-06 08:17:46 -05:00
|
|
|
* @param int $count
|
|
|
|
* @param int $page
|
2015-08-30 06:47:58 -04:00
|
|
|
* @return array
|
|
|
|
*/
|
2019-02-03 08:45:45 -05:00
|
|
|
public function entityActivity($entity, $count = 20, $page = 1)
|
2015-08-30 06:47:58 -04:00
|
|
|
{
|
2016-04-24 11:54:20 -04:00
|
|
|
if ($entity->isA('book')) {
|
|
|
|
$query = $this->activity->where('book_id', '=', $entity->id);
|
|
|
|
} else {
|
2019-05-05 10:54:22 -04:00
|
|
|
$query = $this->activity->where('entity_type', '=', $entity->getMorphClass())
|
2016-04-24 11:54:20 -04:00
|
|
|
->where('entity_id', '=', $entity->id);
|
|
|
|
}
|
|
|
|
|
2016-05-01 16:20:50 -04:00
|
|
|
$activity = $this->permissionService
|
2016-04-24 11:54:20 -04:00
|
|
|
->filterRestrictedEntityRelations($query, 'activities', 'entity_id', 'entity_type')
|
2019-05-05 10:54:22 -04:00
|
|
|
->orderBy('created_at', 'desc')
|
|
|
|
->with(['entity', 'user.avatar'])
|
|
|
|
->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
|
|
|
/**
|
|
|
|
* Get latest activity for a user, Filtering out similar
|
|
|
|
* items.
|
|
|
|
* @param $user
|
|
|
|
* @param int $count
|
|
|
|
* @param int $page
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function userActivity($user, $count = 20, $page = 0)
|
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
$activityList = $this->permissionService
|
2016-03-06 08:17:46 -05:00
|
|
|
->filterRestrictedEntityRelations($this->activity, 'activities', 'entity_id', 'entity_type')
|
|
|
|
->orderBy('created_at', 'desc')->where('user_id', '=', $user->id)->skip($count * $page)->take($count)->get();
|
|
|
|
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
|
|
|
|
*/
|
2016-02-16 16:25:11 -05:00
|
|
|
protected function filterSimilar($activities)
|
2015-08-30 10:31:16 -04:00
|
|
|
{
|
2015-08-30 06:47:58 -04:00
|
|
|
$newActivity = [];
|
|
|
|
$previousItem = false;
|
2016-02-16 16:25:11 -05:00
|
|
|
foreach ($activities as $activityItem) {
|
2015-08-30 10:31:16 -04:00
|
|
|
if ($previousItem === false) {
|
2015-08-30 06:47:58 -04:00
|
|
|
$previousItem = $activityItem;
|
|
|
|
$newActivity[] = $activityItem;
|
|
|
|
continue;
|
|
|
|
}
|
2015-08-30 10:31:16 -04:00
|
|
|
if (!$activityItem->isSimilarTo($previousItem)) {
|
2015-08-30 06:47:58 -04:00
|
|
|
$newActivity[] = $activityItem;
|
|
|
|
}
|
|
|
|
$previousItem = $activityItem;
|
|
|
|
}
|
|
|
|
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.
|
|
|
|
* @param $activityKey
|
|
|
|
*/
|
|
|
|
protected function setNotification($activityKey)
|
|
|
|
{
|
|
|
|
$notificationTextKey = 'activities.' . $activityKey . '_notification';
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|