forked from wp-cli/php-cli-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
http-console.php
72 lines (57 loc) · 1.84 KB
/
http-console.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
67
68
69
70
71
72
<?php
/**
* An example application using php-cli-tools and Buzz
*/
define('BUZZ_PATH', realpath('../Buzz'));
define('TOOL_PATH', realpath('./'));
define('SCRIPT_NAME', array_shift($argv));
require_once BUZZ_PATH . '/lib/Buzz/ClassLoader.php';
Buzz\ClassLoader::register();
require_once TOOL_PATH . '/lib/cli/cli.php';
\cli\register_autoload();
class HttpConsole {
protected $_host;
protected $_prompt;
public function __construct($host) {
$this->_host = 'http://' . $host;
$this->_prompt = '%K' . $this->_host . '%n/%K>%n ';
}
public function handleRequest($type, $path) {
$request = new Buzz\Message\Request($type, $path, $this->_host);
$response = new Buzz\Message\Response;
$client = new Buzz\Client\FileGetContents();
$client->send($request, $response);
// Display headers
foreach ($response->getHeaders() as $i => $header) {
if ($i == 0) {
\cli\line('%G{:header}%n', compact('header'));
continue;
}
list($key, $value) = explode(': ', $header, 2);
\cli\line('%W{:key}%n: {:value}', compact('key', 'value'));
}
\cli\line("\n");
print $response->getContent() . "\n";
switch ($type) {
}
}
public function run() {
while (true) {
$cmd = \cli\prompt($this->_prompt, false, null);
if (preg_match('/^(HEAD|GET|POST|PUT|DELETE) (\S+)$/', $cmd, $matches)) {
$this->handleRequest($matches[1], $matches[2]);
continue;
}
if ($cmd == '\q') {
break;
}
}
}
}
try {
$console = new HttpConsole(array_shift($argv) ?: '127.0.0.1:80');
$console->run();
} catch (\Exception $e) {
\cli\err("\n\n%R" . $e->getMessage() . "%n\n");
}
?>