LoginController.php
7.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<?php
/**
* 登录注册
* Author: xiaojie
* DateTime: 2018/11/26 13:50
*/
namespace app\portal\controller;
use app\portal\model\UserModel;
use app\portal\validate\UsersValidate;
use cmf\controller\HomeBaseController;
use cmf\lib\Storage;
use anerg\OAuth2\OAuth;
use think\Config;
class LoginController extends HomeBaseController
{
//登录页面
public function login(){
return $this->fetch();
}
//登录提交
public function loginCommit(){
//提交参数手机号(mobile),密码(user_pass)
$param = $this->request->param();
$validate = new UsersValidate();
$userModel = new UserModel();
$map = [
'mobile' => $param['mobile'],
'user_pass' => cmf_password($param['user_pass']),
'user_type' => 2,
'user_status' => 1,
];
$userInfo = $userModel->where($map)->find();
if(!$userInfo){
$this->apiResponse(0,'账号或密码错误');
}
$ip = get_client_ip();
$data = [
'id' => $userInfo['id'],
'last_login_time' => time(),
'last_login_ip' => $ip,
];
if(!$validate->scene('edit')->check($data)){
$this->apiResponse(0,$validate->getError());
}
$res = $userModel->isUpdate(true)->save($data);
if($res){
//用户信息存入session
cmf_update_current_user($userInfo);
$this->apiResponse(1,'登录成功');
}
$this->apiResponse(0,'未知错误');
}
//第三方登录页面
public function thirdLogin(){
return $this->fetch();
}
//注册页面
public function register(){
return $this->fetch();
}
//注册提交
public function registerCommit(){
//提交参数手机号(mobile),验证码(mobile_code),密码(user_pass)
$param = $this->request->param();
//验证验证码是否正确
$common = new CommonController();
$common->validateMobileCode($param);
//验证场景add
$validate = new UsersValidate();
if(!$validate->scene('add')->check($param)){
$this->apiResponse(0,$validate->getError());
}
if(empty($param['user_pass'])){
$this->apiResponse(0,'密码不能为空!');
}
//是否已注册
$userModel = new UserModel();
$userInfo = $userModel->where(['mobile'=>$param['mobile'],'user_type'=>2])->find();
if($userInfo){
$this->apiResponse(0,'此账号已被注册');
}
//新增注册信息
$info['mobile'] = $param['mobile'];
$info['user_pass'] = cmf_password($param['user_pass']);
$info['user_type'] = 2;
$info['create_time'] = time();
$res = $userModel->allowField(true)->save($info);
if($res){
$this->apiResponse(1,'注册成功');
}
$this->apiResponse(0,'未知错误');
}
//首页个人中心
public function info(){
return $this->fetch();
}
//首页个人中心修改头像
public function updateAvatar(){
//判断是否登录
$login = cmf_is_user_login();
if($login){
$file = $this->request->file('avatar');
if (empty($file)) {
$this->apiResponse(0,'未检测出文件!');
}
$result = $file->validate([
'ext' => 'jpg,jpeg,png',
'size' => 1024 * 1024
])->move(WEB_ROOT . 'upload' . DIRECTORY_SEPARATOR . 'avatar' . DIRECTORY_SEPARATOR);
if ($result) {
$avatarSaveName = str_replace('//', '/', str_replace('\\', '/', $result->getSaveName()));
$avatar = 'avatar/' . $avatarSaveName;
$avatarPath = WEB_ROOT . "upload/" . $avatar;
$storage = new Storage();
$storage->upload($avatar, $avatarPath, 'image');
$id = cmf_get_current_user_id();
$userModel = new UserModel();
$res = $userModel->allowField(true)->update(['id'=>$id,'avatar'=>$avatar]);
if($res){
$userInfo = $userModel->where('id',$id)->find();
cmf_update_current_user($userInfo);
$this->apiResponse(1,'上传成功!');
}else{
$this->apiResponse(0,'上传失败!');
}
} else {
$this->apiResponse(0,$file->getError());
}
}else{
$this->apiResponse(0,'请登录后修改头像!');
}
}
//个人中心编辑页面
public function editInfo(){
return $this->fetch();
}
//个人中心编辑提交
public function updateNickname(){
//判断是否登录
$login = cmf_is_user_login();
$nickname = $this->request->param('nickname');
if($login){
$userModel = new UserModel();
$id = cmf_get_current_user_id();
$res = $userModel->allowField(true)->update(['id'=>$id,'user_nickname'=>$nickname]);
if($res){
$userInfo = $userModel->where('id',$id)->find();
cmf_update_current_user($userInfo);
$this->apiResponse(1,'保存成功!');
}else{
$this->apiResponse(0,'保存失败!');
}
}else{
$this->apiResponse(0,'请登录后修改资料!');
}
}
//第三方微信登录
public function wx_login(){
$config = Config::get('wx_login');
$app_id = $config['app_id'];
$redirect_uri = $config['redirect_uri'];
$scope = $config['scope'];
$state = md5(uniqid(rand(), TRUE));
$url = 'https://open.weixin.qq.com/connect/qrconnect?appid='.$app_id.'&redirect_uri='.$redirect_uri.'&response_type=code&scope='.$scope.'&state='.$state.'#wechat_redirect';
$res = $this->http_get($url);
var_dump(11);
var_dump($res);exit;
}
//curl get请求
public function http_get($url){
$curl = curl_init();//启动一个CURL会话
curl_setopt($curl, CURLOPT_URL,$url);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); // 对认证证书来源的检查
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); // 从证书中检查SSL加密算法是否存在
curl_setopt($curl, CURLOPT_TIMEOUT, 30); // 设置超时限制防止死循环
curl_setopt($curl, CURLOPT_HEADER, false);//不开启header
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); // 获取的信息以文件流的形式返回
$result = curl_exec($curl); //执行操作
curl_close($curl);
return $result;
}
//curl post请求
public function http_post($url,$data,$headers){
$curl = curl_init();//启动一个CURL会话
curl_setopt($curl, CURLOPT_URL, $url); // 要访问的地址
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); // 对认证证书来源的检查
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); // 从证书中检查SSL加密算法是否存在
curl_setopt($curl, CURLOPT_POST, true); // 发送一个常规的Post请求
curl_setopt($curl, CURLOPT_POSTFIELDS, $data); // Post提交的数据包
curl_setopt($curl, CURLOPT_TIMEOUT, 30); // 设置超时限制防止死循环
curl_setopt($curl, CURLOPT_HEADER, true); // 开启header
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);//请求头部
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); // 获取的信息以文件流的形式返回
$result = curl_exec($curl); //执行操作
curl_close($curl);
return $result;
}
}