From 8670b8974faec3a3a252643c79072b787c2c581c Mon Sep 17 00:00:00 2001 From: tpingzhang <635929049@qq.com> Date: Fri, 11 Oct 2019 14:31:06 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B6=85=E7=BA=A7=E7=AD=BE=20=E7=99=BB?= =?UTF-8?q?=E5=85=A5=E7=8A=B6=E6=80=81=E9=AA=8C=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Mobile/Controller/SsgController.class.php | 2 + .../Sdk/Controller/Ipa365Controller.class.php | 37 +++++++++++++++---- 2 files changed, 31 insertions(+), 8 deletions(-) diff --git a/Application/Mobile/Controller/SsgController.class.php b/Application/Mobile/Controller/SsgController.class.php index 354e53961..79488797a 100644 --- a/Application/Mobile/Controller/SsgController.class.php +++ b/Application/Mobile/Controller/SsgController.class.php @@ -23,6 +23,8 @@ class SsgController extends BaseController { $user = session("user_auth"); $promoteId = I("promote_id"); if (!$promoteId) { + echo "链接失效,请重新向推广员索取链接。"; + exit(); $this->error("参数非法"); } $exists = M("promote", "tab_")->where(array('id' => $promoteId))->find(); diff --git a/Application/Sdk/Controller/Ipa365Controller.class.php b/Application/Sdk/Controller/Ipa365Controller.class.php index aadb1c3d9..3b62fb913 100644 --- a/Application/Sdk/Controller/Ipa365Controller.class.php +++ b/Application/Sdk/Controller/Ipa365Controller.class.php @@ -7,8 +7,16 @@ use Mobile\Controller\SsgController; // a8eeac3335cef5ee117d357738598f691932513b class Ipa365Controller extends BaseController{ const signprice = 10; // 超级签价格 + public $userinfo; + + public function __construct() { + $this->userinfo = $_SESSION['onethink_home']['user_auth']; + parent::__construct(); + } public function test(){ + $user = $this->userinfo; + pp($user); die(); $ipa365 = new Ipa365Controller(); $result = $ipa365->pay_notify(array( @@ -95,7 +103,7 @@ class Ipa365Controller extends BaseController{ * 发起支付 */ public function pay() { - $userId = $_SESSION['user_id']; + $userId = $this->userinfo['user_id']; if (!$userId ) { $this->error("请登入", "/mobile.php/ssg/login"); } @@ -165,8 +173,13 @@ class Ipa365Controller extends BaseController{ } - + // 微信分享页面 public function paytip(){ + $userId = $this->userinfo['user_id']; + if (!$userId ) { + $this->error("请登入", "/mobile.php/ssg/login"); + } + $orderId = I('order_id'); $payLog = M('game_supersign', 'tab_')->where(array( @@ -214,11 +227,15 @@ class Ipa365Controller extends BaseController{ public function install_show() { $orderId = I('order_id', 0); $gameId = I('game_id', 0); - $userId = I('user_id', 0); + /* $userId = I('user_id', 0); $user = M('user', 'tab_')->where(array( 'id' => $userId - ))->find(); + ))->find(); */ + $userId = $this->userinfo['user_id']; + if (!$userId ) { + $this->error("请登入", "/mobile.php/ssg/login"); + } // $userId = $_SESSION['user_id']; if (!$userId ) { @@ -250,7 +267,7 @@ class Ipa365Controller extends BaseController{ * 获取用户安装历史url */ public function get_install_list() { - $gameId = I('game_id', 0); + /* $gameId = I('game_id', 0); $where = array( 'pay_status' => 1, 'ticket' => array('neq', '') @@ -261,14 +278,14 @@ class Ipa365Controller extends BaseController{ // pp($list); $url = $game['supersign_url']."?code={$code}"; pp($url); - redirect($url); + redirect($url); */ } /** * 用户点击安装 */ public function install() { - $userId = I('user_id', 0); + $userId = $this->userinfo['user_id']; if (!$userId ) { $this->error("请登入", "/mobile.php/ssg/login"); } @@ -342,7 +359,11 @@ class Ipa365Controller extends BaseController{ * 打包列表 */ public function pay_list() { - $userId = 0; + $userId = $this->userinfo['user_id']; + if (!$userId ) { + $this->error("请登入", "/mobile.php/ssg/login"); + } + $list = M('game_supersion', 'tab_')->where(array( 'user_id' => $userId, ))->select();