-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathApplicationHandler.class.php
More file actions
342 lines (296 loc) · 9.73 KB
/
ApplicationHandler.class.php
File metadata and controls
342 lines (296 loc) · 9.73 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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
<?php
namespace wcf\system\application;
use wcf\data\application\Application;
use wcf\data\application\ApplicationAction;
use wcf\data\application\ApplicationList;
use wcf\data\package\Package;
use wcf\system\cache\builder\ApplicationCacheBuilder;
use wcf\system\request\RequestHandler;
use wcf\system\request\RouteHandler;
use wcf\system\SingletonFactory;
use wcf\system\WCF;
use wcf\util\ArrayUtil;
use wcf\util\FileUtil;
use wcf\util\StringUtil;
use wcf\util\Url;
/**
* Handles multi-application environments.
*
* @author Alexander Ebert
* @copyright 2001-2019 WoltLab GmbH
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
*/
final class ApplicationHandler extends SingletonFactory
{
/**
* @var array{
* abbreviation: array<string, int>,
* application: array<int, Application>,
* sortedPaths: array<int, string>,
* rootApplication: ?int,
* }
*/
private array $cache;
/**
* list of page URLs
* @var string[]
*/
private array $pageURLs;
/**
* Initializes cache.
*/
protected function init()
{
$this->cache = ApplicationCacheBuilder::getInstance()->getData();
}
/**
* Returns an application based upon it's abbreviation. Will return the
* primary application if the abbreviation is `wcf` or `null` if no such
* application exists.
*
* @param $abbreviation package abbreviation, e.g. `wbb` for `com.woltlab.wbb`
*/
public function getApplication(string $abbreviation): ?Application
{
if (isset($this->cache['abbreviation'][$abbreviation])) {
$packageID = $this->cache['abbreviation'][$abbreviation];
if (isset($this->cache['application'][$packageID])) {
return $this->cache['application'][$packageID];
}
}
return null;
}
/**
* Returns an application delivered by the package with the given id or `null`
* if no such application exists.
*
* @since 3.0
*/
public function getApplicationByID(int $packageID): ?Application
{
return $this->cache['application'][$packageID] ?? null;
}
/**
* Returns pseudo-application representing WCF used for special cases,
* e.g. cross-domain files requestable through the webserver.
*/
public function getWCF(): Application
{
return $this->getApplicationByID(1);
}
/**
* Returns the currently active application.
*/
public function getActiveApplication(): Application
{
// work-around during WCFSetup
if (!PACKAGE_ID) {
$host = \str_replace(RouteHandler::getProtocol(), '', RouteHandler::getHost());
$documentRoot = FileUtil::addTrailingSlash(FileUtil::unifyDirSeparator(\realpath($_SERVER['DOCUMENT_ROOT'])));
// always use the core directory
if (empty($_POST['directories']) || empty($_POST['directories']['wcf'])) {
// within ACP
$_POST['directories'] = ['wcf' => $documentRoot . FileUtil::removeLeadingSlash(RouteHandler::getPath(['acp']))];
}
$path = FileUtil::addLeadingSlash(FileUtil::addTrailingSlash(FileUtil::unifyDirSeparator(FileUtil::getRelativePath(
$documentRoot,
$_POST['directories']['wcf']
))));
return new Application(null, [
'domainName' => $host,
'domainPath' => $path,
'cookieDomain' => $host,
]);
}
$request = RequestHandler::getInstance()->getActiveRequest();
if ($request !== null) {
[$abbreviation] = \explode('\\', $request->getClassName(), 2);
return $this->getApplication($abbreviation);
}
if (isset($this->cache['application'][PACKAGE_ID])) {
return $this->cache['application'][PACKAGE_ID];
}
return $this->getWCF();
}
/**
* Returns a list of dependent applications.
*
* @return Application[]
*/
public function getDependentApplications(): array
{
$applications = $this->getApplications();
foreach ($applications as $key => $application) {
if ($application->packageID == $this->getActiveApplication()->packageID) {
unset($applications[$key]);
break;
}
}
return $applications;
}
/**
* Returns a list of all active applications.
*
* @return Application[]
*/
public function getApplications(): array
{
return $this->cache['application'];
}
/**
* Returns abbreviation for a given package id or `null` if application is unknown.
*/
public function getAbbreviation(int $packageID): ?string
{
foreach ($this->cache['abbreviation'] as $abbreviation => $applicationID) {
if ($packageID == $applicationID) {
return $abbreviation;
}
}
return null;
}
/**
* Returns the list of application abbreviations.
*
* @return string[]
* @since 3.1
*/
public function getAbbreviations(): array
{
return \array_keys($this->cache['abbreviation']);
}
/**
* Returns true if given $url is an internal URL.
*/
public function isInternalURL(string $url): bool
{
if (!isset($this->pageURLs)) {
$internalHostnames = ArrayUtil::trim(\explode("\n", StringUtil::unifyNewlines(\INTERNAL_HOSTNAMES)));
$this->pageURLs = \array_unique([
$this->getDomainName(),
...$internalHostnames,
]);
}
$host = Url::parse($url)['host'];
// Relative URLs are internal.
if (!$host) {
return true;
}
return Url::getHostnameMatcher($this->pageURLs)($host);
}
/**
* Always returns false.
*
* @since 3.1
* @deprecated 5.4
*/
public function isMultiDomainSetup(): bool
{
return false;
}
/**
* @since 5.2
* @deprecated 5.5 - This function is a noop. The 'active' status is determined live.
*/
public function rebuildActiveApplication(): void {}
/**
* @since 6.0
*/
public function getDomainName(): string
{
return $this->getApplicationByID(1)->domainName;
}
/**
* Returns a list of the domain paths of all apps sorted by their length
* with the longest value appearing first. The key of each path is the
* package id of the corresponding app.
*
* @return array<int, string>
* @since 6.2
*/
public function getSortedPaths(): array
{
return $this->cache['sortedPaths'];
}
/**
* Returns the app that is the root of all other apps. This is the case when
* all other apps installed in a direct or indirect subdirectory.
*
* @since 6.2
*/
public function getRootApplication(): ?Application
{
if ($this->cache['rootApplication'] === null) {
return null;
}
$rootApp = $this->getApplicationByID($this->cache['rootApplication']);
\assert($rootApp !== null);
return $rootApp;
}
/**
* Rebuilds cookie domain/path for all applications.
*/
public static function rebuild(): void
{
$applicationList = new ApplicationList();
$applicationList->readObjects();
$applicationAction = new ApplicationAction($applicationList->getObjects(), 'rebuild');
$applicationAction->executeAction();
}
/**
* Replaces `app1_` in the given string with the correct installation number:
* `app{WCF_N_}`.
*
* This method can either be used for database table names directly or for
* queries, for example.
*
* @param $skipCache if `true`, no caches will be used and relevant application packages will be read from database directly
* @since 5.2
*/
public static function insertRealDatabaseTableNames(string $string, bool $skipCache = false): string
{
// This method is a no-op if WCF_N is 1 which is also the most common case.
// Bypass the complete logic, as it can be expensive, especially for the $skipCache = true
// case used during package installation.
if (\WCF_N === 1) {
return $string;
}
if ($skipCache) {
$sql = "SELECT package
FROM wcf" . WCF_N . "_package
WHERE isApplication = ?";
$statement = WCF::getDB()->prepareUnmanaged($sql);
$statement->execute([1]);
$packages = $statement->fetchAll(\PDO::FETCH_COLUMN);
$abbreviations = \implode(
'|',
\array_map(static function (string $package): string {
return \preg_quote(Package::getAbbreviation($package), '~');
}, $packages)
);
$regex = "~(\\b(?:{$abbreviations}))1_~";
$string = \preg_replace(
$regex,
'${1}' . WCF_N . '_',
$string
);
} else {
static $regex = null;
if ($regex === null) {
$abbreviations = \implode(
'|',
\array_map(static function (Application $app): string {
return \preg_quote($app->getAbbreviation(), '~');
}, static::getInstance()->getApplications())
);
$regex = "~(\\b(?:{$abbreviations}))1_~";
}
$string = \preg_replace(
$regex,
'${1}' . WCF_N . '_',
$string
);
}
return $string;
}
}