quanwei
2025-10-31 7a27a1d4d0038abe2115adb1753f897f56d66323
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
 
namespace app\common\model\supplier;
 
use app\common\model\BaseModel;
 
/**
 * 商家用户模型
 */
class User extends BaseModel
{
    protected $name = 'supplier_user';
    protected $pk = 'supplier_user_id';
 
    /**
     * 关联应用表
     */
    public function app()
    {
        return $this->belongsTo('app\\common\\model\\app\\App', 'app_id', 'app_id');
    }
 
    /**
     * 关联用户角色表表
     */
    public function role()
    {
        return $this->belongsToMany('app\\common\\model\\auth\\Role', 'app\\common\\model\\auth\\UserRole');
    }
 
    public function userRole()
    {
        return $this->hasMany('app\\common\\model\\supplier\\UserRole', 'supplier_user_id', 'supplier_user_id');
    }
 
    /**
     * 关联应用表
     */
    public function user()
    {
        return $this->belongsTo('app\\common\\model\\user\\User', 'user_id', 'user_id');
    }
 
    /**
     * 验证用户名是否重复
     */
    public static function checkExist($user_name)
    {
        return !!static::withoutGlobalScope()
            ->where('user_name', '=', $user_name)
            ->value('supplier_user_id');
    }
 
    /**
     * 商家用户详情
     */
    public static function detail($where, $with = [])
    {
        !is_array($where) && $where = ['supplier_user_id' => (int)$where];
        return (new static())->where(array_merge(['is_delete' => 0], $where))->with($with)->find();
    }
 
    /**
     * 商家用户详情
     */
    public static function detailByUserId($user_id)
    {
        return (new static())->where('is_delete', '=', 0)
            ->where('user_id', '=', $user_id)
            ->where('shop_supplier_id', '>', 0)
            ->find();
    }
    /**
     * 保存登录状态
     */
    public function loginState($user)
    {
        $app = $user['app'];
        // 保存登录状态
        $session = array(
            'user' => [
                'supplier_user_id' => $user['supplier_user_id'],
                'user_name' => $user['user_name'],
                'shop_supplier_id' => $user['shop_supplier_id'],
                'app_id' => $user['app_id'],
                'user_id'=>$user['user_id'],
            ],
            'app' => $app->toArray(),
            'is_login' => true,
        );
        session('jjjshop_supplier', $session);
    }
 
}