1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * Author: luzheng.liu
- * Time: 2020/12/5 17:15
- */
- namespace app\index\controller;
- use app\common\service\CommonService;
- use app\index\BaseController;
- class User extends BaseController {
- public function login() {
- $params = [
- 'id' => CommonService::getSetData()['channel_id'],
- 'userid' => input('unionid'),
- 'name' => input('nickName'),
- 'avatar' => input('avatar'),
- 'key' => md5(input('userid').CommonService::getSetData()['channel_auth_code'])
- ];
- session('unionid', input('unionid'));
- if (session('unionid')){
- var_dump(session('unionid'));
- die();
- $visitorId = input('visitorId');
- $notifyUrl = input('notify_url');
- //增加客户自己的验证逻辑,例如登录,关注,付费,填手机号等
- $key = md5($visitorId.CommonService::getSetData()['channel_auth_code']);
- if(strpos($notifyUrl,'?') !== false){//url参数处理,将key加到url参数中
- $returnUrl = $notifyUrl."&key=".$key."&expire=3600";
- }else{
- $returnUrl = $notifyUrl."?key=".$key."&expire=3600";
- }
- header("Location:".$returnUrl);//跳转到直播观看页
- die();
- }
- header('Location:http://mudu.tv/activity.php?a=userAssign&'.http_build_query($params));
- }
- }
|