-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpanNaming.php
More file actions
139 lines (115 loc) · 3.05 KB
/
SpanNaming.php
File metadata and controls
139 lines (115 loc) · 3.05 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
<?php
namespace Perfbase\Drupal\Support;
use Symfony\Component\HttpFoundation\Request;
/**
*
*/
class SpanNaming {
/**
*
*/
public static function forHttp(Request $request): string {
return 'http.' . strtoupper($request->getMethod()) . '.' . self::resolveHttpIdentifier($request);
}
/**
*
*/
public static function actionForHttp(Request $request): string {
return strtoupper($request->getMethod()) . ' ' . self::resolveHttpIdentifier($request);
}
/**
*
*/
public static function httpUrl(Request $request): string {
return $request->getSchemeAndHttpHost() . $request->getPathInfo();
}
/**
* @return array<int, string>
*/
public static function httpFilterComponents(Request $request): array {
$method = strtoupper($request->getMethod());
$path = $request->getPathInfo();
$normalizedPath = self::normalizePath($path);
$identifier = self::resolveHttpIdentifier($request);
$components = [
$method . ' ' . $identifier,
$identifier,
$path,
$normalizedPath,
];
$routeName = $request->attributes->get('_route');
if (is_string($routeName) && $routeName !== '') {
$components[] = $routeName;
$components[] = $method . ' ' . $routeName;
}
return array_values(array_unique($components));
}
/**
*
*/
public static function forConsole(string $commandName): string {
return 'console.' . $commandName;
}
/**
*
*/
public static function forCron(string $taskName = 'cron.run'): string {
return strpos($taskName, 'cron.') === 0 ? $taskName : 'cron.' . $taskName;
}
/**
*
*/
public static function forQueue(string $pluginId): string {
return 'queue.' . $pluginId;
}
/**
*
*/
public static function resolveHttpIdentifier(Request $request): string {
$routeObject = $request->attributes->get('_route_object');
if (is_object($routeObject) && method_exists($routeObject, 'getPath')) {
$path = $routeObject->getPath();
if (is_string($path) && $path !== '') {
return $path;
}
}
$routeName = $request->attributes->get('_route');
if (is_string($routeName) && $routeName !== '') {
return $routeName;
}
return self::normalizePath($request->getPathInfo());
}
/**
*
*/
public static function normalizePath(string $path): string {
$path = '/' . trim($path, '/');
if ($path === '//') {
$path = '/';
}
$segments = explode('/', trim($path, '/'));
if (empty($segments[0])) {
return '/';
}
$normalized = [];
foreach ($segments as $segment) {
if ($segment === '') {
continue;
}
if (preg_match('/^\d+$/', $segment)) {
$normalized[] = '{id}';
continue;
}
if (preg_match('/^[0-9a-f]{8}-[0-9a-f-]{27}$/i', $segment)) {
$normalized[] = '{uuid}';
continue;
}
if (preg_match('/^[0-9a-f]{16,}$/i', $segment)) {
$normalized[] = '{id}';
continue;
}
$normalized[] = $segment;
}
return '/' . implode('/', $normalized);
}
}