363 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			363 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						||
// +----------------------------------------------------------------------
 | 
						||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
 | 
						||
// +----------------------------------------------------------------------
 | 
						||
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
 | 
						||
// +----------------------------------------------------------------------
 | 
						||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
 | 
						||
// +----------------------------------------------------------------------
 | 
						||
// | Author: CRMEB Team <admin@crmeb.com>
 | 
						||
// +----------------------------------------------------------------------
 | 
						||
declare (strict_types = 1);
 | 
						||
 | 
						||
namespace app\dao\user;
 | 
						||
 | 
						||
use app\dao\BaseDao;
 | 
						||
use app\model\user\User;
 | 
						||
 | 
						||
/**
 | 
						||
 * 用户
 | 
						||
 * Class UserDao
 | 
						||
 * @package app\dao\user
 | 
						||
 */
 | 
						||
class UserDao extends BaseDao
 | 
						||
{
 | 
						||
 | 
						||
    protected function setModel(): string
 | 
						||
    {
 | 
						||
        return User::class;
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 获取用户列表
 | 
						||
     * @param array $where
 | 
						||
     * @param string $field
 | 
						||
     * @param int $page
 | 
						||
     * @param int $limit
 | 
						||
     * @return array
 | 
						||
     * @throws \think\db\exception\DataNotFoundException
 | 
						||
     * @throws \think\db\exception\DbException
 | 
						||
     * @throws \think\db\exception\ModelNotFoundException
 | 
						||
     */
 | 
						||
    public function getList(array $where, string $field = '*', int $page = 0, int $limit = 0): array
 | 
						||
    {
 | 
						||
        return $this->search($where)->field($field)->with(['label'])->when($page && $limit, function ($query) use ($page, $limit) {
 | 
						||
            $query->page($page, $limit);
 | 
						||
        })->select()->toArray();
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 获取特定条件的总数
 | 
						||
     * @param array $where
 | 
						||
     * @param bool $is_list
 | 
						||
     * @return array|int
 | 
						||
     */
 | 
						||
    public function getCount(array $where, bool $is_list = false)
 | 
						||
    {
 | 
						||
        if ($is_list)
 | 
						||
            return $this->getModel()->where($where)->group('uid')->fetchSql(true)->column('count(*) as user_count', 'uid');
 | 
						||
        else
 | 
						||
            return $this->getModel()->where($where)->count();
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 用户支付成功个数增加
 | 
						||
     * @param int $uid
 | 
						||
     * @return mixed
 | 
						||
     */
 | 
						||
    public function incPayCount(int $uid)
 | 
						||
    {
 | 
						||
        return $this->getModel()->where('uid', $uid)->inc('pay_count', 1)->update();
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 某个字段累加某个数值
 | 
						||
     * @param string $field
 | 
						||
     * @param int $num
 | 
						||
     */
 | 
						||
    public function incField(int $uid, string $field, int $num = 1)
 | 
						||
    {
 | 
						||
        return $this->getModel()->where('uid', $uid)->inc($field, $num)->update();
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * @param $uid
 | 
						||
     * @param string $field
 | 
						||
     * @return \think\Collection
 | 
						||
     * @throws \ReflectionException
 | 
						||
     * @throws \think\db\exception\DataNotFoundException
 | 
						||
     * @throws \think\db\exception\DbException
 | 
						||
     * @throws \think\db\exception\ModelNotFoundException
 | 
						||
     */
 | 
						||
    public function getUserLabel($uid, $field = '*')
 | 
						||
    {
 | 
						||
        return $this->search(['uid' => $uid])->field($field)->with(['label'])->select()->toArray();
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 获取分销用户
 | 
						||
     * @param array $where
 | 
						||
     * @param string $field
 | 
						||
     * @param int $page
 | 
						||
     * @param int $limit
 | 
						||
     * @return array
 | 
						||
     * @throws \think\db\exception\DataNotFoundException
 | 
						||
     * @throws \think\db\exception\DbException
 | 
						||
     * @throws \think\db\exception\ModelNotFoundException
 | 
						||
     */
 | 
						||
    public function getAgentUserList(array $where, string $field = '*', int $page, int $limit)
 | 
						||
    {
 | 
						||
        return $this->search($where)->field($field)->with([
 | 
						||
            'extract' => function ($query) {
 | 
						||
                $query->field('sum(extract_price) as extract_count_price,count(id) as extract_count_num,uid')->where('status', '1')->group('uid');
 | 
						||
            }, 'order' => function ($query) {
 | 
						||
                $query->field('sum(pay_price) as order_price,count(id) as order_count,uid')->where('paid', 1)->where('refund_status', 0)->whereIn('pid', [-1, 0])->group('uid');
 | 
						||
            }, 'bill' => function ($query) {
 | 
						||
                $query->field('sum(number) as brokerage_money,uid')->where('category', 'now_money')->where('type', 'brokerage')->where('status', 1)->where('pm', 1)->group('uid');
 | 
						||
            }, 'spreadCount' => function ($query) {
 | 
						||
                $query->field('count(*) as spread_count,spread_uid')->group('spread_uid');
 | 
						||
            }, 'spreadUser' => function ($query) {
 | 
						||
                $query->field('uid,phone,nickname');
 | 
						||
            }, 'agentLevel' => function ($query) {
 | 
						||
                $query->field('id,name');
 | 
						||
            }
 | 
						||
        ])->when($page && $limit, function ($query) use ($page, $limit) {
 | 
						||
            $query->page($page, $limit);
 | 
						||
        })->order('uid desc')->select()->toArray();
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 获取推广人列表
 | 
						||
     * @param array $where
 | 
						||
     * @param string $field
 | 
						||
     * @param int $page
 | 
						||
     * @param int $limit
 | 
						||
     * @return array
 | 
						||
     * @throws \think\db\exception\DataNotFoundException
 | 
						||
     * @throws \think\db\exception\DbException
 | 
						||
     * @throws \think\db\exception\ModelNotFoundException
 | 
						||
     */
 | 
						||
    public function getSairList(array $where, string $field = '*', int $page, int $limit)
 | 
						||
    {
 | 
						||
        return $this->search($where)->field($field)->with([
 | 
						||
            'order' => function ($query) {
 | 
						||
                $query->field('sum(pay_price) as order_price,count(id) as order_count,uid')->where('paid', 1)->where('pid', '<=', 0)->where('refund_status', 0)->group('uid');
 | 
						||
            }, 'spreadCount' => function ($query) {
 | 
						||
                $query->field('count(*) as spread_count,spread_uid')->group('spread_uid');
 | 
						||
            }, 'spreadUser' => function ($query) {
 | 
						||
                $query->field('uid,phone,nickname');
 | 
						||
            }
 | 
						||
        ])->page($page, $limit)->order('uid desc')->select()->toArray();
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 获取推广人排行
 | 
						||
     * @param array $time
 | 
						||
     * @param string $field
 | 
						||
     * @param int $page
 | 
						||
     * @param int $limit
 | 
						||
     */
 | 
						||
    public function getAgentRankList(array $time, string $field = '*', int $page, int $limit)
 | 
						||
    {
 | 
						||
        return $this->getModel()->alias('t0')
 | 
						||
            ->field($field)
 | 
						||
            ->join('user t1', 't0.uid = t1.spread_uid', 'LEFT')
 | 
						||
            ->where('t1.spread_uid', '<>', 0)
 | 
						||
            ->order('count desc')
 | 
						||
            ->order('t0.uid desc')
 | 
						||
            ->where('t1.spread_time', 'BETWEEN', $time)
 | 
						||
            ->where('t0.is_del', 0)
 | 
						||
            ->page($page, $limit)
 | 
						||
            ->group('t0.uid')
 | 
						||
            ->select()->toArray();
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 获取推广员ids
 | 
						||
     * @param array $where
 | 
						||
     * @return array
 | 
						||
     * @throws \ReflectionException
 | 
						||
     */
 | 
						||
    public function getAgentUserIds(array $where)
 | 
						||
    {
 | 
						||
        return $this->search($where)->column('uid');
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 某个条件 用户某个字段总和
 | 
						||
     * @param array $where
 | 
						||
     * @param string $filed
 | 
						||
     * @return float
 | 
						||
     */
 | 
						||
    public function getWhereSumField(array $where, string $filed)
 | 
						||
    {
 | 
						||
        return $this->search($where)->sum($filed);
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 根据条件查询对应的用户信息以数组形式返回
 | 
						||
     * @param array $where
 | 
						||
     * @param string $field
 | 
						||
     * @param string $key
 | 
						||
     * @return array
 | 
						||
     */
 | 
						||
    public function getUserInfoArray(array $where, string $field, string $key)
 | 
						||
    {
 | 
						||
        return $this->search($where)->column($field, $key);
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 获取特定时间用户访问量
 | 
						||
     * @param $time
 | 
						||
     * @param $week
 | 
						||
     * @return int
 | 
						||
     */
 | 
						||
    public function todayLastVisit($time, $week)
 | 
						||
    {
 | 
						||
        switch ($week) {
 | 
						||
            case 1:
 | 
						||
                return $this->search(['time' => $time ?: 'today', 'timeKey' => 'last_time'])->count();
 | 
						||
            case 2:
 | 
						||
                return $this->search(['time' => $time ?: 'week', 'timeKey' => 'last_time'])->count();
 | 
						||
        }
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 获取特定时间用户访问量
 | 
						||
     * @param $time
 | 
						||
     * @param $week
 | 
						||
     * @return int
 | 
						||
     */
 | 
						||
    public function todayAddVisit($time, $week)
 | 
						||
    {
 | 
						||
        switch ($week) {
 | 
						||
            case 1:
 | 
						||
                return $this->search(['time' => $time ?: 'today', 'timeKey' => 'add_time'])->count();
 | 
						||
            case 2:
 | 
						||
                return $this->search(['time' => $time ?: 'week', 'timeKey' => 'add_time'])->count();
 | 
						||
        }
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 获取特定时间内用户列表
 | 
						||
     * @param $starday
 | 
						||
     * @param $yesterday
 | 
						||
     * @return mixed
 | 
						||
     */
 | 
						||
    public function userList($starday, $yesterday)
 | 
						||
    {
 | 
						||
        return $this->getModel()
 | 
						||
            ->whereBetweenTime('add_time', $starday, $yesterday)
 | 
						||
            ->field("FROM_UNIXTIME(add_time,'%m-%e') as day,count(*) as count")
 | 
						||
            ->group("FROM_UNIXTIME(add_time, '%Y%m%e')")
 | 
						||
            ->order('add_time asc')->select()->toArray();
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 购买量范围的用户数量
 | 
						||
     * @param $status
 | 
						||
     * @return int
 | 
						||
     */
 | 
						||
    public function userCount($status)
 | 
						||
    {
 | 
						||
        switch ($status) {
 | 
						||
            case 1:
 | 
						||
                return $this->getModel()->where('pay_count', '>', 1)->where('pay_count', '<=', 4)->count();
 | 
						||
            case 2:
 | 
						||
                return $this->getModel()->where('pay_count', '>', 4)->count();
 | 
						||
        }
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 获取用户统计数据
 | 
						||
     * @param $time
 | 
						||
     * @param $type
 | 
						||
     * @param $timeType
 | 
						||
     * @return mixed
 | 
						||
     */
 | 
						||
    public function getTrendData($time, $type, $timeType)
 | 
						||
    {
 | 
						||
        return $this->getModel()->when($type != '', function ($query) use ($type) {
 | 
						||
            $query->where('user_type', $type);
 | 
						||
        })->where(function ($query) use ($time) {
 | 
						||
            if ($time[0] == $time[1]) {
 | 
						||
                $query->whereDay('add_time', $time[0]);
 | 
						||
            } else {
 | 
						||
                $time[1] = date('Y/m/d', strtotime($time[1]) + 86400);
 | 
						||
                $query->whereTime('add_time', 'between', $time);
 | 
						||
            }
 | 
						||
        })->field("FROM_UNIXTIME(add_time,'$timeType') as days,count(uid) as num")->group('days')->select()->toArray();
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * @param array $where
 | 
						||
     * @return array
 | 
						||
     * @throws \think\db\exception\DataNotFoundException
 | 
						||
     * @throws \think\db\exception\DbException
 | 
						||
     * @throws \think\db\exception\ModelNotFoundException
 | 
						||
     */
 | 
						||
    public function getUserInfoList(array $where, $field = "*"): array
 | 
						||
    {
 | 
						||
        return $this->search($where)->field($field)->select()->toArray();
 | 
						||
    }
 | 
						||
 | 
						||
    /**
 | 
						||
     * 获取用户会员数量
 | 
						||
     * @param $where (time  type)
 | 
						||
     * @return int
 | 
						||
     */
 | 
						||
    public function getMemberCount($where, int $overdue_time = 0)
 | 
						||
    {
 | 
						||
        if (!$overdue_time) $overdue_time = time();
 | 
						||
        return $this->search($where)->where('is_ever_level', 1)->whereOr(function ($qeury) use ($overdue_time) {
 | 
						||
            $qeury->where('is_money_level', '>', 0)->where('overdue_time', '>', $overdue_time);
 | 
						||
        })->count();
 | 
						||
    }
 | 
						||
    /**
 | 
						||
     * 获取一段时间内订单列表
 | 
						||
     * @param $datebefor
 | 
						||
     * @param $dateafter
 | 
						||
     * @return mixed
 | 
						||
     */
 | 
						||
    public function orderAddTimeList($datebefor, $dateafter, $timeType = "week")
 | 
						||
    {
 | 
						||
        return $this->getModel()->where('add_time', 'between time', [$datebefor, $dateafter])
 | 
						||
            ->when($timeType, function ($query) use ($timeType) {
 | 
						||
                $timeUnix = "%w";
 | 
						||
                switch ($timeType) {
 | 
						||
                    case "week" :
 | 
						||
                        $timeUnix = "%w";
 | 
						||
                        break;
 | 
						||
                    case "month" :
 | 
						||
                        $timeUnix = "%d";
 | 
						||
                        break;
 | 
						||
                    case "year" :
 | 
						||
                        $timeUnix = "%m";
 | 
						||
                        break;
 | 
						||
                    case "30" :
 | 
						||
                        $timeUnix = "%m-%d";
 | 
						||
                        break;
 | 
						||
                }
 | 
						||
                $query->field("FROM_UNIXTIME(add_time,'$timeUnix') as day,count(*) as count,sum(pay_count) as price");
 | 
						||
                $query->group("FROM_UNIXTIME(add_time, '$timeUnix')");
 | 
						||
            })
 | 
						||
            ->order('add_time asc')
 | 
						||
            ->select()->toArray();
 | 
						||
    }
 | 
						||
    /**
 | 
						||
     * 统计总数上期
 | 
						||
     * @param $pre_datebefor
 | 
						||
     * @param $pre_dateafter
 | 
						||
     * @return array|\think\Model|null
 | 
						||
     * @throws \think\db\exception\DataNotFoundException
 | 
						||
     * @throws \think\db\exception\DbException
 | 
						||
     * @throws \think\db\exception\ModelNotFoundException
 | 
						||
     */
 | 
						||
    public function preTotalFind($pre_datebefor, $pre_dateafter)
 | 
						||
    {
 | 
						||
        return $this->getModel()->where('add_time', 'between time', [$pre_datebefor, $pre_dateafter])
 | 
						||
            ->field("count(*) as count,sum(pay_count) as price")
 | 
						||
            ->find();
 | 
						||
    }
 | 
						||
}
 |