CRMEB_PRO_M/app/services/wechat/WechatQrcodeRecordServices.php

140 lines
4.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\services\wechat;
use app\dao\wechat\WechatQrcodeRecordDao;
use app\services\BaseServices;
use crmeb\exceptions\AdminException;
/**
*
* Class WechatQrcodeRecordServices
* @package app\services\wechat
* @mixin WechatQrcodeRecordDao
*/
class WechatQrcodeRecordServices extends BaseServices
{
/**
* 构造方法
* WechatReplyKeyServices constructor.
* @param WechatQrcodeRecordDao $dao
*/
public function __construct(WechatQrcodeRecordDao $dao)
{
$this->dao = $dao;
}
/**
* 获取用户列表
* @param $qid
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function userList($qid)
{
[$page, $limit] = $this->getPageValue();
$where['qid'] = $qid;
$list = $this->dao->getList($where, $page, $limit, 1);
$count = $this->dao->getDistinctCount($where, 'uid');
return compact('list', 'count');
}
/**
* 渠道码统计
* @param $where
* @param $time
* @return mixed
*/
public function qrcodeStatistic($where, $time)
{
$data['all_follow'] = $this->dao->count($where + ['is_follow' => 1]);
$data['all_scan'] = $this->dao->count($where);
$data['y_follow'] = $this->dao->count($where + ['is_follow' => 1, 'time' => 'yesterday']);
$data['y_scan'] = $this->dao->count($where + ['time' => 'yesterday']);
$data['trend'] = $this->getTrend($where['qid'], explode('-', $time));
return $data;
}
/**
* 余额趋势
* @param $qid
* @param $time
* @return array
*/
public function getTrend($qid, $time)
{
if (count($time) != 2) throw new AdminException('参数错误');
$dayCount = (strtotime($time[1]) - strtotime($time[0])) / 86400 + 1;
$data = [];
if ($dayCount == 1) {
$data = $this->trend($qid, $time, 0);
} elseif ($dayCount > 1 && $dayCount <= 31) {
$data = $this->trend($qid, $time, 1);
} elseif ($dayCount > 31 && $dayCount <= 92) {
$data = $this->trend($qid, $time, 3);
} elseif ($dayCount > 92) {
$data = $this->trend($qid, $time, 30);
}
return $data;
}
/**
* 余额趋势
* @param $qid
* @param $time
* @param $num
* @param false $excel
* @return array
*/
public function trend($qid, $time, $num)
{
if ($num == 0) {
$xAxis = ['00', '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23'];
$timeType = '%H';
} elseif ($num != 0) {
$dt_start = strtotime($time[0]);
$dt_end = strtotime($time[1]);
while ($dt_start <= $dt_end) {
if ($num == 30) {
$xAxis[] = date('Y-m', $dt_start);
$dt_start = strtotime("+1 month", $dt_start);
$timeType = '%Y-%m';
} else {
$xAxis[] = date('m-d', $dt_start);
$dt_start = strtotime("+$num day", $dt_start);
$timeType = '%m-%d';
}
}
}
$time[1] = date("Y-m-d", strtotime("+1 day", strtotime($time[1])));
$follow = array_column($this->dao->getRecordTrend($qid, $time, $timeType, 'add_time', 'count(uid)', 'yes'), 'num', 'days');
$scan = array_column($this->dao->getRecordTrend($qid, $time, $timeType, 'add_time', 'count(uid)', 'no'), 'num', 'days');
$data = $series = [];
foreach ($xAxis as $item) {
$data['新增关注'][] = isset($follow[$item]) ? floatval($follow[$item]) : 0;
$data['新增参与'][] = isset($scan[$item]) ? floatval($scan[$item]) : 0;
}
foreach ($data as $key => $item) {
$series[] = [
'name' => $key,
'data' => $item,
'type' => 'line',
];
}
return compact('xAxis', 'series');
}
}