123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\controller\admin\v1\statistic;
- use app\controller\admin\AuthController;
- use app\services\statistic\UserStatisticServices;
- use think\facade\App;
- /**
- * Class UserStatistic
- * @package app\controller\admin\v1\statistic
- */
- class UserStatistic extends AuthController
- {
- /**
- * UserStatistic constructor.
- * @param App $app
- * @param UserStatisticServices $services
- */
- public function __construct(App $app, UserStatisticServices $services)
- {
- parent::__construct($app);
- $this->services = $services;
- }
- /**
- * 用户基础信息
- * @return mixed
- */
- public function getBasic()
- {
- $where = $this->request->getMore([
- ['channel_type', ''],
- ['data', '', '', 'time']
- ]);
- $where['time'] = $this->getDay($where['time']);
- return $this->success($this->services->getBasic($where));
- }
- /**
- * 用户趋势
- * @return mixed
- */
- public function getTrend()
- {
- $where = $this->request->getMore([
- ['channel_type', ''],
- ['data', '', '', 'time']
- ]);
- $where['time'] = $this->getDay($where['time']);
- return $this->success($this->services->getTrend($where));
- }
- /**
- * 微信用户信息
- * @return mixed
- */
- public function getWechat()
- {
- $where = $this->request->getMore([
- ['channel_type', ''],
- ['data', '', '', 'time']
- ]);
- $where['time'] = $this->getDay($where['time']);
- return $this->success($this->services->getWechat($where));
- }
- /**
- * 微信用户趋势
- * @return mixed
- */
- public function getWechatTrend()
- {
- $where = $this->request->getMore([
- ['channel_type', ''],
- ['data', '', '', 'time']
- ]);
- $where['time'] = $this->getDay($where['time']);
- return $this->success($this->services->getWechatTrend($where));
- }
- /**
- * 用户地域
- * @return mixed
- */
- public function getRegion()
- {
- $where = $this->request->getMore([
- ['channel_type', ''],
- ['data', '', '', 'time'],
- ['sort', 'allNum']
- ]);
- $where['time'] = $this->getDay($where['time']);
- return $this->success($this->services->getRegionV1($where));
- }
- /**
- * 用户性别
- * @return mixed
- */
- public function getSex()
- {
- $where = $this->request->getMore([
- ['channel_type', ''],
- ['data', '', '', 'time']
- ]);
- $where['time'] = $this->getDay($where['time']);
- return $this->success($this->services->getSex($where));
- }
- /**
- * 用户统计导出
- * @return mixed
- */
- public function getExcel()
- {
- $where = $this->request->getMore([
- ['channel_type', ''],
- ['data', '', '', 'time']
- ]);
- $where['time'] = $this->getDay($where['time']);
- return $this->success($this->services->getTrend($where, true));
- }
- /**
- * 格式化时间
- * @param $time
- * @return string
- */
- public function getDay($time)
- {
- if (strstr($time, '-') !== false) {
- [$startTime, $endTime] = explode('-', $time);
- if (!$startTime && !$endTime) {
- return date("Y/m/d", strtotime("-30 days", time())) . '-' . date("Y/m/d", time());
- } else {
- return $startTime . '-' . $endTime;
- }
- } else {
- return date("Y/m/d", strtotime("-30 days", time())) . '-' . date("Y/m/d", time());
- }
- }
- }
|