123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * Author: luzheng.liu
- * Time: 2020/12/5 17:15
- */
- namespace app\index\controller;
- use app\common\service\CommonService;
- use app\index\BaseController;
- use app\index\exception\ApiException;
- use app\index\model\UserModel;
- use app\index\model\VisitorModel;
- use think\facade\Cache;
- use think\facade\Session;
- class User extends BaseController {
- public function login() {
- $channelId = input('channelId');
- if (empty($channelId)){
- throw new ApiException('渠道id不为空');
- }
- $params = [
- 'id' => $channelId,
- 'userid' => input('unionid'),
- 'name' => input('nickName'),
- 'avatar' => input('avatar'),
- 'key' => md5(input('unionid').CommonService::getSetData($channelId)['channel_auth_code'])
- ];
- Session::set('wxId',input('unionid'));
- (new UserModel())->insertGetId([
- 'channel_id' => $channelId,
- 'unionid' => input('unionid'),
- 'name' => input('nickName'),
- 'avatar' => input('avatar'),
- 'key' => $params['key'],
- ]);
- header('Location:http://webcasting.bizconfstreaming.com/activity.php?a=userAssign&'.http_build_query($params));
- }
- public function clearSession() {
- // var_dump($_SERVER);
- Session::clear();
- // var_dump($_SERVER);
- }
- }
|