mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
64 lines
1.4 KiB
PHP
64 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Http\Requests\Report;
|
|
|
|
use App\Utils\Ninja;
|
|
use App\Http\Requests\Request;
|
|
use Illuminate\Auth\Access\AuthorizationException;
|
|
|
|
class ReportPreviewRequest extends Request
|
|
{
|
|
private string $error_message = '';
|
|
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return $this->checkAuthority();
|
|
}
|
|
|
|
public function rules()
|
|
{
|
|
return [
|
|
];
|
|
}
|
|
|
|
public function prepareForValidation()
|
|
{
|
|
}
|
|
|
|
private function checkAuthority()
|
|
{
|
|
$this->error_message = ctrans('texts.authorization_failure');
|
|
|
|
/** @var \App\Models\User $user */
|
|
$user = auth()->user();
|
|
|
|
if(Ninja::isHosted() && $user->account->isFreeHostedClient()){
|
|
$this->error_message = ctrans('texts.upgrade_to_view_reports');
|
|
return false;
|
|
}
|
|
|
|
return $user->isAdmin() || $user->hasPermission('view_reports');
|
|
|
|
}
|
|
|
|
protected function failedAuthorization()
|
|
{
|
|
throw new AuthorizationException($this->error_message);
|
|
}
|
|
|
|
}
|