streams/util/fresh

166 lines
3.4 KiB
Text
Raw Normal View History

2013-01-12 22:42:05 +00:00
#!/usr/bin/env php
<?php
// Red cli interpreter
require_once('include/cli_startup.php');
2013-01-12 23:55:37 +00:00
require_once('include/zot.php');
2013-01-12 22:42:05 +00:00
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();
2013-01-13 23:33:24 +00:00
2013-01-12 22:42:05 +00:00
process_command($line);
}
}
fresh_main($argc,$argv);
function process_command($line) {
2013-01-12 23:55:37 +00:00
$a = get_app();
2013-01-12 22:42:05 +00:00
// split args
2016-03-31 23:06:03 +00:00
App::$cmd = $line;
App::$argv = explode(' ',$line);
App::$argc = count(App::$argv);
2013-01-12 23:55:37 +00:00
$authenticated = false;
$channel = null;
2013-01-12 22:42:05 +00:00
if($line == 'version') {
echo 'Fresh version 0.1';
return;
}
2013-01-12 23:55:37 +00:00
switch(argv(0)) {
2013-01-13 23:33:24 +00:00
case '?':
case 'help':
fresh_help();
break;
2013-01-12 23:55:37 +00:00
case 'finger':
if(argv(1)) {
2016-05-22 01:18:33 +00:00
$x = Zotlabs\Zot\Finger::run(argv(1),$channel);
2013-01-12 23:55:37 +00:00
if($x['success'])
2016-05-22 01:18:33 +00:00
echo jindent($x);
2013-01-12 23:55:37 +00:00
}
break;
2013-01-13 03:43:00 +00:00
case 'login':
if(argv(1)) {
echo 'Password: ';
exec('/bin/stty -echo');
$x = fgets(STDIN);
exec('/bin/stty echo');
echo "\n";
require_once('include/auth.php');
$record = null;
$x = account_verify_password(argv(1),trim($x,"\n"));
if($x['account'])
$record = App::$account = $x['account'];
2013-01-13 03:43:00 +00:00
if($record) {
2016-03-31 23:06:03 +00:00
$_SESSION['account_id'] = App::$account['account_id'];
2013-01-13 03:43:00 +00:00
$_SESSION['last_login_date'] = datetime_convert();
authenticate_success($record, $x['channel'], true, true);
2013-01-13 03:43:00 +00:00
echo 'logged in';
2016-03-31 23:06:03 +00:00
$channel = App::get_channel();
2013-01-13 03:43:00 +00:00
if($channel)
echo ' as ' . $channel['channel_name'];
}
else
echo 'login failed.';
2013-01-12 23:55:37 +00:00
2013-01-13 03:43:00 +00:00
}
break;
case 'channel':
2015-01-29 04:56:04 +00:00
if(! local_channel())
echo 'Permission denied.';
if(argv(1)) {
$r = q("select * from channel where channel_address = '%s' and channel_account_id = %d limit 1",
dbesc(argv(1)),
intval(get_account_id())
);
if($r) {
change_channel($r[0]['channel_id']);
2016-03-31 23:06:03 +00:00
$channel = App::get_channel();
echo 'Logged in as ' . $channel['channel_name'];
}
else
echo 'Channel not found.';
}
break;
case 'conn':
2015-01-29 04:56:04 +00:00
if(! local_channel()) {
echo "Permission denied.";
break;
}
2013-01-13 07:02:40 +00:00
if(argc() > 1) {
for($x = 1; $x < argc(); $x ++) {
$r = q("select * from abook left join xchan on abook_xchan = xchan_hash where abook_id = %d and abook_channel = %d",
intval(argv($x)),
2015-01-29 04:56:04 +00:00
intval(local_channel())
);
2013-01-13 23:33:24 +00:00
if($r) echo jindent(json_encode($r[0])) . "\n";
}
}
else {
2013-01-13 23:33:24 +00:00
$r = q("select * from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d order by abook_id",
2015-01-29 04:56:04 +00:00
intval(local_channel())
);
if($r) {
foreach($r as $rr)
echo $rr['abook_id'] . "\t" . $rr['xchan_name'] . "\n";
}
}
break;
2013-01-12 23:55:37 +00:00
default:
break;
2013-01-12 22:42:05 +00:00
2013-01-12 23:55:37 +00:00
}
2013-01-12 22:42:05 +00:00
}
2013-01-13 23:33:24 +00:00
function fresh_help() {
if(argc() == 1) {
echo "help - this text\n";
echo "login email_address - login with email_address, prompts for password\n";
echo "finger channel_address - lookup channel_address remotely\n";
echo "channel new_channel - change active channel to new_channel (nickname)\n";
echo "conn [id1] [id2...] - without args list connections, or report detail of connection id1 (etc.)\n";
echo "quit|exit - terminate fresh\n";
}
}