2007-09-14 05:12:21 +02:00
|
|
|
<?php
|
|
|
|
|
2007-09-14 21:10:18 +02:00
|
|
|
/**
|
|
|
|
* Member authenticator
|
|
|
|
*
|
|
|
|
* @author Markus Lanthaler <markus@silverstripe.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-09-14 05:12:21 +02:00
|
|
|
/**
|
|
|
|
* Authenticator for the default "member" method
|
|
|
|
*
|
|
|
|
* @author Markus Lanthaler <markus@silverstripe.com>
|
|
|
|
*/
|
|
|
|
class MemberAuthenticator extends Authenticator {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to authenticate an user
|
|
|
|
*
|
|
|
|
* @param array $RAW_data Raw data to authenticate the user
|
2007-09-14 21:10:18 +02:00
|
|
|
* @param Form $form Optional: If passed, better error messages can be
|
|
|
|
* produced by using
|
|
|
|
* {@link Form::sessionMessage()}
|
2007-09-14 05:12:21 +02:00
|
|
|
* @return bool|Member Returns FALSE if authentication fails, otherwise
|
|
|
|
* the member object
|
|
|
|
*/
|
2007-09-14 21:10:18 +02:00
|
|
|
public function authenticate(array $RAW_data, Form $form = null) {
|
2007-09-14 05:12:21 +02:00
|
|
|
$SQL_user = Convert::raw2sql($RAW_data['Email']);
|
|
|
|
$SQL_password = Convert::raw2sql($RAW_data['Password']);
|
|
|
|
|
|
|
|
$member = DataObject::get_one(
|
2007-09-14 21:10:18 +02:00
|
|
|
"Member", "Email = '$SQL_user' AND Password = '$SQL_password'");
|
2007-09-14 05:12:21 +02:00
|
|
|
|
|
|
|
if($member) {
|
|
|
|
Session::clear("BackURL");
|
2007-09-14 21:10:18 +02:00
|
|
|
} else if(!is_null($form)) {
|
|
|
|
$form->sessionMessage(
|
|
|
|
"That doesn't seem to be the right email address or password. Please try again.",
|
|
|
|
"bad");
|
2007-09-14 05:12:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $member;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method that creates the login form for this authentication method
|
|
|
|
*
|
2007-09-14 21:10:18 +02:00
|
|
|
* @param Controller The parent controller, necessary to create the
|
|
|
|
* appropriate form action tag
|
2007-09-14 05:12:21 +02:00
|
|
|
* @return Form Returns the login form to use with this authentication
|
|
|
|
* method
|
|
|
|
*/
|
2007-09-14 21:10:18 +02:00
|
|
|
public static function getLoginForm(Controller $controller) {
|
|
|
|
return Object::create("MemberLoginForm", $controller, "LoginForm");
|
2007-09-14 05:12:21 +02:00
|
|
|
}
|
2007-09-14 21:13:12 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the name of the authentication method
|
|
|
|
*
|
|
|
|
* @return string Returns the name of the authentication method.
|
|
|
|
*/
|
|
|
|
public static function getName() {
|
2007-09-15 02:08:50 +02:00
|
|
|
return "Email & Password";
|
2007-09-14 21:13:12 +02:00
|
|
|
}
|
2007-09-14 05:12:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|