...
|
...
|
@@ -9,8 +9,8 @@ use Plugin\Helpers; |
|
|
*/
|
|
|
class YuanxiaoController extends HuodongAction
|
|
|
{
|
|
|
// const STATIC_FILE = 'http://localhost:2222/assets/1.0.1';
|
|
|
const STATIC_FILE = 'http://cdn.yoho.cn/huodong/2016yuanxiao/1.0.1';
|
|
|
// const STATIC_FILE = 'http://localhost:2222/assets/1.0.2';
|
|
|
const STATIC_FILE = 'http://cdn.yoho.cn/huodong/2016yuanxiao/1.0.2';
|
|
|
const ENCRYPT_KEY = 'iamgtskkwhoareyou';
|
|
|
|
|
|
/**
|
...
|
...
|
@@ -66,11 +66,13 @@ class YuanxiaoController extends HuodongAction |
|
|
|
|
|
// 调用接口
|
|
|
$result = YuanxiaoModel::getChouqianInfo($uid, $nickName, $birthday, $gender);
|
|
|
$result['code'] = 200;
|
|
|
$result['data'] = array('name' => $nickName, 'type' => 'M2');
|
|
|
if ($result['code'] === 200) { // 处理成功就跳转到等待页
|
|
|
// 将返回的结果存入cookeie中15分钟
|
|
|
$this->setCookie('yuanxiaochouqian', json_encode($result['data']), time() + 15*60);
|
|
|
$cookieData = array(
|
|
|
'name' => $nickName,
|
|
|
'type' => $result['data']['randomCode']
|
|
|
);
|
|
|
$this->setCookie('yuanxiaochouqian', json_encode($cookieData), time() + 15*60);
|
|
|
$this->go(Helpers::url('/cuxiao/yuanxiao/wait'));
|
|
|
} else { // 不成功就显示返回的错误信息
|
|
|
$this->_view->display('info', array(
|
...
|
...
|
@@ -125,19 +127,18 @@ class YuanxiaoController extends HuodongAction |
|
|
$this->auditJumpLogin();
|
|
|
|
|
|
$result = $this->getCookie('yuanxiaochouqian', null);
|
|
|
if (empty($result)) { // 未取到信息就重新测试
|
|
|
$this->go(Helpers::url('/cuxiao/yuanxiao/info'));
|
|
|
}
|
|
|
// if (empty($result)) { // 未取到信息就重新测试
|
|
|
// $this->go(Helpers::url('/cuxiao/yuanxiao/info'));
|
|
|
// }
|
|
|
// cookie中存的结果
|
|
|
$result = json_decode($result, true);
|
|
|
$shareUrl = Helpers::url('/cuxiao/yuanxiao/share', array(
|
|
|
'name' => $this->encrypt($result['name']),
|
|
|
'hash' => $this->encrypt($this->getUid())
|
|
|
));
|
|
|
$result['type'] = $this->get('type', 'M2');
|
|
|
|
|
|
$this->_view->display('result', array(
|
|
|
'staticTitle' => '元宵抽签',
|
|
|
'weixinShare' => $this->_isApp ? false : true, // 是否需要微信分享
|
|
|
'staticFile' => self::STATIC_FILE,
|
|
|
'result' => $result,
|
|
|
'shareUrl' => $shareUrl,
|
...
|
...
|
@@ -152,22 +153,23 @@ class YuanxiaoController extends HuodongAction |
|
|
*/
|
|
|
public function shareAction()
|
|
|
{
|
|
|
// 昵称从url中解析
|
|
|
$name = $this->decrypt($this->get('name', ''));
|
|
|
// 用户UID
|
|
|
$uid = $this->decrypt($this->get('hash', ''));
|
|
|
if (empty($uid)) {
|
|
|
$this->go(Helpers::url('/cuxiao/yuanxiao/index'));
|
|
|
}
|
|
|
|
|
|
// 调用接口获取type和count
|
|
|
$result = array('type' => 'M1', 'count' => 9887);
|
|
|
$result = YuanxiaoModel::getChoujiangShareInfo($uid);
|
|
|
|
|
|
$this->_view->display('share', array(
|
|
|
'staticTitle' => '元宵抽签',
|
|
|
'staticFile' => self::STATIC_FILE,
|
|
|
'result' => array(
|
|
|
'name' => $name,
|
|
|
'name' => $result['name'],
|
|
|
'type' => $result['type']
|
|
|
),
|
|
|
'count' => $result['count'],
|
|
|
'count' => $result['total'],
|
|
|
'staticJS' => array(
|
|
|
'share.js'
|
|
|
)
|
...
|
...
|
|