Login.php 8.11 KB
<?php

use Action\AbstractAction;
use LibModels\Wap\Passport\LoginData;
use LibModels\Wap\Passport\RegData;
use Plugin\Helpers;
use Plugin\Partner\Factory;

/**
 * 登录的控制器
 */
class LoginController extends AbstractAction
{

    /**
     * 登录页
     */
    public function indexAction()
    {
        $refer = $this->get('refer');
        if (!empty($refer)) {
            $this->setCookie('refer', $refer);
        }

        $this->setTitle('登录');

        $data = array(
            'loginIndex' => true, // 模板中使用JS的标识
            'backUrl' => '/', // 返回的URL链接
            'showHeaderImg' => true, // 控制显示头部图片
            'isPassportPage' => true, // 模板中模块标识
            'registerUrl' => '/reg.html', // 注册的URL链接
            'aliLoginUrl' => '/passport/login/alipay', // 支付宝快捷登录的URL链接
            'weiboLoginUrl' => '/passport/login/sina', // 微博登录的URL链接
            'qqLoginUrl' => '/passport/login/qq', // 腾讯QQ登录的URL链接
            'internationalUrl' => '/login.html', // 国际号登录的URL链接
            'phoneRetriveUrl' => '/passport/back/mobile', // 通过手机号找回密码的URL链接
            'emailRetriveUrl' => '/passport/back/email', // 通过邮箱找回密码的URL链接
        );

        // 渲染模板
        $this->_view->display('index', $data);
    }

    /**
     * 国际账号登录页
     */
    public function internationalAction()
    {
        $refer = $this->get('refer');
        if (!empty($refer)) {
            $this->setCookie('refer', $refer);
        }

        $this->setTitle('国际账号登录');

        $data = array();
        $data['loginInternational'] = true; // 模板中使用JS的标识
        $data['backUrl'] = '/'; // 返回的URL链接
        $data['headerText'] = '登录'; // 头部信息
        $data['isPassportPage'] = true; // 模板中模块标识
        $data['areaCode'] = '+86'; // 默认区号
        $data['countrys'] = RegData::getAreasData(); // 地区信息列表
        // 渲染模板
        $this->_view->display('international', $data);
    }

    /**
     * 退出
     */
    public function outAction()
    {
        // 清除客户端
        $this->setCookie('_UID', '');
        $this->setCookie('_TOKEN', '');
        // 清除服务端会话
        $this->setSession('_TOKEN', '');

        $refer = $this->server('HTTP_REFERER', SITE_MAIN);
        $token = $this->get('token');
        if (!empty($token)) {
            $this->go( Helpers::logoutSession($token, $refer) );
        }

        $this->go($refer);
    }

    /**
     * 登录操作
     * 
     * @param string areaCode 地区编号, 不需要+号
     * @param string account 账号(邮箱或手机号)
     * @param string password 密码
     * @return json
     */
    public function authAction()
    {
        $data = array('code' => 400, 'message' => '账号或密码不正确', 'data' => '');

        do {
            /* 判断是不是AJAX请求 */
            if (!$this->isAjax()) {
                break;
            }

            /* 判断参数是否传递 */
            $area = $this->post('areaCode', '86');
            $profile = $this->post('account');
            $password = $this->post('password');
            if (!is_numeric($area) || empty($profile) || empty($password)) {
                break;
            }

            /* 判断参数是否有效 */
            $verifyEmail = Helpers::verifyEmail($profile);
            $verifyMobile = ($area === '86') ? Helpers::verifyMobile($profile) : Helpers::verifyAreaMobile($profile);
            if (!$verifyEmail && !$verifyMobile) {
                break;
            }

            /* 调用登录接口进行登录 */
            $data = LoginData::signin($area, $profile, $password);  
            if (!isset($data['code']) || $data['code'] != 200 || !isset($data['data']['uid'])) {
                break;
            }

            $refer = $this->getCookie('refer');
            if (empty($refer)) {
                $refer = SITE_MAIN . '/?go=1';
            } else {
                $refer = rawurldecode($refer);
            }
            $data['data']['session'] = Helpers::syncUserSession($data['data']['uid']);
            $data['data']['href'] = $refer;

            $token = Helpers::makeToken($data['data']['uid']);
            $this->setCookie('_TOKEN', $token);
            $this->setSession('_TOKEN', $token);
        } while (false);

        $this->echoJson($data);
    }

    /**
     * 支付宝账号登录:授权页面
     */
    public function alipayAction()
    {
        Factory::create('alipay')->getAuthorizeUrl();

        exit();
    }

    /**
     * QQ账号登录:授权页面
     */
    public function qqAction()
    {
        Factory::create('qqconnect')->getAuthorizeUrl();

        exit();
    }

    /**
     * 新浪微博账号登录:授权页面
     */
    public function sinaAction()
    {
        $this->go(Factory::create('sinaweibo')->getAuthorizeUrl());
    }

    /**
     * 支付宝账号登录:回调方法
     */
    public function alipaycallbackAction()
    {
        $realName = $this->_request->get('real_name');
        $email = $this->_request->get('email');
        $userId = $this->_request->get('user_id');

        $result = array();
        if (isset($realName, $email, $userId)) {
            $result = LoginData::signinByOpenID($realName, $userId, 'alipay');
        }

        $refer = $this->getCookie('refer');
        if (empty($refer)) {
            $refer = SITE_MAIN . '/?go=1';
        } else {
            $refer = rawurldecode($refer);
        }

        if (isset($result['code']) && $result['code'] == 200 && !empty($result['data']['uid'])) {
            $token = Helpers::makeToken($result['data']['uid']);
            $this->setCookie('_TOKEN', $token);
            $this->setSession('_TOKEN', $token);
            $this->go(Helpers::syncUserSession($result['data']['uid'], $refer));
        } else {
            $this->go($refer);
        }
    }

    /**
     * QQ账号登录:回调方法
     */
    public function qqcallbackAction()
    {
        $qqconnect = Factory::create('qqconnect');
        $access = $qqconnect->getAccessToken();
        /* 获取QQ腾讯用户的详细信息 */
        $partnerInfo = $qqconnect->getUserInfo($access);
        
        $result = array();
        if ($partnerInfo && is_array($partnerInfo)) {
            $result = LoginData::signinByOpenID($partnerInfo['nickname'], $access['openid'], 'qq');
        }

        $refer = $this->getCookie('refer');
        if (empty($refer)) {
            $refer = SITE_MAIN . '/?go=1';
        } else {
            $refer = rawurldecode($refer);
        }

        if (isset($result['code']) && $result['code'] == 200 && !empty($result['data']['uid'])) {
            $token = Helpers::makeToken($result['data']['uid']);
            $this->setCookie('_TOKEN', $token);
            $this->setSession('_TOKEN', $token);
            $this->go(Helpers::syncUserSession($result['data']['uid'], $refer));
        } else {
            $this->go($refer);
        }
    }

    /**
     * 新浪微博账号登录:回调方法
     */
    public function sinacallbackAction()
    {
        $sina = Factory::create('sinaweibo');
        $access = $sina->getAccessToken(); 
        /* 获取用户的详细信息 */
        $partnerInfo = $sina->getUserInfo($access); 

        $result = array();
        if ($partnerInfo && is_array($partnerInfo)) {
            $result = LoginData::signinByOpenID($partnerInfo['screen_name'], $access['uid'], 'sina');
        }

        $refer = $this->getCookie('refer');
        if (empty($refer)) {
            $refer = SITE_MAIN . '/?go=1';
        } else {
            $refer = rawurldecode($refer);
        }

        if (isset($result['code']) && $result['code'] == 200 && !empty($result['data']['uid'])) {
            $token = Helpers::makeToken($result['data']['uid']);
            $this->setCookie('_TOKEN', $token);
            $this->setSession('_TOKEN', $token);
            $this->go(Helpers::syncUserSession($result['data']['uid'], $refer));
        } else {
            $this->go($refer);
        }
    }

}