-
-
Notifications
You must be signed in to change notification settings - Fork 622
Expand file tree
/
Copy pathCpController.php
More file actions
79 lines (68 loc) · 1.88 KB
/
CpController.php
File metadata and controls
79 lines (68 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
namespace Statamic\Http\Controllers\CP;
use Illuminate\Auth\Access\AuthorizationException as LaravelAuthException;
use Illuminate\Http\Request;
use Inertia\Inertia;
use Statamic\Exceptions\AuthorizationException;
use Statamic\Exceptions\ElevatedSessionAuthorizationException;
use Statamic\Http\Controllers\Controller;
use Statamic\Statamic;
/**
* The base control panel controller.
*/
class CpController extends Controller
{
/**
* @var \Illuminate\Http\Request
*/
protected $request;
/**
* Create a new CpController.
*/
public function __construct(Request $request)
{
$this->request = $request;
}
/**
* 404.
*/
public function pageNotFound()
{
return Inertia::render('errors/404')
->toResponse(request())
->setStatusCode(404);
}
public function authorize($ability, $args = [], $message = null)
{
$message = $message ?? __('This action is unauthorized.');
try {
return parent::authorize($ability, $args);
} catch (LaravelAuthException $e) {
throw new AuthorizationException($message);
}
}
public function authorizeIf($condition, $ability, $args = [], $message = null)
{
if ($condition) {
return $this->authorize($ability, $args, $message);
}
}
public function authorizePro()
{
if (! Statamic::pro()) {
throw new AuthorizationException(__('Statamic Pro is required.'));
}
}
public function authorizeProIf($condition)
{
if ($condition) {
return $this->authorizePro();
}
}
public function requireElevatedSession(): void
{
if (config('statamic.users.elevated_sessions_enabled') && ! request()->hasElevatedSession()) {
throw new ElevatedSessionAuthorizationException;
}
}
}