mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-26 02:10:19 +08:00
64 lines
1.9 KiB
PHP
64 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace BookStack\Activity\Controllers;
|
|
|
|
use BookStack\Activity\Models\Watch;
|
|
use BookStack\Activity\Tools\UserEntityWatchOptions;
|
|
use BookStack\App\Model;
|
|
use BookStack\Entities\Models\Entity;
|
|
use BookStack\Http\Controller;
|
|
use Exception;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
class WatchController extends Controller
|
|
{
|
|
public function update(Request $request)
|
|
{
|
|
$requestData = $this->validate($request, [
|
|
'level' => ['required', 'string'],
|
|
]);
|
|
|
|
$watchable = $this->getValidatedModelFromRequest($request);
|
|
$watchOptions = new UserEntityWatchOptions(user(), $watchable);
|
|
$watchOptions->updateWatchLevel($requestData['level']);
|
|
|
|
$this->showSuccessNotification(trans('activities.watch_update_level_notification'));
|
|
|
|
return redirect()->back();
|
|
}
|
|
|
|
/**
|
|
* @throws ValidationException
|
|
* @throws Exception
|
|
*/
|
|
protected function getValidatedModelFromRequest(Request $request): Entity
|
|
{
|
|
$modelInfo = $this->validate($request, [
|
|
'type' => ['required', 'string'],
|
|
'id' => ['required', 'integer'],
|
|
]);
|
|
|
|
if (!class_exists($modelInfo['type'])) {
|
|
throw new Exception('Model not found');
|
|
}
|
|
|
|
/** @var Model $model */
|
|
$model = new $modelInfo['type']();
|
|
if (!$model instanceof Entity) {
|
|
throw new Exception('Model not an entity');
|
|
}
|
|
|
|
$modelInstance = $model->newQuery()
|
|
->where('id', '=', $modelInfo['id'])
|
|
->first(['id', 'name', 'owned_by']);
|
|
|
|
$inaccessibleEntity = ($modelInstance instanceof Entity && !userCan('view', $modelInstance));
|
|
if (is_null($modelInstance) || $inaccessibleEntity) {
|
|
throw new Exception('Model instance not found');
|
|
}
|
|
|
|
return $modelInstance;
|
|
}
|
|
}
|