blob: 3e9b55ae1e7df1115d60d9914bb974ec16968143 (
plain) (
blame)
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
|
#!/usr/bin/env php
<?php
// Red cli interpreter
require_once('include/cli_startup.php');
require_once('include/zot.php');
cli_startup();
$prompt = 'fresh% ';
function fresh_main($argc,$argv) {
global $prompt;
while(!feof(STDIN)) {
if(function_exists('readline'))
$line = readline($prompt);
else {
echo "\n" . $prompt;
$line = fgets(STDIN);
}
if($line === FALSE) {
if(feof(STDIN)) {
break;
}
continue;
}
$line = trim($line);
if($line == 'quit' || $line == 'exit')
exit();
process_command($line);
}
}
fresh_main($argc,$argv);
function process_command($line) {
$a = get_app();
// split args
$a->cmd = $line;
$a->argv = explode(' ',$line);
$a->argc = count($a->argv);
$authenticated = false;
$channel = null;
if($line == 'version') {
echo 'Fresh version 0.1';
return;
}
switch(argv(0)) {
case 'finger':
if(argv(1)) {
$x = zot_finger(argv(1),$channel);
if($x['success'])
print_r(json_decode($x['body'],true));
}
break;
default:
break;
}
}
|