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
|
<?php
/**
* The Auth_ftp class provides an FTP implementation of the Horde
* authentication system.
*
* Optional parameters:<pre>
* 'hostspec' The hostname or IP address of the FTP server.
* DEFAULT: 'localhost'
* 'port' The server port to connect to.
* DEFAULT: 21</pre>
*
*
* $Horde: framework/Auth/Auth/ftp.php,v 1.23.12.8 2006/01/01 21:28:07 jan Exp $
*
* Copyright 1999-2006 Chuck Hagenbuch <chuck@horde.org>
* Copyright 1999-2006 Max Kalika <max@horde.org>
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @author Max Kalika <max@horde.org>
* @since Horde 1.3
* @package Horde_Auth
*/
class Auth_ftp extends Auth {
/**
* Constructs a new FTP authentication object.
*
* @param array $params A hash containing connection parameters.
*/
function Auth_ftp($params = array())
{
if (!Util::extensionExists('ftp')) {
Horde::fatal(_("Auth_ftp: Required FTP extension not found. Compile PHP with the --enable-ftp switch."), __FILE__, __LINE__);
}
$default_params = array(
'hostspec' => 'localhost',
'port' => 21
);
$this->_params = array_merge($default_params, $params);
}
/**
* Find out if a set of login credentials are valid.
*
* @access private
*
* @param string $userId The userId to check.
* @param array $credentials An array of login credentials. For FTP,
* this must contain a password entry.
*
* @return boolean Whether or not the credentials are valid.
*/
function _authenticate($userId, $credentials)
{
$ftp = @ftp_connect($this->_params['hostspec'], $this->_params['port']);
if ($ftp && @ftp_login($ftp, $userId, $credentials['password'])) {
@ftp_quit($ftp);
return true;
} else {
@ftp_quit($ftp);
$this->_setAuthError(AUTH_REASON_BADLOGIN);
return false;
}
}
}
|