123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\api\controller\v1\user;
- use app\Request;
- use app\services\product\product\StoreProductLogServices;
- use app\services\user\UserCancelServices;
- use app\services\user\UserServices;
- use app\services\wechat\WechatUserServices;
- /**
- * 用户类
- * Class UserController
- * @package app\api\controller\store
- */
- class UserController
- {
- protected $services = NUll;
- /**
- * UserController constructor.
- * @param UserServices $services
- */
- public function __construct(UserServices $services)
- {
- $this->services = $services;
- }
- /**
- * 获取用户信息
- * @param Request $request
- * @return mixed
- */
- public function userInfo(Request $request)
- {
- $info = $request->user()->toArray();
- return app('json')->success($this->services->userInfo($info));
- }
- /**
- * 用户资金统计
- * @param Request $request
- * @return mixed
- */
- public function balance(Request $request)
- {
- $uid = (int)$request->uid();
- return app('json')->success($this->services->balance($uid));
- }
- /**
- * 个人中心
- * @param Request $request
- * @return mixed
- */
- public function user(Request $request)
- {
- $user = $request->user()->toArray();
- return app('json')->success($this->services->personalHome($user, $request->tokenData()));
- }
- /**
- * 获取活动状态
- * @return mixed
- */
- public function activity()
- {
- return app('json')->success($this->services->activity());
- }
- /**
- * 用户修改信息
- * @param Request $request
- * @return mixed
- */
- public function edit(Request $request)
- {
- list($avatar, $nickname) = $request->postMore([
- ['avatar', ''],
- ['nickname', ''],
- ], true);
- if (!$avatar && $nickname == '') {
- return app('json')->fail(410134);
- }
- $uid = (int)$request->uid();
- if ($this->services->eidtNickname($uid, ['avatar' => $avatar, 'nickname' => $nickname])) {
- return app('json')->success(100014);
- }
- return app('json')->fail(100015);
- }
- /**
- * 推广人排行
- * @param Request $request
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function rank(Request $request)
- {
- $data = $request->getMore([
- ['page', ''],
- ['limit', ''],
- ['type', '']
- ]);
- return app('json')->success($this->services->getRankList($data));
- }
- /**
- * 添加访问记录
- * @param Request $request
- * @return mixed
- */
- public function set_visit(Request $request)
- {
- $data = $request->postMore([
- ['url', ''],
- ['stay_time', 0]
- ]);
- if ($data['url'] == '') return app('json')->fail(100100);
- $data['uid'] = (int)$request->uid();
- $data['ip'] = $request->ip();
- if ($this->services->setVisit($data)) {
- return app('json')->success(100021);
- } else {
- return app('json')->fail(100022);
- }
- }
- /**
- * 静默绑定推广人
- * @param Request $request
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function spread(Request $request)
- {
- [$spreadUid, $code] = $request->postMore([
- ['puid', 0],
- ['code', 0]
- ], true);
- $uid = (int)$request->uid();
- $res = $this->services->spread($uid, (int)$spreadUid, $code);
- return app('json')->success($res);
- }
- /**
- * 推荐用户
- * @param Request $request
- * @return mixed
- */
- public function spread_people(Request $request)
- {
- $spreadInfo = $request->postMore([
- ['grade', 0],
- ['keyword', ''],
- ['sort', ''],
- ]);
- if (!in_array($spreadInfo['grade'], [0, 1])) {
- return app('json')->fail(100100);
- }
- $uid = $request->uid();
- return app('json')->success($this->services->getUserSpreadGrade($uid, $spreadInfo['grade'], $spreadInfo['sort'], $spreadInfo['keyword']));
- }
- /**
- * 是否关注
- * @param Request $request
- * @return mixed
- */
- public function subscribe(Request $request)
- {
- if ($request->uid()) {
- /** @var WechatUserServices $wechatUserService */
- $wechatUserService = app()->make(WechatUserServices::class);
- $subscribe = (bool)$wechatUserService->value(['uid' => $request->uid()], 'subscribe');
- return app('json')->success(['subscribe' => $subscribe]);
- } else {
- return app('json')->success(['subscribe' => true]);
- }
- }
- /**
- * 用户注销
- * @param Request $request
- * @return mixed
- */
- public function SetUserCancel(Request $request)
- {
- /** @var UserCancelServices $userCancelServices */
- $userCancelServices = app()->make(UserCancelServices::class);
- $userCancelServices->SetUserCancel($request->uid());
- return app('json')->success(410135);
- }
- /**
- * 商品浏览记录
- * @param Request $request
- * @param StoreProductLogServices $services
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function visitList(Request $request, StoreProductLogServices $services)
- {
- $where['uid'] = (int)$request->uid();
- $where['type'] = 'visit';
- $result = $services->getList($where, 'product_id', 'id,product_id,max(add_time) as add_time');
- $time_data = [];
- if ($result['list']) {
- foreach ($result['list'] as $key => &$item) {
- $add_time = strtotime($item['add_time']);
- if (date('Y') == date('Y', $add_time)) {//今年
- $item['time_key'] = date('m-d', $add_time);
- } else {
- $item['time_key'] = date('Y-m-d', $add_time);
- }
- }
- $time_data = array_merge(array_unique(array_column($result['list'], 'time_key')));
- }
- $result['time'] = $time_data;
- return app('json')->success($result);
- }
- /**
- * 商品浏览记录删除
- * @param Request $request
- * @param StoreProductLogServices $services
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function visitDelete(Request $request, StoreProductLogServices $services)
- {
- $uid = (int)$request->uid();
- [$ids] = $request->postMore([
- ['ids', []],
- ], true);
- if ($ids) {
- $where = ['uid' => $uid, 'product_id' => $ids];
- $services->delete($where);
- }
- return app('json')->success('删除成功');
- }
- }
|