www.gusucode.com > 教程素材资源下载论坛网站源码程序 > 教程素材资源下载论坛/整站源码/source/plugin/mobile/api/4/login.php

    <?php

/**
 *      [Discuz!] (C)2001-2099 Comsenz Inc.
 *      This is NOT a freeware, use is subject to license terms
 *
 *      $Id: login.php 35024 2014-10-14 07:43:43Z nemohou $
 */

if(!defined('IN_MOBILE_API')) {
	exit('Access Denied');
}

$_GET['mod'] = 'logging';
$_GET['action'] = !empty($_GET['action']) ? $_GET['action'] : 'login';
include_once 'member.php';

class mobile_api {

	function common() {
	}

	function output() {
		global $_G;
		parse_str($_G['messageparam'][1], $p);
		$variable = array('auth' => $p['auth']);
		if($_G['uid']) {
			require_once DISCUZ_ROOT.'./source/plugin/wechat/wsq.class.php';
			if(method_exists('wsq', 'userloginUrl')) {
				$_source = isset($_GET['_source']) ? $_GET['_source'] : '';
				if(!$_source && !empty($_GET['openid']) && !empty($_GET['openidsign'])) {
					$variable['loginUrl'] = wsq::userloginUrl($_G['uid'], $_GET['openid'], $_GET['openidsign']);
					if(!C::t('#wechat#common_member_wechatmp')->fetch($_G['uid'])) {
						C::t('#wechat#common_member_wechatmp')->insert(array('uid' => $_G['uid'], 'openid' => $_GET['openid'], 'status' => 1), false, true);
					}
				} else {
					$variable['loginUrl'] = wsq::userloginUrl2($_G['uid']);
				}
			}
		}
		mobile_core::result(mobile_core::variable($variable));
	}

}

?>