1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-04 18:29:40 +02:00

Rename vauth to Auth

This commit is contained in:
Paul Arthur 2013-01-28 17:39:04 -05:00
parent 58a3ab692e
commit ead4cf2a0e
6 changed files with 19 additions and 22 deletions

View file

@ -21,14 +21,12 @@
*/
/**
* vauth Class
*
* This class handles all of the session related stuff in Ampache
* it takes over for the vauth libs, and takes some stuff out of other
* classes where it didn't belong
*
* classes where it didn't belong.
*/
class vauth {
class Auth {
/**
* Constructor
@ -85,11 +83,12 @@ class vauth {
} // logout
/**
* authenticate
* login
*
* This takes a username and password and then returns the results
* based on what happens when we try to do the auth.
*/
public static function authenticate($username, $password) {
public static function login($username, $password) {
// Foreach the auth methods
foreach (Config::get('auth_methods') as $method) {
@ -97,7 +96,7 @@ class vauth {
// Build the function name and call it
$function_name = $method . '_auth';
if (!method_exists('vauth', $function_name)) {
if (!method_exists('Auth', $function_name)) {
continue;
}
@ -110,7 +109,7 @@ class vauth {
return $results;
} // authenticate
}
/**
* mysql_auth
@ -158,7 +157,7 @@ class vauth {
$results['error'] = 'MySQL login attempt failed';
return $results;
} // mysql_auth
}
/**
* local_auth
@ -325,6 +324,5 @@ class vauth {
return $results;
} // http_auth
} // end of vauth class
}
?>