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
|
<?php
namespace Illuminate\Database\Eloquent;
use Closure; use Faker\Generator as Faker; use InvalidArgumentException;
class FactoryBuilder { /** * 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 number of models to build. * * @var int */ protected $amount = 1;
/** * 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;
/** * 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 $states, Faker $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|dynamic $states * @return $this */ public function states($states) { $this->activeStates = is_array($states) ? $states : func_get_args();
return $this; }
/** * 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 ($this->amount === 1) { $results->save(); } else { foreach ($results as $result) { $result->save(); } }
return $results; }
/** * Create a collection of models. * * @param array $attributes * @return mixed */ public function make(array $attributes = []) { if ($this->amount < 1) { return new Collection; }
if ($this->amount === 1) { return $this->makeInstance($attributes); }
return new Collection(array_map(function () use ($attributes) { return $this->makeInstance($attributes); }, range(1, $this->amount))); }
/** * 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}]."); }
$definition = call_user_func( $this->definitions[$this->class][$this->name], $this->faker, $attributes );
return new $this->class($this->callClosureAttributes( array_merge($this->applyStates($definition, $attributes), $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($definition, call_user_func( $this->states[$this->class][$state], $this->faker, $attributes )); }
return $definition; }
/** * Evaluate any Closure attributes on the attribute array. * * @param array $attributes * @return array */ protected function callClosureAttributes(array $attributes) { foreach ($attributes as &$attribute) { $attribute = $attribute instanceof Closure ? $attribute($attributes) : $attribute; }
return $attributes; } }
|