Add login command to fresh

This commit is contained in:
friendica 2013-01-12 19:43:00 -08:00
parent 434c9ae47a
commit 99ff0f51a8

View File

@ -68,7 +68,30 @@ function process_command($line) {
}
break;
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 = get_app()->account = account_verify_password(argv(1),trim($x,"\n"));
if($record) {
$_SESSION['account_id'] = get_app()->account['account_id'];
$_SESSION['last_login_date'] = datetime_convert();
authenticate_success($record, true, true);
echo 'logged in';
$channel = $a->get_channel();
if($channel)
echo ' as ' . $channel['channel_name'];
}
else
echo 'login failed.';
}
break;
default: