-
-
최종 클래스 UserLogin {
공용 함수 __construct() {
-
- }
- 공용 정적 함수 getUserInfo() {
- if (isset($_COOKIE["user_id"])&&$_COOKIE["user_id"]&&(trim( $_COOKIE["user_id"])!="")) {
- if (isset($_SESSION["USER_INFO"]))
- return $_SESSION["USER_INFO"];
- $dao = new UserDao();
- $user = $dao->find($_COOKIE["user_id"]);
- if ($user) {
- $_SESSION["USER_INFO"] = $user;
- setcookie("docloud_sid", session_id(), time() 36000);
- setcookie("user_id", $_COOKIE["user_id"], time() 36000);
-
- if (array_key_exists ("selected_prj_id", $_COOKIE))
- setcookie("selected_prj_id", $_COOKIE["selected_prj_id"], time() 36000);
-
- if (array_key_exists("selected_class_id", $_COOKIE))
- setcookie("selected_class_id", $_COOKIE["selected_class_id"], time() 36000);
-
- if (array_key_exists("selected_image_id", $_COOKIE))
- setcookie("selected_image_id", $_COOKIE["selected_image_id"], time() 36000);
-
- if (array_key_exists("test_image_ids", $_COOKIE))
- setcookie("test_image_ids", $_COOKIE["test_image_ids"], time () 36000);
-
- if (array_key_exists("upload_image_ids", $_COOKIE))
- setcookie("upload_image_ids", $_COOKIE["upload_image_ids"], time() 36000);
- return $user;
- }
- }
- self::clearCookie();
- null 반환;
- }
공개 정적 함수 setUserInfo($userInfo) {
- $_SESSION["USER_INFO"] = $userInfo;
- setcookie("docloud_sid", session_id(), time() 36000);
- setcookie("user_id" , $userInfo->getId(), time() 36000);
- }
public static function isLogin() {
- if (self::getUserInfo()) {
- return true;
- }
- return false;
- }
- < p> 공개 정적 함수 delUserInfo() {
- self::clearCookie();
- session_destroy();
- }
-
- 비공개 정적 함수clearCookie() {
- setcookie("docloud_sid", "", time() - 36000);
- setcookie("user_id", "", time() - 36000);
- setcookie("selected_prj_id", "", time() - 36000);
- setcookie("selected_class_id", "", time() - 36000);
- setcookie("selected_image_id", "", time() - 36000);
- setcookie("test_image_ids", "", time( ) - 36000);
- setcookie("upload_image_ids", "", time() - 36000);
- }
- }
/**
- * 로그인 유효성 검사기.
- */
- final class LoginValidator {
- private function __construct() {
- }
/**
- * 주어진 사용자 이름과 비밀번호를 확인하세요.
- * @param $username과 $password를 확인하세요
- * @return array {@link Error} s의 배열
- */
- 공개 정적 함수 검증($username, $password) {
- $errors = array();
- $username = Trim($username);
- if ( !$username) {
- $errors[] = new Error('username', '用户name不能为空。');
- } elseif (strlen($username)<3) {
- $ error[] = new Error('username', '용도 이름이 불특정 3个字符');
- } elseif (strlen($username)>30) {
- $errors[] = new Error ('사용자 이름', '용도 이름이 불변 能超过30个字符。');
- } elseif (!preg_match('/^[A-Za-z] $/',substr($username, 0, 1) )) {
- $errors[] = new Error('사용자 이름', '사용명必须以字母开头。');
- } elseif (!preg_match('/^[A-Za-z0-9_] $/', $username)) {
- $errors[] = new Error('username', '사용용 이름只能是字母、数字以及下划线( _ )적합합。');
- } elseif ( !trim($password)) {
- $errors[] = new Error('password', '密码不能为空。');
- } else {
- // 사용 여부 확인
- $dao = new UserDao();
- $user = $dao->findByName($username);< /p>
if ($user) {
- if (!($user->getPassword() == sha1($user->getSalt() . $password))) {
- $errors[] = 새로운 오류 ('비밀번호', '사용 이름或密码错误。');
- }
- } else {
- $errors[] = new Error('사용자 이름', '사용 이름 불存재。');
- }
- }
- return $errors;
- }
- }
/**
- * 유효성 검사 오류입니다.
- */
- 최종 클래스 오류 {
- 비공개 $source;
- 비공개 $message;
/**
- * 새로운 오류를 생성합니다.
- * @param 오류의 $source 혼합
- * @param string $message 오류 메시지
- */
- 함수 __construct($source, $message) {
- $this->source = $source;
- $this->message = $message;
- }
/**
- * 오류의 소스를 가져옵니다.
- * @return 오류의 혼합 소스
- */
- 공용 함수 getSource() {
- return $this->source;
- }
/**
- * 오류 메시지를 받습니다.
- * @return 문자열 오류 메시지
- */
- 공용 함수 getMessage() {
- return $this->message;
- }
- }
// 로그인했다면 로그아웃하세요. ) && $_COOKIE["user_id"]==1) {
- UserLogin::delUserInfo();
- }elseif (UserLogin::isLogin()){
- Utils::redirect('welcome') ;
- }
$username = null;
- $password = null;
- $msg = "";
$username = addedlashes(trim(stripslashes($_POST ['username']))); - $password = addlashes(trim(stripslashes($_POST ['password'])));
- // 유효성 검사
- $errors = LoginValidator::validate($username, $password);
-
- if (empty($errors)) {
- // 저장
- $dao = new UserDao();
- $user = $dao->findByName($username);
- $last_login_ip = Utils::getIpAddress();
- $user->setLastLoginIp($last_login_ip);
- $now = new DateTime();
- $user->setLastLoginTime($now);
- $dao->save($user);
- UserLogin::setUserInfo($user);
- Flash::addFlash('登录成功!');
- Utils::redirect('welcome') ;
- }
-
- foreach ($errors as $e) {
- $msg .= $e->getMessage()."
";
- }
- }
- ?>
-
-
复代码
|