-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModule.php
More file actions
236 lines (201 loc) · 5.89 KB
/
Module.php
File metadata and controls
236 lines (201 loc) · 5.89 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?php
namespace humhub\modules\firewall;
use Yii;
use humhub\components\Module as BaseModule;
use humhub\modules\firewall\models\FirewallRule;
use humhub\modules\firewall\components\FirewallManager;
/**
* Firewall Module
*
* Provides IP-based firewall functionality for HumHub installations
*/
class Module extends BaseModule
{
/**
* @inheritdoc
*/
public $resourcesPath = 'resources';
/**
* @inheritdoc
*/
public $isCoreModule = true;
/**
* @var bool Whether to enable the firewall on every request
*/
public $enableFirewall = true;
/**
* @var string Default action for IPs not matching any rule ('allow' or 'deny')
*/
public $defaultAction = 'allow';
/**
* @var string The view to render when access is denied
*/
public $denyView = '@firewall/views/deny/index';
/**
* @var array List of route patterns that should be excluded from firewall checks
*/
public $excludedRoutes = [
'admin/*',
'firewall/*'
];
/**
* @var array List of routes that should be protected by the firewall
*/
public $protectedRoutes = [
'dashboard',
'user/auth/login',
];
public function init()
{
parent::init();
if (!Yii::$app->has('manager')) {
Yii::$app->set('manager', [
'class' => FirewallManager::class,
]);
}
if ($this->enableFirewall) {
Yii::$app->on(\yii\web\Application::EVENT_BEFORE_REQUEST, [$this, 'checkFirewall']);
}
if ($tourModule = Yii::$app->getModule('tour')) {
$tourFile = __DIR__ . '/tours/firewall-admin.php';
if (file_exists($tourFile) && !in_array($tourFile, $tourModule->tourConfigFiles)) {
$tourModule->tourConfigFiles[] = $tourFile;
}
}
}
/**
* @inheritdoc
*/
public function getConfigUrl()
{
return Yii::$app->createUrl('/firewall/admin');
}
/**
* @inheritdoc
*/
public function disable()
{
return false;
}
/**
* @inheritdoc
*/
public function getPermissions($contentContainer = null)
{
if ($contentContainer === null) {
return [
new permissions\ManageFirewall(),
];
}
return [];
}
/**
* Checks if the firewall is enabled
*
* @return bool whether the firewall is enabled
*/
protected function isFirewallEnabled()
{
return Yii::$app->getModule('firewall')->settings->get('enabled', true);
}
/**
* Checks if the current IP is allowed according to firewall rules
*
* @param string|null $ip IP address to check (defaults to current user IP)
* @return bool whether access is allowed
*/
public function checkAccess($ip = null)
{
if (!$this->isFirewallEnabled()) {
return true;
}
if ($ip === null) {
$ip = Yii::$app->request->userIP;
}
$currentRoute = $this->getCurrentRoute();
if ($currentRoute !== null) {
foreach ($this->excludedRoutes as $excludedRoute) {
if (fnmatch($excludedRoute, $currentRoute)) {
return true;
}
}
}
$firewallManager = Yii::$app->get('manager');
if (!$firewallManager) {
Yii::error("Firewall manager component not found", 'firewall');
return true;
}
return $firewallManager->checkAccess($ip);
}
/**
* Gets the current route in a reliable way
*
* @return string|null The current route or null if not available
*/
protected function getCurrentRoute()
{
if (Yii::$app->controller) {
return Yii::$app->controller->route;
}
return Yii::$app->requestedRoute;
}
/**
* Event handler for checking firewall rules
*/
public function checkFirewall()
{
if (Yii::$app instanceof \yii\console\Application) {
return;
}
$ip = Yii::$app->request->userIP;
$currentRoute = $this->getCurrentRoute();
if ($currentRoute !== null) {
foreach ($this->excludedRoutes as $excludedRoute) {
if (fnmatch($excludedRoute, $currentRoute)) {
return;
}
}
}
$isProtectedRoute = false;
if ($currentRoute !== null) {
foreach ($this->protectedRoutes as $protectedRoute) {
if (fnmatch($protectedRoute, $currentRoute)) {
$isProtectedRoute = true;
break;
}
}
}
if (!$isProtectedRoute) {
return;
}
$firewallManager = Yii::$app->get('manager');
if (!$firewallManager) {
Yii::error("Firewall manager not found", 'firewall');
return;
}
$allowed = $firewallManager->checkAccess($ip);
if (!$allowed) {
Yii::$app->response->statusCode = 403;
Yii::$app->response->content = Yii::$app->view->render($this->denyView, [
'ip' => $ip,
'route' => $currentRoute
]);
Yii::$app->response->send();
Yii::$app->end();
}
}
/**
* @inheritdoc
*/
public function getName()
{
return Yii::t('FirewallModule.base', 'Firewall');
}
/**
* @inheritdoc
*/
public function getDescription()
{
return Yii::t('FirewallModule.base', 'Provides IP-based access control for your HumHub installation');
}
}