123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- <?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\outapi\controller;
- use think\facade\App;
- use app\services\user\OutUserServices;
- /**
- * 用户控制器
- * Class User
- * @package app\outapi\controller
- */
- class User extends AuthController
- {
- /**
- * User constructor.
- * @param App $app
- * @param OutUserServices $service
- * @method temp
- */
- public function __construct(App $app, OutUserServices $services)
- {
- parent::__construct($app);
- $this->services = $services;
- }
- /**
- * 用户列表
- * @return mixed
- */
- public function lst()
- {
- $where = $this->request->getMore([
- ['nickname', ''],
- ['status', ''],
- ['field_key', ''],
- ]);
- return app('json')->success($this->services->getUserList($where));
- }
- /**
- * 保存新建的资源
- *
- * @param \think\Request $request
- * @return \think\Response
- */
- public function save()
- {
- $data = $this->request->postMore([
- ['real_name', ''],
- ['phone', 0],
- ['mark', ''],
- ['pwd', ''],
- ['level', 0],
- ['spread_open', 0],
- ['is_promoter', 0],
- ['status', 1]
- ]);
- $uid = $this->services->saveUser(0, $data);
- if (!$uid) {
- return app('json')->fail(100022);
- }
- return app('json')->success(100021, ['uid' => $uid]);
- }
- /**
- * 更新用户
- * @param $uid
- * @return mixed
- */
- public function update($uid)
- {
- $data = $this->request->postMore([
- ['real_name', ''],
- ['phone', 0],
- ['mark', ''],
- ['pwd', ''],
- ['level', 0],
- ['spread_open', 1],
- ['is_promoter', 0],
- ['status', 1]
- ]);
- if (!$uid) return app('json')->fail(100100);
- $this->services->saveUser((int)$uid, $data);
- return app('json')->success(100001);
- }
- /**
- * 赠送相关
- * @param int $uid
- * @return mixed
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function give($uid)
- {
- $data = $this->request->postMore([
- ['money_status', 0],
- ['money', 0],
- ['integration_status', 0],
- ['integration', 0],
- ['days', 0],
- ['coupon', 0]
- ]);
- if (!$uid) return app('json')->fail(100100);
- if (!$this->services->otherGive((int)$uid, $data)) {
- return app('json')->fail(100005);
- }
- return app('json')->success(100010);
- }
- /**
- * 获取用户详情
- * @param $uid
- * @return \think\Response
- * @author 吴汐
- * @email 442384644@qq.com
- * @date 2023/06/20
- */
- public function info($uid)
- {
- if (!$uid) return app('json')->fail(100100);
- $data = $this->services->userInfo($uid);
- return app('json')->success(compact('data'));
- }
- /**
- * 赠送余额
- * @param int $uid
- * @return mixed
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function giveBalance($uid)
- {
- $data = $this->request->postMore([
- ['money_status', 0],
- ['money', 0],
- ['integration_status', 0],
- ['integration', 0],
- ['days', 0],
- ['coupon', 0]
- ]);
- if (!$uid) return app('json')->fail(100100);
- if (!$this->services->otherGive((int)$uid, $data)) {
- return app('json')->fail(100005);
- }
- return app('json')->success(100010);
- }
- /**
- * 赠送积分
- * @param int $uid
- * @return mixed
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function givePoint($uid)
- {
- $data = $this->request->postMore([
- ['money_status', 0],
- ['money', 0],
- ['integration_status', 0],
- ['integration', 0],
- ['days', 0],
- ['coupon', 0]
- ]);
- if (!$uid) return app('json')->fail(100100);
- if (!$this->services->otherGive((int)$uid, $data)) {
- return app('json')->fail(100005);
- }
- return app('json')->success(100010);
- }
- }
|