-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDebuggerCommand.php
51 lines (43 loc) · 1.35 KB
/
DebuggerCommand.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
<?php
declare(strict_types=1);
namespace ManaPHP\Commands;
use ManaPHP\Cli\Command;
use ManaPHP\Di\Attribute\Autowired;
use ManaPHP\Di\Attribute\Config;
use ManaPHP\Redis\RedisCacheInterface;
class DebuggerCommand extends Command
{
#[Autowired] protected RedisCacheInterface $redisCache;
#[Config] protected string $app_id;
/**
* monitor generated urls
*
* @param ?string $app_id
* @param string $path
* @param string $ip
*
* @return void
*/
public function watchAction(?string $app_id = null, string $path = '', string $ip = ''): void
{
$app_id = $app_id ?? $this->app_id;
$key = "__debugger:$app_id:*";
$this->console->writeLn('subscribe to ' . $key);
$this->redisCache->psubscribe(
[$key], function ($redis, $pattern, $channel, $msg) use ($path, $ip) {
list(, , $_ip, $_path) = explode(':', $channel);
if ($path !== '' && !str_starts_with($_path, $path)) {
return;
}
if ($ip !== '' && $ip !== $_ip) {
if (str_contains($ip, '.')) {
return;
} elseif (!str_ends_with($_ip, ".$ip")) {
return;
}
}
$this->console->writeLn(sprintf('[%s][%s]: %s', $_ip, $_path, $msg));
}
);
}
}