123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <?php
- namespace App\Http\Controllers\QuickApp\User;
- use App\Http\Controllers\QuickApp\BaseController;
- use App\Libs\AliSMS;
- use App\Modules\Subscribe\Services\YearOrderService;
- use App\Modules\User\Services\QappUserService;
- use App\Modules\User\Services\UserSignService;
- use Illuminate\Http\Request;
- use Redis;
- class UserController extends BaseController
- {
- /**
- * @apiDefine User 用户
- */
- /**
- * @apiVersion 1.0.0
- * @apiDescription 获取用户信息
- * @api {GET} userinfo 获取用户信息
- * @apiHeader {String} [Authorization] token
- * @apiGroup User
- * @apiName index
- * @apiSuccess {Number} id 用户ID.
- * @apiSuccess {String} openid 微信openid.
- * @apiSuccess {String} unionid 微信unionid.
- * @apiSuccess {Number} distribution_channel_id 分销渠道ID.
- * @apiSuccess {String} province 省份.
- * @apiSuccess {String} city 城市.
- * @apiSuccess {String} country 国家.
- * @apiSuccess {String} headimgurl 头像地址.
- * @apiSuccess {Number} send_order_id 派单ID.
- * @apiSuccess {Number=0,1} sex 性别.
- * @apiSuccess {String} balance 书币余额.
- * @apiSuccess {Int} is_vip 是否vip
- * @apiSuccess {String} vip_days 364天.
- * @apiSuccess {String} phone 手机号.
- * @apiSuccessExample {json} Success-Response:
- *
- * {
- * "code": 0,
- * "msg": "",
- * "data": {
- * "id": 56,
- * "openid": "sdfs34ssdfdsf",
- * "unionid": "SDFSD3343S",
- * "distribution_channel_id": 1212,
- * "province": "浙江省",
- * "city": "杭州",
- * "country": "中国",
- * "headimgurl": "http://..",
- * "send_order_id": 323,
- * "balance": 8956,
- * "register_time": "2017-12-12 12:12:12",
- * "phone": "12312435",
- * }
- * }
- */
- public function index()
- {
- $data = $this->user_info;
- if (!$data->head_img) {
- $data->head_img = 'https://yueduyun.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/img/defaulthead.png';
- }
- $data['is_vip'] = 0;
- $data['vip_days'] = 0;
- $data['phone'] = $this->phone;
- $year_record = YearOrderService::getRecord($this->uid);
- if ($year_record) {
- $data['is_vip'] = 1;
- $time = strtotime($year_record['end_time']) - time();
- if ($time >= 86400) {
- $data['vip_days'] = floor($time / 86400) . '天';
- } elseif ($time > 3600) {
- $data['vip_days'] = floor($time / 3600) . '小时';
- } elseif ($time > 60) {
- $data['vip_days'] = floor($time / 60) . '分钟';
- } else {
- $data['vip_days'] = $time . '秒';
- }
- }
- return response()->success($data);
- }
- /**
- * @apiVersion 1.0.0
- * @apiDescription 用户签到
- * @api {GET} sign 用户签到
- * @apiHeader {String} [Authorization] token
- * @apiGroup User
- * @apiName sign
- * @apiSuccess {Double} fee 签到奖励
- * @apiSuccess {Number} days 签到天数
- * @apiSuccessExample {json} Success-Response:
- *
- * {
- * "code": 0,
- * "msg": "",
- * "data": {
- * "fee": 30,
- * "days": 1
- * }
- * }
- */
- public function sign()
- {
- $result = UserSignService::signV2($this->uid, date('Y-m-d'));
- if ($result) {
- return response()->success($result);
- }
- return response()->error('QAPP_SYS_ERROR');
- }
- /**
- * @apiVersion 1.0.0
- * @apiDescription 发送验证码
- * @api {POST} user/sendCode 发送验证码
- * @apiHeader {String} [Authorization] token
- * @apiGroup User
- * @apiName sendCode
- * @apiParam {String} phone 手机号
- * @apiSuccessExample {json} Success-Response:
- *
- * {
- * "code": 0,
- * "msg": "",
- * "data": {}
- * }
- */
- public function sendCode(Request $request)
- {
- $phone = $request->post('phone');
- $code = random_int(1000, 9999);
- Redis::setex('quser_code:' . $phone, 120, $code);
- AliSMS::send($phone, 'quickapp_user_bind_phone', ['code' => $code]);
- return response()->success();
- }
- /**
- * @apiVersion 1.0.0
- * @apiDescription 绑定手机号
- * @api {POST} user/bindPhone 绑定手机号
- * @apiHeader {String} [Authorization] token
- * @apiGroup User
- * @apiName bindPhone
- * @apiParam {String} phone 手机号
- * @apiParam {String} code 验证码
- * @apiSuccessExample {json} Success-Response:
- *
- * {
- * "code": 0,
- * "msg": "",
- * "data": {}
- * }
- */
- public function bindPhone(Request $request)
- {
- $code = $request->post('code');
- $phone = $request->post('phone');
- $old = Redis::get('quser_code:' . $phone);
- if ($old && $old == $code) {
- try {
- Redis::del('quser_code:' . $phone);
- $result = QappUserService::bindPhoneStatic($this->uid, $phone);
- if (!$result) {
- return response()->error('WAP_BIND_PHONE_EXIST');
- } else {
- return response()->success();
- }
- } catch (\Exception $e) {
- return response()->error();
- }
- } else {
- return response()->error('WAP_SEND_CODE_ERROR');
- }
- }
- }
|