add connection list and connection detail to fresh

This commit is contained in:
friendica 2013-01-12 22:53:26 -08:00
parent c0c5252b57
commit 740edcfdb6

View File

@ -109,6 +109,30 @@ function process_command($line) {
echo 'Channel not found.'; echo 'Channel not found.';
} }
break; break;
case 'conn':
if(! local_user()) {
echo "Permission denied.";
break;
}
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)),
intval(local_user())
);
if($r) echo jindent(json_encode($r[0]));
}
}
else {
$r = q("select * from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d",
intval(local_user())
);
if($r) {
foreach($r as $rr)
echo $rr['abook_id'] . "\t" . $rr['xchan_name'] . "\n";
}
}
break;
default: default:
break; break;