mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
92 lines
3.4 KiB
PHP
92 lines
3.4 KiB
PHP
<?php
|
||
|
||
namespace app\data\controller\api;
|
||
|
||
use app\data\service\MessageService;
|
||
use app\data\service\UserService;
|
||
use think\admin\Controller;
|
||
|
||
/**
|
||
* 会员登录注册接口
|
||
* Class Login
|
||
* @package app\data\controller\api
|
||
*/
|
||
class Login extends Controller
|
||
{
|
||
/**
|
||
* 绑定数据表
|
||
* @var string
|
||
*/
|
||
protected $table = 'DataMember';
|
||
|
||
/**
|
||
* 会员登录接口
|
||
* @throws \think\Exception
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function in()
|
||
{
|
||
$data = $this->_vali([
|
||
'phone.mobile' => '手机号码格式错误!',
|
||
'phone.require' => '手机号码不能为空!',
|
||
'password.require' => '登录密码不能为空!',
|
||
]);
|
||
$map = ['deleted' => 0, 'phone' => $data['phone']];
|
||
$user = $this->app->db->name($this->table)->where($map)->find();
|
||
if (empty($user)) $this->error('该手机号还没有注册哦!');
|
||
if (empty($user['status'])) $this->error('该会员账号状态异常!');
|
||
if (md5($data['password']) === $user['password']) {
|
||
$this->success('手机登录成功!', UserService::instance()->get($map, true));
|
||
} else {
|
||
$this->error('账号登录失败,请稍候再试!');
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 会员统一注册入口
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function register()
|
||
{
|
||
$data = $this->_vali([
|
||
'username.default' => '',
|
||
'region_area.default' => '',
|
||
'region_city.default' => '',
|
||
'region_province.default' => '',
|
||
'phone.mobile' => '手机号码格式错误!',
|
||
'phone.require' => '手机号码不能为空!',
|
||
'password.require' => '登录密码不能为空!',
|
||
]);
|
||
$map = ['phone' => $data['phone'], 'deleted' => 0];
|
||
if ($this->app->db->name($this->table)->where($map)->count() > 0) {
|
||
$this->error('手机号已注册,请使用其它手机号!');
|
||
}
|
||
$data['password'] = md5($data['password']);
|
||
$user = UserService::instance()->save($map, $data, true);
|
||
empty($user) ? $this->success('会员注册成功!', $user) : $this->error('手机注册失败!');
|
||
}
|
||
|
||
/**
|
||
* 发送短信验证码
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function sendsms()
|
||
{
|
||
$data = $this->_vali([
|
||
'phone.require' => '手机号不能为空!',
|
||
'phone.mobile' => '手机号格式错误!',
|
||
'secure.require' => '安全码不能为空!',
|
||
]);
|
||
if ($data['secure'] !== sysconf('zt.secure_code')) $this->error('短信发送安全码错误!');
|
||
[$state, $message, $data] = MessageService::instance()->sendVerifyCode($data['phone']);
|
||
$state ? $this->success($message, $data) : $this->error($message, $data);
|
||
// 检测验证码:if(MessageService::instance()->checkVerifyCode($data['verify'], $data['phone'])){ }
|
||
}
|
||
|
||
} |