-
-
final class 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();
- return null;
- }
public static function 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;
- }
パブリック静的関数 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 {
- プライベート関数 __construct() {
- }
/**
- * 指定されたユーザー名とパスワードを検証します。
- * @param $username と $password を検証します
- * @return array array of {@link Error} s
- */
- public static function validate($username, $password) {
- $errors = array();
- $username = トリム($username);
- if (!$username) {
- $errors [] = new Error('username', '用人名は空にはできません。');
- } elseif (strlen($username)<3) {
- $errors[] = new Error('username', '用人名');
- } elseif (strlen($username)>30) {
- $errors[] = new Error('username', 'ユーザー名の長さは 30 文字を超えることはできません。');
- } elseif (!preg_match('/^[A-Za-z]+$/',substr($username, 0, 1))) {
- $errors[] = new Error('username', '用户名');
- } elseif (!preg_match('/^[A-Za-z0-9_]+$/', $username)) {
- $errors[] = new Error('username', 'ユーザー名は文字、数字、および下線( _ ) の組み合わせのみ可能です。');
- } elseif (!trim($password)) {
- $errors[] = new Error('password', '秘密コードは空にすることはできません。');
- } else {
- // use が存在するかどうかを確認します
- $dao = new UserDao();
- $user = $dao->findByName($username);
if ($user) {
- if (!($user->getPassword() == sha1($user->getSalt() . $password))) {
- $errors[] = new Error('パスワード' , '用人名または秘密暗号错误。');
- }
- } else {
- $errors[] = new Error('ユーザー名', '用户名は存在しません。');
- }
- }
- return $errors;
- }
- }
/**
- * 検証エラー
- */
- final クラス エラー {
- private $source;
- private $message;
/**
- * 新しいエラーを作成します。
- * @parammixed $source エラーのソース
- * @param string $message エラーメッセージ
- */
- function __construct($source, $message) {
- $this->source = $source;
- $this->message = $message;
- }
- < ;p> /**
- * エラーのソースを取得します。
- * @return エラーの混合ソースを返します
- */
- public function getSource() {
- return $this->source;
- }
/**
- * エラーメッセージを取得します。
- * @return string エラーメッセージ
- */
- public function getMessage() {
- return $this->message;
- }
- }
// ログインしている場合はログアウトします 页面的跳转类http://www.cnblogs.com/setsail/archive/2012/12/18/2823231.html 里这里不再重复书写
- if (UserLogin::isLogin() && $_COOKIE["user_id"]==1 ) {
- UserLogin::delUserInfo();
- }elseif (UserLogin::isLogin()){
- Utils::redirect('welcome');
- }
$username = null;
- $password = null;
- $msg = "";
if (isset($_POST['username']) && isset($_POST['password'])) {
- $ username = addedlashes(trim(stripslashes($_POST ['username'])));
- $password =addslashes(trim(stripslashes($_POST ['password'])));
- // validate
- $errors = LoginValidator: :validate($username, $password);
-
- if (empty($errors)) {
- // save
- $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()."
";
- }
- }
- ?>
-
复制代
|