| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <?php
- namespace app\workerapi\logic;
- use app\common\enum\worker\WorkerAccountLogEnum;
- use app\common\enum\YesNoEnum;
- use app\common\logic\BaseLogic;
- use app\common\model\bank_account\BankAccount;
- use app\common\model\master_worker\MasterWorker;
- use app\common\model\master_worker\MasterWorkerAccountLog;
- use app\common\model\master_worker\MasterWorkerInfo;
- use app\common\model\works\ServiceWork;
- use app\common\service\FileService;
- use think\Exception;
- use think\facade\Config;
- /**
- * @author 林海涛
- * @date 2024/7/10 下午1:45
- */
- class MasterWorkerLogic extends BaseLogic
- {
- public static function changePassword(array $params, int $userId)
- {
- try {
- $user = MasterWorker::findOrEmpty($userId);
- if ($user->isEmpty()) {
- throw new \Exception('用户不存在');
- }
- // 密码盐
- $passwordSalt = Config::get('project.unique_identification');
- if (!empty($user['password'])) {
- if (empty($params['old_password'])) {
- throw new \Exception('请填写旧密码');
- }
- $oldPassword = create_password($params['old_password'], $passwordSalt);
- if ($oldPassword != $user['password']) {
- throw new \Exception('原密码不正确');
- }
- }
- // 保存密码
- $password = create_password($params['password'], $passwordSalt);
- $user->password = $password;
- $user->save();
- return true;
- } catch (\Exception $e) {
- self::setError($e->getMessage());
- return false;
- }
- }
- public static function changeMobile(array $params, int $userId)
- {
- try {
- $user = MasterWorker::findOrEmpty($userId);
- if ($user->isEmpty()) {
- throw new \Exception('用户不存在');
- }
- if($user->mobile == $params['mobile']){
- throw new \Exception('输入的手机号相同');
- }
- $where = [['mobile', '=', $params['mobile']]];
- $existUser = MasterWorker::where($where)->findOrEmpty();
- if (!$existUser->isEmpty()) {
- throw new \Exception('该手机号已被使用');
- }
- $user->mobile= $params['mobile'];
- $user->save();
- return true;
- } catch (\Exception $e) {
- self::setError($e->getMessage());
- return false;
- }
- }
- public static function logOff(int $userId)
- {
- try {
- $user = MasterWorker::findOrEmpty($userId);
- if ($user->isEmpty()) {
- throw new \Exception('用户不存在');
- }
- if($user->work_status == 0 ){
- throw new Exception('请先申请长期停单');
- }
- if($user->work_status == 1 ){
- throw new Exception('请等待长期停单审核');
- }
- $user->is_disable = YesNoEnum::YES;
- $user->save();
- return true;
- } catch (\Exception $e) {
- self::setError($e->getMessage());
- return false;
- }
- }
- public static function stopWork(int $userId)
- {
- try {
- $user = MasterWorker::findOrEmpty($userId);
- if ($user->isEmpty()) {
- throw new \Exception('用户不存在');
- }
- if($user->work_status == 1 ){
- throw new Exception('请等待长期停单审核');
- }
- if($user->work_status == 2 ){
- throw new Exception('长期停单审核通过');
- }
- $user->work_status = 1;
- $user->save();
- return true;
- } catch (\Exception $e) {
- self::setError($e->getMessage());
- return false;
- }
- }
- public static function detail($userId): array
- {
- $worker = MasterWorker::field('id,sn,avatar,real_avatar,real_name,nickname,account,mobile,sex,estimate_money,user_money,earnest_money,exp,worker_number,work_status,accept_order_status')
- ->findOrEmpty($userId)
- ->toArray();
- //今日收益
- $worker['account_today'] = MasterWorkerAccountLog::where(['worker_id'=> $worker['id'],'action'=>1,'change_type'=>WorkerAccountLogEnum::UM_INC_ADMIN])->whereTime('create_time', 'today')->sum('change_amount');
- //本月成功订单
- $worker['success_work'] = ServiceWork::where(['master_worker_id'=>$worker['id'],'service_status'=>3])->whereTime('create_time', 'month')->count();
- //本月失败单
- $worker['fail_work'] = ServiceWork::where(['master_worker_id'=>$worker['id'],'service_status'=>4])->whereTime('create_time', 'month')->count();
- return $worker;
- }
- public static function setInfo(int $userId, array $params)
- {
- try {
- if ($params['field'] == "avatar" || $params['field'] == "real_avatar") {
- $params['value'] = FileService::setFileUrl($params['value']);
- }
- if($params['field'] == 'accept_order_status'){
- //验证身份证信息是否审核通过
- $idCard = MasterWorkerInfo::where(['worker_id'=>$userId])->findOrEmpty();
- if ($idCard->isEmpty()) {
- throw new \Exception('请先完善身份证信息',20);
- }
- if($idCard->audit_state == 0){
- throw new \Exception('身份证信息核验中,请等待核验完成',20);
- }
- if($idCard->audit_state == 1){
- throw new \Exception('身份证信息核验不通过,请重新填写',20);
- }
- //验证银行卡信息是否审核通过
- $bank = BankAccount::where(['worker_id'=>$userId])->findOrEmpty();
- if ($bank->isEmpty()) {
- throw new \Exception('请先完善银行卡信息',21);
- }
- if($bank->audit_state == 0){
- throw new \Exception('银行卡信息核验中,请等待核验完成',21);
- }
- if($bank->audit_state == 1){
- throw new \Exception('银行卡信息核验不通过,请重新填写',21);
- }
- }
- return MasterWorker::update([
- 'id' => $userId,
- $params['field'] => $params['value']]
- );
- } catch (\Exception $e) {
- self::$error = $e->getMessage();
- self::$returnCode = $e->getCode();
- return false;
- }
- }
- }
|