17
17
use Symfony \Component \Console \Input \InputArgument ;
18
18
use Symfony \Component \Console \Input \InputInterface ;
19
19
use Symfony \Component \Console \Input \InputOption ;
20
+ use Symfony \Component \HttpKernel \KernelInterface ;
20
21
use Zenstruck \Foundry \ModelFactory ;
21
22
22
23
/**
23
24
* @author Kevin Bond <[email protected] >
24
25
*/
25
26
final class MakeFactory extends AbstractMaker
26
27
{
27
- private const DEFAULTS = [
28
+ private const DEFAULTS_FOR_PERSISTED = [
28
29
'ARRAY ' => '[], ' ,
29
30
'ASCII_STRING ' => 'self::faker()->text({length}), ' ,
30
31
'BIGINT ' => 'self::faker()->randomNumber(), ' ,
@@ -50,10 +51,20 @@ final class MakeFactory extends AbstractMaker
50
51
'TIME_IMMUTABLE ' => '\DateTimeImmutable::createFromMutable(self::faker()->datetime()), ' ,
51
52
];
52
53
54
+ private const DEFAULTS_FOR_NOT_PERSISTED = [
55
+ 'array ' => '[], ' ,
56
+ 'string ' => 'self::faker()->text(), ' ,
57
+ 'int ' => 'self::faker()->randomNumber(), ' ,
58
+ 'float ' => 'self::faker()->randomFloat(), ' ,
59
+ 'bool ' => 'self::faker()->boolean(), ' ,
60
+ \DateTime::class => 'self::faker()->dateTime(), ' ,
61
+ \DateTimeImmutable::class => '\DateTimeImmutable::createFromMutable(self::faker()->dateTime()), ' ,
62
+ ];
63
+
53
64
/** @var string[] */
54
- private array $ entitiesWithFactories = [] ;
65
+ private array $ entitiesWithFactories ;
55
66
56
- public function __construct (private ManagerRegistry $ managerRegistry , \Traversable $ factories , private string $ projectDir )
67
+ public function __construct (private ManagerRegistry $ managerRegistry , \Traversable $ factories , private string $ projectDir, private KernelInterface $ kernel )
57
68
{
58
69
$ this ->entitiesWithFactories = \array_map (
59
70
static fn (ModelFactory $ factory ): string => $ factory ::getEntityClass (),
@@ -68,7 +79,7 @@ public static function getCommandName(): string
68
79
69
80
public static function getCommandDescription (): string
70
81
{
71
- return 'Creates a Foundry model factory for a Doctrine entity class ' ;
82
+ return 'Creates a Foundry model factory for a Doctrine entity class or a regular object ' ;
72
83
}
73
84
74
85
public function configureDependencies (DependencyBuilder $ dependencies ): void
@@ -80,18 +91,26 @@ public function configureCommand(Command $command, InputConfiguration $inputConf
80
91
{
81
92
$ command
82
93
->setDescription (self ::getCommandDescription ())
83
- ->addArgument ('entity ' , InputArgument::OPTIONAL , 'Entity class to create a factory for ' )
94
+ ->addArgument ('class ' , InputArgument::OPTIONAL , 'Entity, Document or class to create a factory for ' )
84
95
->addOption ('namespace ' , null , InputOption::VALUE_REQUIRED , 'Customize the namespace for generated factories ' , 'Factory ' )
85
96
->addOption ('test ' , null , InputOption::VALUE_NONE , 'Create in <fg=yellow>tests/</> instead of <fg=yellow>src/</> ' )
86
97
->addOption ('all-fields ' , null , InputOption::VALUE_NONE , 'Create defaults for all entity fields, not only required fields ' )
98
+ ->addOption ('not-persisted ' , null , InputOption::VALUE_NONE , 'Create a factory for an object not managed by Doctrine ' )
87
99
;
88
100
89
- $ inputConfig ->setArgumentAsNonInteractive ('entity ' );
101
+ $ inputConfig ->setArgumentAsNonInteractive ('class ' );
90
102
}
91
103
92
104
public function interact (InputInterface $ input , ConsoleStyle $ io , Command $ command ): void
93
105
{
94
- if ($ input ->getArgument ('entity ' )) {
106
+ if (!$ this ->doctrineEnabled () && !$ input ->getOption ('not-persisted ' )) {
107
+ $ io ->text ('// Note: Doctrine not enabled: auto-activating <fg=yellow>--not-persisted</> option. ' );
108
+ $ io ->newLine ();
109
+
110
+ $ input ->setOption ('not-persisted ' , true );
111
+ }
112
+
113
+ if ($ input ->getArgument ('class ' )) {
95
114
return ;
96
115
}
97
116
@@ -105,16 +124,30 @@ public function interact(InputInterface $input, ConsoleStyle $io, Command $comma
105
124
$ io ->newLine ();
106
125
}
107
126
108
- $ argument = $ command ->getDefinition ()->getArgument ('entity ' );
109
- $ entity = $ io ->choice ($ argument ->getDescription (), \array_merge ($ this ->entityChoices (), ['All ' ]));
127
+ if ($ input ->getOption ('not-persisted ' )) {
128
+ $ class = $ io ->ask (
129
+ 'Not persisted class to create a factory for ' ,
130
+ validator: static function (string $ class ) {
131
+ if (!\class_exists ($ class )) {
132
+ throw new RuntimeCommandException ("Given class \"{$ class }\" does not exist. " );
133
+ }
134
+
135
+ return $ class ;
136
+ }
137
+ );
138
+ } else {
139
+ $ argument = $ command ->getDefinition ()->getArgument ('class ' );
140
+
141
+ $ class = $ io ->choice ($ argument ->getDescription (), \array_merge ($ this ->entityChoices (), ['All ' ]));
142
+ }
110
143
111
- $ input ->setArgument ('entity ' , $ entity );
144
+ $ input ->setArgument ('class ' , $ class );
112
145
}
113
146
114
147
public function generate (InputInterface $ input , ConsoleStyle $ io , Generator $ generator ): void
115
148
{
116
- $ entity = $ input ->getArgument ('entity ' );
117
- $ classes = 'All ' === $ entity ? $ this ->entityChoices () : [$ entity ];
149
+ $ class = $ input ->getArgument ('class ' );
150
+ $ classes = 'All ' === $ class ? $ this ->entityChoices () : [$ class ];
118
151
119
152
foreach ($ classes as $ class ) {
120
153
$ this ->generateFactory ($ class , $ input , $ io , $ generator );
@@ -131,7 +164,7 @@ private function generateFactory(string $class, InputInterface $input, ConsoleSt
131
164
}
132
165
133
166
if (!\class_exists ($ class )) {
134
- throw new RuntimeCommandException (\sprintf ('Entity "%s" not found. ' , $ input ->getArgument ('entity ' )));
167
+ throw new RuntimeCommandException (\sprintf ('Class "%s" not found. ' , $ input ->getArgument ('class ' )));
135
168
}
136
169
137
170
$ namespace = $ input ->getOption ('namespace ' );
@@ -148,24 +181,29 @@ private function generateFactory(string $class, InputInterface $input, ConsoleSt
148
181
$ namespace = 'Tests \\' .$ namespace ;
149
182
}
150
183
151
- $ entity = new \ReflectionClass ($ class );
152
- $ factory = $ generator ->createClassNameDetails ($ entity ->getShortName (), $ namespace , 'Factory ' );
184
+ $ object = new \ReflectionClass ($ class );
185
+ $ factory = $ generator ->createClassNameDetails ($ object ->getShortName (), $ namespace , 'Factory ' );
153
186
154
- $ repository = new \ReflectionClass ($ this ->managerRegistry ->getRepository ($ entity ->getName ()));
187
+ if (!$ input ->getOption ('not-persisted ' )) {
188
+ $ repository = new \ReflectionClass ($ this ->managerRegistry ->getRepository ($ object ->getName ()));
155
189
156
- if (0 !== \mb_strpos ($ repository ->getName (), $ generator ->getRootNamespace ())) {
157
- // not using a custom repository
158
- $ repository = null ;
190
+ if (0 !== \mb_strpos ($ repository ->getName (), $ generator ->getRootNamespace ())) {
191
+ // not using a custom repository
192
+ $ repository = null ;
193
+ }
159
194
}
160
195
161
196
$ generator ->generateClass (
162
197
$ factory ->getFullName (),
163
198
__DIR__ .'/../Resources/skeleton/Factory.tpl.php ' ,
164
199
[
165
- 'entity ' => $ entity ,
166
- 'defaultProperties ' => $ this ->defaultPropertiesFor ($ entity ->getName (), $ input ->getOption ('all-fields ' )),
167
- 'repository ' => $ repository ,
200
+ 'object ' => $ object ,
201
+ 'defaultProperties ' => $ input ->getOption ('not-persisted ' )
202
+ ? $ this ->defaultPropertiesForNotPersistedObject ($ object ->getName (), $ input ->getOption ('all-fields ' ))
203
+ : $ this ->defaultPropertiesForPersistedObject ($ object ->getName (), $ input ->getOption ('all-fields ' )),
204
+ 'repository ' => $ repository ?? null ,
168
205
'phpstanEnabled ' => $ this ->phpstanEnabled (),
206
+ 'persisted ' => !$ input ->getOption ('not-persisted ' ),
169
207
]
170
208
);
171
209
@@ -210,7 +248,7 @@ private function entityChoices(): array
210
248
/**
211
249
* @param class-string $class
212
250
*/
213
- private function defaultPropertiesFor (string $ class , bool $ allFields ): iterable
251
+ private function defaultPropertiesForPersistedObject (string $ class , bool $ allFields ): iterable
214
252
{
215
253
$ em = $ this ->managerRegistry ->getManagerForClass ($ class );
216
254
@@ -234,16 +272,66 @@ private function defaultPropertiesFor(string $class, bool $allFields): iterable
234
272
$ value = "null, // TODO add {$ type } {$ dbType } type manually " ;
235
273
$ length = $ property ['length ' ] ?? '' ;
236
274
237
- if (\array_key_exists ($ type , self ::DEFAULTS )) {
238
- $ value = self ::DEFAULTS [$ type ];
275
+ if (\array_key_exists ($ type , self ::DEFAULTS_FOR_PERSISTED )) {
276
+ $ value = self ::DEFAULTS_FOR_PERSISTED [$ type ];
239
277
}
240
278
241
279
yield $ property ['fieldName ' ] => \str_replace ('{length} ' , (string ) $ length , $ value );
242
280
}
243
281
}
244
282
283
+ /**
284
+ * @param class-string $class
285
+ */
286
+ private function defaultPropertiesForNotPersistedObject (string $ class , bool $ allFields ): iterable
287
+ {
288
+ $ object = new \ReflectionClass ($ class );
289
+
290
+ foreach ($ object ->getProperties () as $ property ) {
291
+ // ignore identifiers and nullable fields
292
+ if (!$ allFields && ($ property ->hasDefaultValue () || !$ property ->hasType () || $ property ->getType ()?->allowsNull())) {
293
+ continue ;
294
+ }
295
+
296
+ $ type = null ;
297
+ $ reflectionType = $ property ->getType ();
298
+ if ($ reflectionType instanceof \ReflectionNamedType) {
299
+ $ type = $ reflectionType ->getName ();
300
+ }
301
+
302
+ $ value = \sprintf ('null, // TODO add %svalue manually ' , $ type ? "{$ type } " : '' );
303
+
304
+ if (\array_key_exists ($ type ?? '' , self ::DEFAULTS_FOR_NOT_PERSISTED )) {
305
+ $ value = self ::DEFAULTS_FOR_NOT_PERSISTED [$ type ];
306
+ }
307
+
308
+ yield $ property ->getName () => $ value ;
309
+ }
310
+ }
311
+
245
312
private function phpstanEnabled (): bool
246
313
{
247
314
return \file_exists ("{$ this ->projectDir }/vendor/phpstan/phpstan/phpstan " );
248
315
}
316
+
317
+ private function doctrineEnabled (): bool
318
+ {
319
+ try {
320
+ $ this ->kernel ->getBundle ('DoctrineBundle ' );
321
+
322
+ $ ormEnabled = true ;
323
+ } catch (\InvalidArgumentException ) {
324
+ $ ormEnabled = false ;
325
+ }
326
+
327
+ try {
328
+ $ this ->kernel ->getBundle ('DoctrineMongoDBBundle ' );
329
+
330
+ $ odmEnabled = true ;
331
+ } catch (\InvalidArgumentException ) {
332
+ $ odmEnabled = false ;
333
+ }
334
+
335
+ return $ ormEnabled || $ odmEnabled ;
336
+ }
249
337
}
0 commit comments