-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathUrl.php
66 lines (55 loc) · 1.8 KB
/
Url.php
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
<?php
declare(strict_types=1);
namespace ClawRock\Debug\Helper;
use ClawRock\Debug\Model\Profiler;
use Magento\Framework\App\Area;
use Magento\Framework\HTTP\PhpEnvironment\Request;
class Url
{
public const CONFIGURATION_URL_PATH = 'debug/profiler/config';
public const PROFILER_URL_PATH = '_debug/profiler/info';
private \Magento\Framework\UrlInterface $url;
private \Magento\Backend\Model\UrlInterface $backendUrl;
public function __construct(
\Magento\Framework\Url $url,
\Magento\Backend\Model\UrlInterface $backendUrl
) {
$this->url = $url;
$this->backendUrl = $backendUrl;
}
public function getAdminUrl(): string
{
return $this->backendUrl->getRouteUrl(Area::AREA_ADMINHTML);
}
public function getConfigurationUrl(): string
{
return $this->backendUrl->getUrl(self::CONFIGURATION_URL_PATH);
}
public function getProfilerUrl(?string $token = null, ?string $panel = null): string
{
$params = [];
if ($token) {
$params[Profiler::URL_TOKEN_PARAMETER] = $token;
}
if ($panel) {
$params[Profiler::URL_PANEL_PARAMETER] = $panel;
}
return $this->url->getUrl(self::PROFILER_URL_PATH, $params);
}
public function getToolbarUrl(string $token): string
{
return $this->url->getUrl('_debug/profiler/toolbar', [
Profiler::URL_TOKEN_PARAMETER => $token,
'_nosid' => true,
]);
}
public function getRequestFullActionName(Request $request): string
{
try {
// @phpstan-ignore-next-line
return $request->getRouteName() . '_' . $request->getControllerName() . '_' . $request->getActionName();
} catch (\Exception $e) {
return 'unknown';
}
}
}