chengkun
2025-09-09 1ff9e27b020822168a95edd83be567e7153837f3
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
<?php
 
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2023 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
declare(strict_types=1);
 
namespace think\model;
 
use Closure;
use think\db\BaseQuery as Query;
use think\db\exception\DbException as Exception;
use think\Model;
 
/**
 * 模型关联基础类.
 *
 * @mixin Query
 */
abstract class Relation
{
    /**
     * 父模型对象
     *
     * @var Model
     */
    protected $parent;
 
    /**
     * 当前关联的模型类名.
     *
     * @var string
     */
    protected $model;
 
    /**
     * 关联模型查询对象
     *
     * @var Query
     */
    protected $query;
 
    /**
     * 关联表外键.
     *
     * @var string
     */
    protected $foreignKey;
 
    /**
     * 关联表主键.
     *
     * @var string
     */
    protected $localKey;
 
    /**
     * 是否执行关联基础查询.
     *
     * @var bool
     */
    protected $baseQuery;
 
    /**
     * 是否为自关联.
     *
     * @var bool
     */
    protected $selfRelation = false;
 
    /**
     * 关联数据字段限制.
     *
     * @var array
     */
    protected $withField;
 
    /**
     * 排除关联数据字段.
     *
     * @var array
     */
    protected $withoutField;
 
    /**
     * 默认数据.
     *
     * @var mixed
     */
    protected $default;
 
    /**
     * 获取关联的所属模型.
     *
     * @return Model
     */
    public function getParent(): Model
    {
        return $this->parent;
    }
 
    /**
     * 获取当前的关联模型类的Query实例.
     *
     * @return Query
     */
    public function getQuery()
    {
        return $this->query;
    }
 
    /**
     * 获取关联表外键.
     *
     * @return string
     */
    public function getForeignKey(): string
    {
        return $this->foreignKey;
    }
 
    /**
     * 获取关联表主键.
     *
     * @return string
     */
    public function getLocalKey(): string
    {
        return $this->localKey;
    }
 
    /**
     * 获取当前的关联模型类的实例.
     *
     * @return Model
     */
    public function getModel(): Model
    {
        return $this->query->getModel();
    }
 
    /**
     * 当前关联是否为自关联.
     *
     * @return bool
     */
    public function isSelfRelation(): bool
    {
        return $this->selfRelation;
    }
 
    /**
     * 封装关联数据集.
     *
     * @param array $resultSet 数据集
     * @param Model $parent    父模型
     *
     * @return mixed
     */
    protected function resultSetBuild(array $resultSet, ?Model $parent = null)
    {
        return (new $this->model())->toCollection($resultSet)->setParent($parent);
    }
 
    protected function getQueryFields(string $model)
    {
        $fields = $this->query->getOptions('field');
 
        return $this->getRelationQueryFields($fields, $model);
    }
 
    protected function getRelationQueryFields($fields, string $model)
    {
        if (empty($fields) || '*' == $fields) {
            return $model . '.*';
        }
 
        if (is_string($fields)) {
            $fields = explode(',', $fields);
        }
 
        foreach ($fields as &$field) {
            if (!str_contains($field, '.')) {
                $field = $model . '.' . $field;
            }
        }
 
        return $fields;
    }
 
    protected function getQueryWhere(array &$where, string $relation): void
    {
        foreach ($where as $key => &$val) {
            if (is_string($key)) {
                $where[] = [!str_contains($key, '.') ? $relation . '.' . $key : $key, '=', $val];
                unset($where[$key]);
            } elseif (isset($val[0]) && !str_contains($val[0], '.')) {
                $val[0] = $relation . '.' . $val[0];
            }
        }
    }
 
    /**
     * 获取关联数据默认值
     *
     * @param mixed $data 模型数据
     *
     * @return mixed
     */
    protected function getDefaultModel($data)
    {
        if (is_array($data)) {
            $model = (new $this->model())->data($data);
        } elseif ($data instanceof Closure) {
            $model = new $this->model();
            $data($model);
        } else {
            $model = $data;
        }
 
        return $model;
    }
 
    /**
     * 执行基础查询(仅执行一次).
     *
     * @return void
     */
    protected function baseQuery(): void
    {
    }
 
    public function __call($method, $args)
    {
        if ($this->query) {
            // 执行基础查询
            $this->baseQuery();
 
            $result = call_user_func_array([$this->query, $method], $args);
 
            return $result === $this->query ? $this : $result;
        }
 
        throw new Exception('method not exists:' . __CLASS__ . '->' . $method);
    }
}