user_external/lib/ssh.php
Rachus 6659fb24b2 Fix comment for SSH module (it's not FTP)
Signed-off-by: Sebastian Rachuj <rachus@web.de>
2020-04-01 15:15:25 +02:00

60 lines
1.4 KiB
PHP

<?php
/**
* Copyright (c) 2018 David Fullard <dave@theinternetmonkey.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
/**
* User authentication against a SSH server
*
* @category Apps
* @package UserExternal
* @author David Fullard <dave@theinternetmonkey.com>
* @license http://www.gnu.org/licenses/agpl AGPL
* @link http://github.com/owncloud/apps
*/
class OC_User_SSH extends \OCA\user_external\Base {
private $host;
private $port;
/**
* Create a new SSH authentication provider
*
* @param string $host Hostname or IP address of SSH servr
*/
public function __construct($host, $port = 22) {
parent::__construct($host);
$this->host = $host;
$this->port = $port;
}
/**
* Check if the password is correct without logging in
* Requires the php-ssh2 pecl extension
*
* @param string $uid The username
* @param string $password The password
*
* @return true/false
*/
public function checkPassword($uid, $password) {
if (!extension_loaded('ssh2')) {
OC::$server->getLogger()->error(
'ERROR: php-ssh2 PECL module missing',
['app' => 'user_external']
);
return false;
}
$connection = ssh2_connect($this->host, $this->port);
if (ssh2_auth_password($connection, $uid, $password)) {
$this->storeUser($uid);
return $uid;
} else {
return false;
}
}
}