| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- <?php
- namespace app\adminapi\controller\v1\agent;
- use app\adminapi\controller\AuthController;
- use Exception;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- use app\models\user\{
- User, UserBill
- };
- use app\models\routine\{
- RoutineCode, RoutineQrcode
- };
- use app\models\store\StoreOrder;
- use app\models\system\SystemAttachment;
- use app\models\wechat\WechatUser as UserModel;
- use crmeb\services\{
- QrcodeService, UploadService, UtilService as Util
- };
- /**
- * 分销商管理控制器
- * Class AgentManage
- * @package app\adminapi\controller\v1\agent
- */
- class AgentManage extends AuthController
- {
- /**
- * 分销管理列表
- * @return mixed
- * @throws Exception
- */
- public function index()
- {
- $where = Util::getMore([
- ['nickname', ''],
- ['data', ''],
- ['excel', ''],
- ['page', 1],
- ['limit', 20],
- ]);
- $where['mer_id'] = $this->merId;
- return $this->success(UserModel::agentSystemPage($where));
- }
- /**
- * 分销头部统计
- * @return mixed
- * @throws Exception
- */
- public function get_badge()
- {
- $where = Util::getMore([
- ['data', ''],
- ['nickname', ''],
- ]);
- $where['mer_id'] = $this->merId;
- $res = UserModel::getSpreadBadge($where);
- return $this->success(compact('res'));
- }
- /**
- * 推广人列表
- * @return mixed
- * @throws Exception
- */
- public function get_stair_list()
- {
- $where = Util::getMore([
- ['uid', 0],
- ['data', ''],
- ['nickname', ''],
- ['type', ''],
- ['page', 1],
- ['limit', 20],
- ]);
- if (!$where['uid'] || !User::merSet($this->merId)->where('uid', $where['uid'])->find()) {
- return $this->fail('查看的用户不存在');
- }
- return $this->success(UserModel::getStairList($where));
- }
- /**
- * 推广人列表头部统计
- * @return mixed
- * @throws Exception
- */
- public function get_stair_badge()
- {
- $where = Util::getMore([
- ['uid', ''],
- ['data', ''],
- ['nickname', ''],
- ['type', ''],
- ]);
- if (!$where['uid'] || !User::merSet($this->merId)->where('uid', $where['uid'])->find()) {
- return $this->fail('查看的用户不存在');
- }
- $res = UserModel::getSairBadge($where);
- return $this->success(compact('res'));
- }
- /**
- * 统计推广订单列表
- * @return mixed
- * @throws Exception
- */
- public function get_stair_order_list()
- {
- $where = Util::getMore([
- ['uid', 0],
- ['data', ''],
- ['order_id', ''],
- ['type', ''],
- ['page', 1],
- ['limit', 20],
- ]);
- if (!$where['uid'] || !User::merSet($this->merId)->where('uid', $where['uid'])->find()) {
- return $this->fail('查看的用户不存在');
- }
- return $this->success(UserModel::getStairOrderList($where));
- }
- /**
- * 统计推广订单头部统计
- * @return mixed
- * @throws Exception
- */
- public function get_stair_order_badge()
- {
- $where = Util::getMore([
- ['uid', ''],
- ['data', ''],
- ['order_id', ''],
- ['type', ''],
- ]);
- if (!$where['uid'] || !User::merSet($this->merId)->where('uid', $where['uid'])->find()) {
- return $this->fail('查看的用户不存在');
- }
- return $this->success(UserModel::getStairOrderBadge($where));
- }
- /**
- * 二级推荐人页面
- * @param string $uid
- * @return mixed
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- */
- public function stair_two($uid = '')
- {
- if ($uid == '') return $this->fail('参数错误');
- if (!User::merSet($this->merId)->where('uid', $uid)->find()) {
- return $this->fail('查看的用户不存在');
- }
- $spread_uid = User::where('spread_uid', $uid)->column('uid', 'uid');
- if (count($spread_uid))
- $spread_uid_two = User::where('spread_uid', 'in', $spread_uid)->column('uid', 'uid');
- else
- $spread_uid_two = [0];
- $list = User::alias('u')
- ->where('u.uid', 'in', $spread_uid_two)
- ->field('u.avatar,u.nickname,u.now_money,u.spread_time,u.uid')
- ->where('u.status', 1)
- ->order('u.add_time DESC')
- ->select()
- ->toArray();
- foreach ($list as $key => $value) $list[$key]['orderCount'] = StoreOrder::getOrderCount($value['uid']) ?: 0;
- return $this->success(compact('list'));
- }
- /**
- * 批量清除推广权限
- * @return mixed
- * @throws Exception
- */
- public function delete_promoter()
- {
- list($uids) = Util::postMore([
- ['uids', []]
- ], $this->request, true);
- if (!count($uids)) return $this->fail('请选择需要解除推广权限的用户!');
- User::beginTrans();
- try {
- if (User::merSet($this->merId)->where('uid', 'in', $uids)->update(['is_promoter' => 0])) {
- User::commitTrans();
- return $this->success('解除成功');
- } else {
- User::rollbackTrans();
- return $this->fail('解除失败');
- }
- } catch (\PDOException $e) {
- User::rollbackTrans();
- return $this->fail('数据库操作错误', ['line' => $e->getLine(), 'message' => $e->getMessage()]);
- } catch (Exception $e) {
- User::rollbackTrans();
- return $this->fail('系统错误', ['line' => $e->getLine(), 'message' => $e->getMessage()]);
- }
- }
- /**
- * 查看公众号推广二维码
- * @param string $uid
- * @param string $action
- * @return mixed
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- */
- public function look_code($uid = '', $action = '')
- {
- if (!$uid || !$action) return $this->fail('缺少参数');
- if (!User::merSet($this->merId)->where('uid', $uid)->find()) {
- return $this->fail('查看的用户不存在');
- }
- try {
- if (method_exists($this, $action)) {
- $res = $this->$action($uid);
- if ($res)
- return $this->success($res);
- else
- return $this->fail(isset($res['msg']) ? $res['msg'] : '获取失败,请稍后再试!');
- } else
- return $this->fail('暂无此方法');
- } catch (Exception $e) {
- return $this->fail('获取推广二维码失败,请检查您的微信配置', ['line' => $e->getLine(), 'messag' => $e->getMessage()]);
- }
- }
- /**
- * 获取小程序二维码
- * @param $uid
- * @return mixed
- * @throws DataNotFoundException
- * @throws ModelNotFoundException
- * @throws \think\Exception
- * @throws DbException
- */
- public function routine_code($uid)
- {
- $userInfo = User::getUserInfos($uid, $this->merId);
- if (!$userInfo) {
- return $this->fail('查看的用户不存在');
- }
- $name = $userInfo['uid'] . '_' . $userInfo['is_promoter'] . '_user.jpg';
- $imageInfo = SystemAttachment::getInfo($name, 'name');
- if (!$imageInfo) {
- $res = RoutineCode::getShareCode($uid, 'spread', '', '', $this->merId);
- if (!$res) throw new \think\Exception('二维码生成失败');
- $upload = UploadService::init(null, $this->merId);
- if ($upload->to('routine/spread/code')->stream($res['res'], $name) === false) {
- return $upload->getError();
- }
- $imageInfo = $upload->getUploadInfo();
- SystemAttachment::attachmentAdd($imageInfo['name'], $imageInfo['size'], $imageInfo['type'], $imageInfo['dir'], $imageInfo['thumb_path'], 1, $imageInfo['image_type'], $imageInfo['time']);
- RoutineQrcode::setRoutineQrcodeFind($res['id'], ['status' => 1, 'time' => time(), 'qrcode_url' => $imageInfo['dir']]);
- $urlCode = $imageInfo['dir'];
- } else $urlCode = $imageInfo['att_dir'];
- return ['code_src' => $urlCode];
- }
- /**
- * 获取公众号二维码
- * @param $uid
- * @return mixed
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @throws \think\Exception
- */
- public function wechant_code($uid)
- {
- if (!$uid || !User::merSet($this->merId)->where('uid', $uid)->find()) {
- return $this->fail('查看的用户不存在');
- }
- $qr_code = QrcodeService::getTemporaryQrcode('spread', $uid);
- if (isset($qr_code['url']))
- return ['code_src' => $qr_code['url']];
- else
- throw new \think\Exception('获取失败,请稍后再试!');
- }
- /**
- * TODO 查看小程序推广二维码
- * @param string $uid
- * @return string
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- */
- public function look_xcx_code($uid = '')
- {
- if (!$uid || !User::merSet($this->merId)->where('uid', $uid)->find()) {
- return $this->fail('查看的用户不存在');
- }
- if (!strlen(trim($uid))) return $this->fail('缺少参数');
- try {
- $userInfo = User::getUserInfos($uid);
- $name = $userInfo['uid'] . '_' . $userInfo['is_promoter'] . '_user.jpg';
- $imageInfo = SystemAttachment::getInfo($name, 'name');
- if (!$imageInfo) {
- $res = RoutineCode::getShareCode($uid, 'spread', '', '', $this->merId);
- if (!$res) return $this->fail('二维码生成失败');
- $upload = UploadService::init(null, $this->merId);
- if ($upload->to('routine/spread/code')->stream($res['res'], $name) === false) {
- return $upload->getError();
- }
- $imageInfo = $upload->getUploadInfo();
- SystemAttachment::attachmentAdd($imageInfo['name'], $imageInfo['size'], $imageInfo['type'], $imageInfo['dir'], $imageInfo['thumb_path'], 1, $imageInfo['image_type'], $imageInfo['time']);
- RoutineQrcode::setRoutineQrcodeFind($res['id'], ['status' => 1, 'time' => time(), 'qrcode_url' => $imageInfo['dir']]);
- $urlCode = $imageInfo['dir'];
- } else $urlCode = $imageInfo['att_dir'];
- return $this->success(['code_src' => $urlCode]);
- } catch (Exception $e) {
- return $this->fail('查看推广二维码失败!', ['line' => $e->getLine(), 'meassge' => $e->getMessage()]);
- }
- }
- /**
- * 查看H5推广二维码
- * @param string $uid
- * @return mixed|string
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- */
- public function look_h5_code($uid = '')
- {
- if (!$uid || !User::merSet($this->merId)->where('uid', $uid)->find()) {
- return $this->fail('查看的用户不存在');
- }
- if (!strlen(trim($uid))) return $this->fail('缺少参数');
- try {
- $userInfo = User::getUserInfos($uid);
- $name = $userInfo['uid'] . '_h5_' . $userInfo['is_promoter'] . '_user.jpg';
- $imageInfo = SystemAttachment::getInfo($name, 'name');
- if (!$imageInfo) {
- $urlCode = QrcodeService::getWechatQrcodePath($uid . '_h5_' . $userInfo['is_promoter'] . '_user.jpg', '');
- } else $urlCode = $imageInfo['att_dir'];
- return $this->success(['code_src' => $urlCode]);
- } catch (Exception $e) {
- return $this->fail('查看推广二维码失败!', ['line' => $e->getLine(), 'meassge' => $e->getMessage()]);
- }
- }
- /**
- * 解除单个用户的推广权限
- * @param int $uid
- * @return
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- */
- public function delete_spread($uid)
- {
- if (!$uid || !User::merSet($this->merId)->where('uid', $uid)->find()) {
- return $this->fail('查看的用户不存在');
- }
- $res = User::where('uid', $uid)->update(['spread_uid' => 0]);
- if ($res !== false)
- return $this->success('解除成功');
- else
- return $this->fail('解除失败');
- }
- /**
- * 清除推广人
- * @param int $uid
- * @return
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- */
- public function empty_spread($uid = 0)
- {
- if (!$uid) return $this->fail('缺少参数');
- if (!$uid || !User::merSet($this->merId)->where('uid', $uid)->find()) {
- return $this->fail('查看的用户不存在');
- }
- $res = true;
- $spread_uid = User::where('spread_uid', $uid)->column('uid', 'uid');
- if (count($spread_uid)) $res = $res && false !== User::where('spread_uid', 'in', $spread_uid)->update(['spread_uid' => 0]);
- $res = $res && false !== User::where('spread_uid', $uid)->update(['spread_uid' => 0]);
- if ($res)
- return $this->success('清除成功');
- else
- return $this->fail('清除失败');
- }
- /**
- * 个人资金详情页面
- * @param string $uid
- * @return mixed
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- */
- public function now_money($uid = '')
- {
- if ($uid == '') return $this->fail('参数错误');
- if (!$uid || !User::merSet($this->merId)->where('uid', $uid)->find()) {
- return $this->fail('查看的用户不存在');
- }
- $list = UserBill::where('uid', $uid)->where('category', 'now_money')
- ->field('mark,pm,number,add_time')
- ->where('status', 1)->order('add_time DESC')->select()->toArray();
- foreach ($list as &$v) {
- $v['add_time'] = date('Y-m-d H:i:s', $v['add_time']);
- }
- return $this->success($list);
- }
- }
|