new-admin-api/app/common/model/user/User.php

440 lines
13 KiB
PHP

<?php
namespace app\common\model\user;
use app\common\model\BaseModel;
use app\common\model\store\service\StoreService;
use app\common\model\wechat\WechatUser;
use app\common\repositories\store\coupon\StoreCouponUserRepository;
use app\common\repositories\store\order\StoreGroupOrderRepository;
use app\common\repositories\store\service\StoreServiceLogRepository;
use app\common\repositories\user\UserBillRepository;
use app\common\repositories\user\UserExtractRepository;
use app\common\repositories\user\UserHistoryRepository;
use app\common\repositories\user\UserRelationRepository;
use app\common\repositories\user\UserRepository;
/**
* Class User
* @package app\common\model\user
* @author xaboy
* @day 2020-04-28
*/
class User extends BaseModel
{
/**
* @return string
* @author xaboy
* @day 2020-03-30
*/
public static function tablePk(): string
{
return 'uid';
}
/**
* @return string
* @author xaboy
* @day 2020-03-30
*/
public static function tableName(): string
{
return 'user';
}
/**
* @param $value
* @return string
* @author xaboy
* @day 2020-05-09
*/
public function getBirthdayAttr($value)
{
return $value == '0000-00-00' ? '' : $value;
}
public function getIsSvipAttr($value)
{
if (systemConfig('svip_switch_status') == 1) {
return $value;
} else {
return $value > 0 ? 0 : $value;
}
}
/**
* @param $value
* @return array
* @author xaboy
* @day 2020-05-09
*/
public function getLabelIdAttr($value)
{
return $value ? explode(',', $value) : [];
}
/**
* @param $value
* @return string
* @author xaboy
* @day 2020-05-09
*/
public function setLabelIdAttr($value)
{
return is_array($value) ? implode(',', $value) : $value;
}
public function getValidSpreadUidAttr()
{
if (!$this->spread_uid) return 0;
else {
$data = self::getDB()->where('uid', $this->spread_uid)->field('is_promoter,spread_uid')->find();
if ($data && $data['is_promoter'])
return $this->spread_uid;
else
return 0;
}
}
public function getValidSpreadAttr()
{
if (!$this->spread_uid) return null;
else {
$data = self::getDB()->where('uid', $this->spread_uid)->field('is_promoter,spread_uid,brokerage_level,uid')->find();
if ($data && $data['is_promoter'])
return $data;
else
return null;
}
}
public function getValidTopUidAttr()
{
if (!$this->top_uid) return 0;
else {
$data = self::getDB()->where('uid', $this->top_uid)->field('is_promoter,spread_uid')->find();
if ($data && $data['is_promoter'])
return $this->top_uid;
else
return 0;
}
}
public function getValidTopAttr()
{
if (!$this->top_uid) return null;
else {
$data = self::getDB()->where('uid', $this->top_uid)->field('is_promoter,spread_uid,brokerage_level,uid')->find();
if ($data && $data['is_promoter'])
return $data;
else
return null;
}
}
public function getTopUidAttr()
{
return self::getDB()->where('uid', $this->spread_uid)->value('spread_uid') ?: 0;
}
/**
* @return \think\model\relation\HasOne
* @author xaboy
* @day 2020-05-09
*/
public function group()
{
return $this->hasOne(UserGroup::class, 'group_id', 'group_id');
}
public function spread()
{
return $this->hasOne(User::class, 'uid', 'spread_uid');
}
public function brokerage()
{
return $this->hasOne(UserBrokerage::class, 'brokerage_level', 'brokerage_level')->where('type',0);
}
public function brokerageApplyFormal(){
return $this->hasOne(UserBrokerageApplyFormal::class, 'uid', 'uid');
}
public function member()
{
return $this->hasOne(UserBrokerage::class, 'brokerage_level', 'member_level')->where('type',1);
}
public function getUserLabelAttr()
{
return UserLabel::whereIn('label_id', $this->label_id)->select();
}
/**
* @param $spreadUid
* @author xaboy
* @day 2020-04-28
*/
public function setSpread($spreadUid)
{
if (self::getDB()->where('uid', $spreadUid)->value('is_promoter'))
$this->save([
'spread_uid' => $spreadUid,
'spread_time' => date('Y-m-d H:i:s')
]);
}
public function service()
{
return $this->hasOne(StoreService::class,'uid','uid')
->where('mer_id','<>',0)
->where('is_del',0)
->where('is_open',1)
->field('service_id,uid,nickname,avatar,customer,mer_id,is_verify,is_goods,is_open')
->order('is_verify DESC,customer DESC');
}
// 用户是否存在商户平台 有效店员信息
public function getServiceAttr($value){
$info = (new StoreService())
->field('service_id,uid,nickname,avatar,customer,StoreService.mer_id,is_verify,is_goods,is_open')
->hasWhere('merchant',function($query){
$query->where('is_del', 0)
->where('mer_state', 1)
->where('merchant_type', 0)
->where('status', 1);
})
->where('uid',$this->uid)
->where('StoreService.mer_id','<>',0)
->where('StoreService.is_del',0)
->where('is_open',1)
->order('StoreService.is_verify DESC,StoreService.customer DESC')
// ->fetchSql()
->find();
return !empty($info) ? $info->toArray() : null;
}
// 用户是否存在酒道馆 有效店员信息
public function getShopMerServiceAttr($value){
$info = (new StoreService())
->field('service_id,uid,nickname,avatar,customer,StoreService.mer_id,is_verify,is_goods,is_open')
->hasWhere('merchant',function($query){
$query->where('is_del', 0)
->where('mer_state', 1)
->where('merchant_type', 1)
->where('status', 1);
})
->where('uid',$this->uid)
->where('StoreService.mer_id','<>',0)
->where('StoreService.is_del',0)
->where('is_open',1)
->order('StoreService.is_verify DESC,StoreService.customer DESC')
// ->fetchSql()
->find();
return !empty($info) ? $info->toArray() : null;
}
// 用户是否存在烟酒店 有效店员信息
public function getSmokeMerServiceAttr(){
$info = (new StoreService())
->field('service_id,uid,nickname,avatar,customer,StoreService.mer_id,is_verify,is_goods,is_open')
->hasWhere('merchant',function($query){
$query->where('is_del', 0)
->where('mer_state', 1)
->where('merchant_type', 3)
->where('status', 1);
})
->where('uid',$this->uid)
->where('StoreService.mer_id','<>',0)
->where('StoreService.is_del',0)
->where('is_open',1)
->order('StoreService.is_verify DESC,StoreService.customer DESC')
// ->fetchSql()
->find();
return !empty($info) ? $info->toArray() : null;
}
// 用户是否存在超市 有效店员信息
public function getSupermarketServiceAttr(){
$info = (new StoreService())
->field('service_id,uid,nickname,avatar,customer,StoreService.mer_id,is_verify,is_goods,is_open')
->hasWhere('merchant',function($query){
$query->where('is_del', 0)
->where('mer_state', 1)
->where('merchant_type', 4)
->where('status', 1);
})
->where('uid',$this->uid)
->where('StoreService.mer_id','<>',0)
->where('StoreService.is_del',0)
->where('is_open',1)
->order('StoreService.is_verify DESC,StoreService.customer DESC')
// ->fetchSql()
->find();
return !empty($info) ? $info->toArray() : null;
}
// 用户是否存在省公司门店 有效店员信息
public function getProvinceServiceAttr(){
$info = (new StoreService())
->field('service_id,uid,nickname,avatar,customer,StoreService.mer_id,is_verify,is_goods,is_open')
->hasWhere('merchant',function($query){
$query->where('is_del', 0)
->where('mer_state', 1)
->where('merchant_type', 5)
->where('status', 1);
})
->where('uid',$this->uid)
->where('StoreService.mer_id','<>',0)
->where('StoreService.is_del',0)
->where('is_open',1)
->order('StoreService.is_verify DESC,StoreService.customer DESC')
// ->fetchSql()
->find();
return !empty($info) ? $info->toArray() : null;
}
public function topService()
{
return $this->hasOne(StoreService::class, 'uid', 'uid')
->field('service_id,uid,nickname,avatar,customer,mer_id,is_verify,is_goods')
->where('mer_id', 0)
->where('is_del', 0)
->where('is_open',1)
->order('is_verify DESC,customer DESC');
}
public function getLockBrokerageAttr()
{
return app()->make(UserBillRepository::class)->lockBrokerage($this->uid) ?: 0;
}
public function getLockIntegralAttr()
{
return app()->make(UserBillRepository::class)->lockIntegral($this->uid) ?: 0;
}
public function getYesterdayBrokerageAttr()
{
return app()->make(UserBillRepository::class)->yesterdayBrokerage($this->uid) ?: 0;
}
public function getTotalExtractAttr()
{
return app()->make(UserExtractRepository::class)->userTotalExtract($this->uid) ?: 0;
}
public function getTotalBrokerageAttr()
{
return app()->make(UserBillRepository::class)->totalBrokerage($this->uid) ?: 0;
}
public function getTotalBrokeragePriceAttr()
{
return bcadd($this->lock_brokerage, $this->brokerage_price, 2);
}
public function getTotalIntegralAttr()
{
return bcadd($this->lock_integral, $this->integral, 0);
}
public function getTotalRechargeAttr()
{
return app()->make(UserBillRepository::class)->userNowMoneyIncTotal($this->uid);
}
public function getTotalConsumeAttr()
{
return app()->make(StoreGroupOrderRepository::class)->totalNowMoney($this->uid);
}
public function getTotalCollectProductAttr()
{
return app()->make(UserRelationRepository::class)->getWhereCount(['uid' => $this->uid, 'type' => 1]);
}
public function getTotalCollectStoreAttr()
{
return app()->make(UserRelationRepository::class)->getWhereCount(['uid' => $this->uid, 'type' => 10]);
}
public function getTotalVisitProductAttr()
{
return app()->make(UserHistoryRepository::class)->userTotalHistory($this->uid);
}
public function getTotalCouponAttr()
{
return app()->make(StoreCouponUserRepository::class)->userTotal($this->uid, 0);
}
public function getTotalUnreadAttr()
{
return app()->make(StoreServiceLogRepository::class)->totalUnReadNum($this->uid);
}
public function getOneLevelCountAttr()
{
return app()->make(UserRepository::class)->getOneLevelCount($this->uid);
}
public function getTwoLevelCountAttr()
{
return app()->make(UserRepository::class)->getTwoLevelCount($this->uid);
}
public function getSpreadTotalAttr()
{
return $this->one_level_count + $this->two_level_count;
}
public function wechat()
{
return $this->hasOne(WechatUser::class, 'wechat_user_id', 'wechat_user_id');
}
public function getIntegralAttr($val)
{
return is_null($val) ? 0 : $val;
}
// public function getUserTypeAttr()
// {
// if($this->wechat['openid']){
// return 'wechat';
// }elseif($this->wechat['routine_openid']){
// return 'routine';
// }else{
// return 'H5';
// }
// }
public function getSubscribeAttr()
{
if ($this->wechat['openid'] && $this->wechat['subscribe']) {
return true;
} else {
return false;
}
}
}