初始版本

This commit is contained in:
贾祥聪
2025-08-19 14:16:51 +08:00
commit f937a1f9b9
4373 changed files with 359728 additions and 0 deletions

View File

@@ -0,0 +1,392 @@
<?php
// +----------------------------------------------------------------------
// | likeshop开源商城系统
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | gitee下载https://gitee.com/likeshop_gitee
// | github下载https://github.com/likeshop-github
// | 访问官网https://www.likeshop.cn
// | 访问社区https://home.likeshop.cn
// | 访问手册http://doc.likeshop.cn
// | 微信公众号likeshop技术社区
// | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用未经许可不能去除前后端官方版权标识
// | likeshop系列产品收费版本务必购买商业授权购买去版权授权后方可去除前后端官方版权标识
// | 禁止对系统程序代码以任何目的,任何形式的再发布
// | likeshop团队版权所有并拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeshop.cn.team
// +----------------------------------------------------------------------
namespace app\api\logic;
use app\api\service\WechatUserService;
use app\common\enum\notice\NoticeEnum;
use app\common\enum\OrderEnum;
use app\common\enum\user\UserTerminalEnum;
use app\common\enum\YesNoEnum;
use app\common\logic\BaseLogic;
use app\common\model\coach\Collect;
use app\common\model\decorate\DecoratePage;
use app\common\model\goods\Goods;
use app\common\model\goods\GoodsComment;
use app\common\model\order\Order;
use app\common\model\user\User;
use app\common\model\user\UserAuth;
use app\common\service\ConfigService;
use app\common\service\sms\SmsDriver;
use app\common\service\WeChatConfigService;
use app\common\service\WeChatService;
use EasyWeChat\Factory;
use think\facade\Config;
class UserLogic extends BaseLogic
{
/**
* @notes 用户中心
* @param $userInfo
* @return array
* @author ljj
* @date 2022/2/23 5:24 下午
*/
public function center($userInfo)
{
$userId = $userInfo['user_id'] ?? 0;
$terminal = $userInfo['terminal'] ?? 0;
$user = User::where(['id'=>$userId])
->field('id,sn,nickname,account,avatar,user_money,mobile,sex,create_time,is_new_user')
->findOrEmpty()
->toArray();
//支付是否需要授权
$user['pay_auth'] = 1;
if (in_array($terminal, [UserTerminalEnum::WECHAT_MMP, UserTerminalEnum::WECHAT_OA])) {
$auth = self::hasWechatAuth($userId);
$user['pay_auth'] = $auth ? YesNoEnum::YES : YesNoEnum::NO;
}
$user['collect_coach_num'] = Collect::where(['type'=>1,'user_id'=>$userId])->count();
$user['collect_goods_num'] = Collect::where(['type'=>2,'user_id'=>$userId])->count();
$user['collect_shop_num'] = Collect::where(['type'=>3,'user_id'=>$userId])->count();
$user['goods_comment_num'] = GoodsComment::where(['user_id'=>$userId])->count();
$user['wait_comment_num'] = Order::alias('O')
->join('order_goods OG','O.id = OG.order_id')
->where(['user_id'=>$userId,'order_status'=>OrderEnum::ORDER_STATUS_SERVER_FINISH,'is_comment'=>0])
->count();
$user['waitpay_order_num'] = Order::where(['user_id'=>$userId,'order_status'=>OrderEnum::ORDER_STATUS_WAIT_PAY])->count();
$user['appoint_order_num'] = Order::where(['user_id'=>$userId,'order_status'=>OrderEnum::ORDER_STATUS_WAIT_RECEIVING])->count();
$user['server_order_num'] = Order::where(['user_id'=>$userId,'order_status'=>OrderEnum::ORDER_STATUS_START_SERVER])->count();
$user['complete_order_num'] = Order::where(['user_id'=>$userId,'order_status'=>OrderEnum::ORDER_STATUS_SERVER_FINISH])->count();
return $user;
}
/**
* @notes 客服配置
* @return array
* @author ljj
* @date 2022/2/24 2:53 下午
*/
public function customerService()
{
// $qrCode = ConfigService::get('customer_service', 'qr_code');
// $qrCode = empty($qrCode) ? '' : FileService::getFileUrl($qrCode);
// $config = [
// 'qr_code' => $qrCode,
// 'wechat' => ConfigService::get('customer_service', 'wechat', ''),
// 'phone' => ConfigService::get('customer_service', 'phone', ''),
// 'service_time' => ConfigService::get('customer_service', 'service_time', ''),
// ];
// 装修配置
$decoratePage = DecoratePage::where('id',3)->json(['data'],true)->value('data');
return $decoratePage;
}
/**
* @notes 用户收藏列表
* @param $user_id
* @return mixed
* @author ljj
* @date 2022/2/24 3:07 下午
*/
public function collectLists($user_id)
{
$lists = Goods::alias('g')
->join('goods_collect gc', 'g.id = gc.goods_id')
->field('gc.goods_id,g.image,g.name,g.price,g.unit_id,g.status')
->append(['unit_desc'])
->where(['gc.user_id'=>$user_id])
->order('gc.id','desc')
->select()
->toArray();
return $lists;
}
/**
* @notes 用户信息
* @param $userId
* @return array|bool
* @author ljj
* @date 2022/3/7 5:52 下午
*/
public static function info($user_id,$code = '')
{
try {
$user = User::where(['id'=>$user_id])
->field('id,sn,sex,account,password,nickname,real_name,avatar,mobile,create_time')
->findOrEmpty();
$user['has_password'] = !empty($user['password']);
$user['has_auth'] = self::hasWechatAuth($user_id);
$user['version'] = config('project.version');
$user['wx_nickname'] = $user['nickname'];
if('' != $code){
$params['code'] = $code;
$response = WeChatService::getOaResByCode($params);
$user['wx_nickname'] = $response['nickname'] ?? '';
}
$user->hidden(['password']);
return $user->toArray();
}catch (\Exception $e){
self::$error = $e->getMessage();
return false;
}
}
/**
* @notes 设置用户信息
* @param int $userId
* @param array $params
* @return bool
* @author ljj
* @date 2022/2/24 3:44 下午
*/
public static function setInfo(int $userId,array $params):bool
{
User::update(['id'=>$userId,$params['field']=>$params['value']]);
return true;
}
/**
* @notes 获取微信手机号并绑定
* @param $params
* @return bool
* @author ljj
* @date 2022/2/24 4:41 下午
*/
public static function getMobileByMnp(array $params)
{
try {
$getMnpConfig = WeChatConfigService::getMnpConfig();
$app = Factory::miniProgram($getMnpConfig);
$response = $app->phone_number->getUserPhoneNumber($params['code']);
$phoneNumber = $response['phone_info']['purePhoneNumber'] ?? '';
if (empty($phoneNumber)) {
throw new \Exception('获取手机号码失败');
}
$user = User::where([
['mobile', '=', $phoneNumber],
['id', '<>', $params['user_id']]
])->findOrEmpty();
if (!$user->isEmpty()) {
throw new \Exception('手机号已被其他账号绑定');
}
// 绑定手机号
User::update([
'id' => $params['user_id'],
'mobile' => $phoneNumber
]);
return true;
} catch (\Exception $e) {
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 重置登录密码
* @param $params
* @return bool
* @author 段誉
* @date 2022/9/16 18:06
*/
public static function resetPassword(array $params)
{
try {
// 校验验证码
$smsDriver = new SmsDriver();
if (!$smsDriver->verify($params['mobile'], $params['code'], NoticeEnum::RESET_PASSWORD_CAPTCHA)) {
throw new \Exception('验证码错误');
}
// 重置密码
$passwordSalt = Config::get('project.unique_identification');
$password = create_password($params['password'], $passwordSalt);
// 更新
User::where('account', $params['mobile'])->update([
'password' => $password
]);
return true;
} catch (\Exception $e) {
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 设置登录密码
* @author Tab
* @date 2021/10/22 18:10
*/
public static function setPassword($params)
{
try {
$user = User::findOrEmpty($params['user_id']);
if ($user->isEmpty()) {
throw new \Exception('用户不存在');
}
if (!empty($user->password)) {
throw new \Exception('用户已设置登录密码');
}
$passwordSalt = Config::get('project.unique_identification');
$password = create_password($params['password'], $passwordSalt);
$user->password = $password;
$user->save();
return true;
} catch (\Exception $e) {
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 修稿密码
* @param $params
* @param $userId
* @return bool
* @author 段誉
* @date 2022/9/20 19:13
*/
public static function changePassword(array $params, int $userId)
{
try {
$user = User::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;
}
}
/**
* @notes 判断用户是否有设置登录密码
* @param $userId
* @author Tab
* @date 2021/10/22 18:25
*/
public static function hasPassword($userId)
{
$user = User::findOrEmpty($userId);
return empty($user->password) ? false : true;
}
/**
* @notes 绑定手机号
* @param $params
* @return bool
* @author Tab
* @date 2021/8/25 17:55
*/
public static function bindMobile($params)
{
try {
$smsDriver = new SmsDriver();
$result = $smsDriver->verify($params['mobile'], $params['code']);
if(!$result) {
throw new \Exception('验证码错误');
}
$user = User::where('mobile', $params['mobile'])->findOrEmpty();
if(!$user->isEmpty()) {
throw new \Exception('该手机号已被其他账号绑定');
}
unset($params['code']);
User::update($params);
return true;
} catch (\Exception $e) {
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 是否有微信授权信息
* @param $userId
* @return bool
* @author 段誉
* @date 2022/9/20 19:36
*/
public static function hasWechatAuth(int $userId)
{
//是否有微信授权登录
$terminal = [UserTerminalEnum::WECHAT_MMP, UserTerminalEnum::WECHAT_OA];
$auth = UserAuth::where(['user_id' => $userId])
->whereIn('terminal', $terminal)
->findOrEmpty();
return !$auth->isEmpty();
}
/**
* @notes 我的钱包
* @param int $userId
* @return array
* @author ljj
* @date 2022/12/12 9:35 上午
*/
public static function wallet(int $userId): array
{
$result = User::where(['id' => $userId])
->field('id,user_money,user_earnings')
->findOrEmpty()
->toArray();
$result['total_money'] = round($result['user_money'] + $result['user_earnings'],2);
$result['recharge_open'] = ConfigService::get('recharge', 'recharge_open',1);
return $result;
}
}