mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-01 16:58:16 +00:00
187 lines
6.8 KiB
PHP
187 lines
6.8 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
declare (strict_types=1);
|
||
|
||
namespace app\services\user;
|
||
|
||
use app\dao\user\UserDao;
|
||
use app\services\activity\coupon\StoreCouponIssueServices;
|
||
use app\services\BaseServices;
|
||
use app\services\system\SystemUserLevelServices;
|
||
use crmeb\exceptions\ApiException;
|
||
|
||
/**
|
||
*
|
||
* Class OutUserServices
|
||
* @package app\services\user
|
||
*/
|
||
class OutUserServices extends BaseServices
|
||
{
|
||
|
||
/**
|
||
* UserServices constructor.
|
||
* @param UserDao $dao
|
||
*/
|
||
public function __construct(UserDao $dao)
|
||
{
|
||
$this->dao = $dao;
|
||
}
|
||
|
||
/**
|
||
* 用户列表
|
||
* @param array $where
|
||
* @return array
|
||
*/
|
||
public function getUserList(array $where): array
|
||
{
|
||
/** @var UserWechatuserServices $userWechatUser */
|
||
$userWechatUser = app()->make(UserWechatuserServices::class);
|
||
$fields = 'u.uid, u.real_name, u.mark, u.nickname, u.avatar, u.phone, u.now_money, u.brokerage_price, u.integral, u.exp, u.sign_num, u.user_type,
|
||
u.status, u.level, u.agent_level, u.spread_open, u.spread_uid, u.spread_time, u.user_type, u.is_promoter, u.pay_count, u.is_ever_level, u.is_money_level,
|
||
u.overdue_time, u.add_time';
|
||
[$list, $count] = $userWechatUser->getWhereUserList($where, $fields);
|
||
if ($list) {
|
||
$uids = array_column($list, 'uid');
|
||
$levelName = app()->make(SystemUserLevelServices::class)->getUsersLevel(array_unique(array_column($list, 'level')));
|
||
$userLevel = app()->make(UserLevelServices::class)->getUsersLevelInfo($uids);
|
||
$spreadNames = $this->dao->getColumn([['uid', 'in', array_unique(array_column($list, 'spread_uid'))]], 'nickname', 'uid');
|
||
foreach ($list as &$item) {
|
||
$item['spread_uid_nickname'] = $item['spread_uid'] ? ($spreadNames[$item['spread_uid']] ?? '') . '/' . $item['spread_uid'] : '';
|
||
//用户类型
|
||
if ($item['user_type'] == 'routine') {
|
||
$item['user_type'] = '小程序';
|
||
} else if ($item['user_type'] == 'wechat') {
|
||
$item['user_type'] = '公众号';
|
||
} else if ($item['user_type'] == 'h5') {
|
||
$item['user_type'] = 'H5';
|
||
} else if ($item['user_type'] == 'pc') {
|
||
$item['user_type'] = 'PC';
|
||
} else if ($item['user_type'] == 'app' || $item['user_type'] == 'apple') {
|
||
$item['user_type'] = 'APP';
|
||
} else $item['user_type'] = '其他';
|
||
|
||
//用户等级
|
||
$item['level_name'] = "";
|
||
$levelInfo = $userLevel[$item['uid']] ?? null;
|
||
if ($levelInfo) {
|
||
if ($levelInfo['is_forever'] || time() < $levelInfo['valid_time']) {
|
||
$item['level_name'] = $levelName[$item['level']] ?? '';
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return compact('list', 'count');
|
||
}
|
||
|
||
/**
|
||
* 添加/修改用户
|
||
* @param int $uid
|
||
* @param array $data
|
||
* @return int
|
||
*/
|
||
public function saveUser(int $uid, array $data): int
|
||
{
|
||
if (empty($data['real_name'])) {
|
||
throw new ApiException(400760);
|
||
}
|
||
if (empty($data['phone'])) {
|
||
throw new ApiException(400132);
|
||
}
|
||
|
||
if (!check_phone($data['phone'])) {
|
||
throw new ApiException(400252);
|
||
}
|
||
if ($uid < 1 && $this->count(['phone' => $data['phone'], 'is_del' => 0])) {
|
||
throw new ApiException(400314);
|
||
}
|
||
|
||
if ($data['pwd']) {
|
||
$data['pwd'] = md5($data['pwd']);
|
||
} else {
|
||
if ($uid < 1) {
|
||
$data['pwd'] = md5(123456);
|
||
} else {
|
||
unset($data['pwd']);
|
||
}
|
||
}
|
||
return $this->transaction(function () use ($uid, $data) {
|
||
if ($uid) {
|
||
$userInfo = $this->dao->update($uid, $data);
|
||
} else {
|
||
if (trim($data['real_name']) != '') {
|
||
$data['nickname'] = $data['real_name'];
|
||
} else {
|
||
$data['nickname'] = substr_replace($data['phone'], '****', 3, 4);
|
||
}
|
||
|
||
$data['avatar'] = sys_config('h5_avatar');
|
||
$data['user_type'] = 'h5';
|
||
$data['add_time'] = time();
|
||
$userInfo = $this->dao->save($data);
|
||
$uid = (int)$userInfo->uid;
|
||
}
|
||
if (!$userInfo) {
|
||
throw new ApiException(100006);
|
||
}
|
||
|
||
/** @var UserServices $userServices */
|
||
$userServices = app()->make(UserServices::class);
|
||
|
||
$level = (int)$data['level'];
|
||
if ($level) {
|
||
if (!$userServices->saveGiveLevel($uid, (int)$data['level'])) {
|
||
throw new ApiException(400219);
|
||
}
|
||
}
|
||
return $uid;
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 赠送(积分/余额/付费会员)
|
||
* @param int $id
|
||
* @param array $data
|
||
* @return bool
|
||
*/
|
||
public function otherGive(int $id, array $data): bool
|
||
{
|
||
return $this->transaction(function () use ($id, $data) {
|
||
/** @var UserServices $userServices */
|
||
$userServices = app()->make(UserServices::class);
|
||
|
||
$days = (int)$data['days'];
|
||
$coupon = (int)$data['coupon'];
|
||
unset($data['days'], $data['coupon']);
|
||
if ($days > 0) {
|
||
$userServices->saveGiveLevelTime($id, $days);
|
||
}
|
||
|
||
if ($coupon) {
|
||
/** @var StoreCouponIssueServices $issueService */
|
||
$issueService = app()->make(StoreCouponIssueServices::class);
|
||
$coupon = $issueService->get($data['id']);
|
||
if (!$coupon) {
|
||
throw new ApiException(100026);
|
||
} else {
|
||
$coupon = $coupon->toArray();
|
||
}
|
||
$issueService->setCoupon($coupon, [$id]);
|
||
}
|
||
|
||
$data['adminId'] = 0;
|
||
$data['is_other'] = true;
|
||
$data['money'] = (string)$data['money'];
|
||
$data['integration'] = (string)$data['integration'];
|
||
return $userServices->updateInfo($id, $data);
|
||
});
|
||
}
|
||
} |