1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace App; |
4
|
|
|
|
5
|
|
|
use Psr\Http\Message\ResponseInterface; |
6
|
|
|
use Yiisoft\Aliases\Aliases; |
7
|
|
|
use Yiisoft\Strings\Inflector; |
8
|
|
|
use Yiisoft\View\ViewContextInterface; |
9
|
|
|
use Yiisoft\View\WebView; |
10
|
|
|
use Yiisoft\Yii\Web\Data\DataResponseFactoryInterface; |
11
|
|
|
use Yiisoft\Yii\Web\User\User; |
12
|
|
|
|
13
|
|
|
abstract class Controller implements ViewContextInterface |
14
|
|
|
{ |
15
|
|
|
protected static ?string $controllerName = null; |
16
|
|
|
protected DataResponseFactoryInterface $responseFactory; |
17
|
|
|
protected User $user; |
18
|
|
|
|
19
|
|
|
private Aliases $aliases; |
20
|
|
|
private WebView $view; |
21
|
|
|
private string $layout; |
22
|
|
|
|
23
|
|
|
public function __construct( |
24
|
|
|
DataResponseFactoryInterface $responseFactory, |
25
|
|
|
User $user, |
26
|
|
|
Aliases $aliases, |
27
|
|
|
WebView $view |
28
|
|
|
) { |
29
|
|
|
$this->responseFactory = $responseFactory; |
30
|
|
|
$this->user = $user; |
31
|
|
|
$this->aliases = $aliases; |
32
|
|
|
$this->view = $view; |
33
|
|
|
$this->layout = $aliases->get('@views') . '/layout/main'; |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
protected function render(string $view, array $parameters = []): ResponseInterface |
37
|
|
|
{ |
38
|
|
|
$contentRenderer = fn () => $this->renderProxy($view, $parameters); |
39
|
|
|
|
40
|
|
|
return $this->responseFactory->createResponse($contentRenderer); |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
protected function renderPartial(string $view, array $parameters = []): ResponseInterface |
44
|
|
|
{ |
45
|
|
|
$content = $this->view->render($view, $parameters, $this); |
46
|
|
|
|
47
|
|
|
return $this->responseFactory->createResponse($content); |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
private function renderProxy(string $view, array $parameters = []): string |
51
|
|
|
{ |
52
|
|
|
$content = $this->view->render($view, $parameters, $this); |
53
|
|
|
$user = $this->user->getIdentity(); |
54
|
|
|
$layout = $this->findLayoutFile($this->layout); |
55
|
|
|
|
56
|
|
|
if ($layout === null) { |
|
|
|
|
57
|
|
|
return $content; |
58
|
|
|
} |
59
|
|
|
return $this->view->renderFile( |
60
|
|
|
$layout, |
61
|
|
|
[ |
62
|
|
|
'content' => $content, |
63
|
|
|
'user' => $user, |
64
|
|
|
], |
65
|
|
|
$this |
66
|
|
|
); |
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
public function getViewPath(): string |
70
|
|
|
{ |
71
|
|
|
return $this->aliases->get('@views') . '/' . self::getName(); |
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
private function findLayoutFile(?string $file): ?string |
75
|
|
|
{ |
76
|
|
|
if ($file === null) { |
77
|
|
|
return null; |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
if (pathinfo($file, PATHINFO_EXTENSION) !== '') { |
81
|
|
|
return $file; |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
return $file . '.' . $this->view->getDefaultExtension(); |
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
/** |
88
|
|
|
* Returns the controller name. Name should be converted to "id" case. |
89
|
|
|
* |
90
|
|
|
* @return string |
91
|
|
|
* @example If class named MySiteController method will return my-site |
92
|
|
|
* @see Inflector::camel2id() |
93
|
|
|
*/ |
94
|
|
|
protected static function getName(): string |
95
|
|
|
{ |
96
|
|
|
if (static::$controllerName !== null) { |
97
|
|
|
return static::$controllerName; |
98
|
|
|
} |
99
|
|
|
|
100
|
|
|
$name = preg_replace('/(?:.*\\\)([a-z]+)(controller)/iu', '$1', static::class); |
101
|
|
|
$inflector = new Inflector(); |
102
|
|
|
|
103
|
|
|
return $inflector->camel2id($name); |
104
|
|
|
} |
105
|
|
|
} |
106
|
|
|
|