/var/www/hkosl.com/demo_google/application/vendor/illuminate/database/Eloquent/FactoryBuilder.php


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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
<?php

namespace Illuminate\Database\Eloquent;

use 
Faker\Generator as Faker;
use 
InvalidArgumentException;
use 
Illuminate\Support\Traits\Macroable;

class 
FactoryBuilder
{
    use 
Macroable;

    
/**
     * The model definitions in the container.
     *
     * @var array
     */
    
protected $definitions;

    
/**
     * The model being built.
     *
     * @var string
     */
    
protected $class;

    
/**
     * The name of the model being built.
     *
     * @var string
     */
    
protected $name 'default';

    
/**
     * The model states.
     *
     * @var array
     */
    
protected $states;

    
/**
     * The states to apply.
     *
     * @var array
     */
    
protected $activeStates = [];

    
/**
     * The Faker instance for the builder.
     *
     * @var \Faker\Generator
     */
    
protected $faker;

    
/**
     * The number of models to build.
     *
     * @var int|null
     */
    
protected $amount null;

    
/**
     * Create an new builder instance.
     *
     * @param  string  $class
     * @param  string  $name
     * @param  array  $definitions
     * @param  array  $states
     * @param  \Faker\Generator  $faker
     * @return void
     */
    
public function __construct($class$name, array $definitions, array $statesFaker $faker)
    {
        
$this->name $name;
        
$this->class $class;
        
$this->faker $faker;
        
$this->states $states;
        
$this->definitions $definitions;
    }

    
/**
     * Set the amount of models you wish to create / make.
     *
     * @param  int  $amount
     * @return $this
     */
    
public function times($amount)
    {
        
$this->amount $amount;

        return 
$this;
    }

    
/**
     * Set the states to be applied to the model.
     *
     * @param  array|mixed  $states
     * @return $this
     */
    
public function states($states)
    {
        
$this->activeStates is_array($states) ? $states func_get_args();

        return 
$this;
    }

    
/**
     * Create a model and persist it in the database if requested.
     *
     * @param  array  $attributes
     * @return \Closure
     */
    
public function lazy(array $attributes = [])
    {
        return function () use (
$attributes) {
            return 
$this->create($attributes);
        };
    }

    
/**
     * Create a collection of models and persist them to the database.
     *
     * @param  array  $attributes
     * @return mixed
     */
    
public function create(array $attributes = [])
    {
        
$results $this->make($attributes);

        if (
$results instanceof Model) {
            
$this->store(collect([$results]));
        } else {
            
$this->store($results);
        }

        return 
$results;
    }

    
/**
     * Set the connection name on the results and store them.
     *
     * @param  \Illuminate\Support\Collection  $results
     * @return void
     */
    
protected function store($results)
    {
        
$results->each(function ($model) {
            
$model->setConnection($model->newQueryWithoutScopes()->getConnection()->getName());

            
$model->save();
        });
    }

    
/**
     * Create a collection of models.
     *
     * @param  array  $attributes
     * @return mixed
     */
    
public function make(array $attributes = [])
    {
        if (
$this->amount === null) {
            return 
$this->makeInstance($attributes);
        }

        if (
$this->amount 1) {
            return (new 
$this->class)->newCollection();
        }

        return (new 
$this->class)->newCollection(array_map(function () use ($attributes) {
            return 
$this->makeInstance($attributes);
        }, 
range(1$this->amount)));
    }

    
/**
     * Create an array of raw attribute arrays.
     *
     * @param  array  $attributes
     * @return mixed
     */
    
public function raw(array $attributes = [])
    {
        if (
$this->amount === null) {
            return 
$this->getRawAttributes($attributes);
        }

        if (
$this->amount 1) {
            return [];
        }

        return 
array_map(function () use ($attributes) {
            return 
$this->getRawAttributes($attributes);
        }, 
range(1$this->amount));
    }

    
/**
     * Get a raw attributes array for the model.
     *
     * @param  array  $attributes
     * @return mixed
     */
    
protected function getRawAttributes(array $attributes = [])
    {
        
$definition call_user_func(
            
$this->definitions[$this->class][$this->name],
            
$this->faker$attributes
        
);

        return 
$this->expandAttributes(
            
array_merge($this->applyStates($definition$attributes), $attributes)
        );
    }

    
/**
     * Make an instance of the model with the given attributes.
     *
     * @param  array  $attributes
     * @return \Illuminate\Database\Eloquent\Model
     *
     * @throws \InvalidArgumentException
     */
    
protected function makeInstance(array $attributes = [])
    {
        return 
Model::unguarded(function () use ($attributes) {
            if (! isset(
$this->definitions[$this->class][$this->name])) {
                throw new 
InvalidArgumentException("Unable to locate factory with name [{$this->name}] [{$this->class}].");
            }

            return new 
$this->class(
                
$this->getRawAttributes($attributes)
            );
        });
    }

    
/**
     * Apply the active states to the model definition array.
     *
     * @param  array  $definition
     * @param  array  $attributes
     * @return array
     */
    
protected function applyStates(array $definition, array $attributes = [])
    {
        foreach (
$this->activeStates as $state) {
            if (! isset(
$this->states[$this->class][$state])) {
                throw new 
InvalidArgumentException("Unable to locate [{$state}] state for [{$this->class}].");
            }

            
$definition array_merge($definitioncall_user_func(
                
$this->states[$this->class][$state],
                
$this->faker$attributes
            
));
        }

        return 
$definition;
    }

    
/**
     * Expand all attributes to their underlying values.
     *
     * @param  array  $attributes
     * @return array
     */
    
protected function expandAttributes(array $attributes)
    {
        foreach (
$attributes as &$attribute) {
            if (
is_callable($attribute) && ! is_string($attribute)) {
                
$attribute $attribute($attributes);
            }

            if (
$attribute instanceof static) {
                
$attribute $attribute->create()->getKey();
            }

            if (
$attribute instanceof Model) {
                
$attribute $attribute->getKey();
            }
        }

        return 
$attributes;
    }
}