annotate src/Generator/Controller/ControllerGenerator.php @ 40:2cf26b593f4a ls_dev_2025_09 tip

better support for different column types
author Luka Sitas <sitas.luka.97@gmail.com>
date Thu, 16 Oct 2025 10:54:04 -0400
parents 827efbf4d73c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
1 <?php
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
2
19
19b7a8de0019 updating namespace from typo
Luka Sitas <sitas.luka.97@gmail.com>
parents: 9
diff changeset
3 namespace Wizard\MagicForger\Generator\Controller;
3
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
4
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
5 use Symfony\Component\Console\Attribute\AsCommand;
19
19b7a8de0019 updating namespace from typo
Luka Sitas <sitas.luka.97@gmail.com>
parents: 9
diff changeset
6 use Wizard\MagicForger\Generator\BaseGenerator;
3
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
7
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
8 #[AsCommand(name: 'mf:controller')]
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
9 class ControllerGenerator extends BaseGenerator
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
10 {
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
11 /**
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
12 * The name and signature of the console command.
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
13 *
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
14 * @var string
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
15 */
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
16 protected $name = 'mf:controller';
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
17
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
18 /**
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
19 * The console command description.
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
20 *
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
21 * @var string
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
22 */
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
23 protected $description = 'Generates the Controller File for a table.';
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
24
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
25 /**
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
26 * The type of class being generated.
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
27 *
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
28 * @var string
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
29 */
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
30 protected $type = 'Controller';
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
31
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
32 /**
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
33 * Execute the console command.
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
34 */
21
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
35 public function handle(): void
3
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
36 {
4
a20439b1c9d3 Added Model generator and other updates.
luka
parents: 3
diff changeset
37 parent::handle();
3
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
38 }
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
39
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
40 /**
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
41 * Get the stub file for the generator.
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
42 */
21
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
43 protected function getStub(): string
3
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
44 {
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
45 return $this->resolveStubPath('/stubs/controller.stub');
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
46 }
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
47
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
48 /**
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
49 * Resolve the fully-qualified path to the stub.
21
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
50 */
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
51 protected function resolveStubPath(string $stub): string
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
52 {
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
53 $customPath = $this->laravel->basePath(trim($stub, '/'));
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
54
23
827efbf4d73c Huge changes to the relationships for models and more complex
Luka Sitas <sitas.luka.97@gmail.com>
parents: 22
diff changeset
55 return is_file($customPath) ? $customPath : __DIR__.$stub;
21
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
56 }
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
57
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
58 /**
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
59 * Get the path for the generated file.
3
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
60 */
22
ee8ef14e158d Now able to include through composer
Luka Sitas <sitas.luka.97@gmail.com>
parents: 21
diff changeset
61 protected function getPath($name = null)
3
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
62 {
21
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
63 return str_replace(
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
64 ['App\\', '\\'],
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
65 ['app/', '/'],
23
827efbf4d73c Huge changes to the relationships for models and more complex
Luka Sitas <sitas.luka.97@gmail.com>
parents: 22
diff changeset
66 $this->getControllerNamespace().'/'.$this->controller_name($this->getTableInput()).'.php'
21
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
67 );
3
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
68 }
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
69
21
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
70 /**
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
71 * Get the class name for the controller.
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
72 */
f0b0d014e448 Cleaning up code based on AI overlord review
Luka Sitas <sitas.luka.97@gmail.com>
parents: 19
diff changeset
73 protected function getClassName(string $name): string
3
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
74 {
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
75 return $this->controller_name($name);
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
76 }
6468684362c2 It works! Created a controller, no update insert but it works
luka
parents: 2
diff changeset
77 }