|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Webfactor\Laravel\Generators\Traits; |
|
4
|
|
|
|
|
5
|
|
|
trait CanGenerateFile |
|
6
|
|
|
{ |
|
7
|
|
|
protected $fileContent; |
|
8
|
|
|
|
|
9
|
|
|
public function call() |
|
10
|
|
|
{ |
|
11
|
|
|
$this->generateFile(); |
|
12
|
|
|
$this->addGeneratedFileToIdeStack(); |
|
|
|
|
|
|
13
|
|
|
} |
|
14
|
|
|
|
|
15
|
|
|
/** |
|
16
|
|
|
* Generate the file and save it according to specified naming. |
|
17
|
|
|
* |
|
18
|
|
|
* @return void |
|
19
|
|
|
*/ |
|
20
|
|
|
protected function generateFile(): void |
|
21
|
|
|
{ |
|
22
|
|
|
if (method_exists($this->naming, 'getStub')) { |
|
23
|
|
|
$this->loadStubFile($this->naming->getStub()); |
|
|
|
|
|
|
24
|
|
|
} |
|
25
|
|
|
|
|
26
|
|
|
$this->buildFileContent(); |
|
|
|
|
|
|
27
|
|
|
|
|
28
|
|
|
if (!$this->filesystem->isDirectory($this->naming->getPath())) { |
|
29
|
|
|
$this->filesystem->makeDirectory($this->naming->getPath(), 0755, true); |
|
|
|
|
|
|
30
|
|
|
} |
|
31
|
|
|
|
|
32
|
|
|
$this->filesystem->put($this->naming->getFile(), $this->fileContent); |
|
33
|
|
|
} |
|
34
|
|
|
|
|
35
|
|
|
protected function loadStubFile(string $stubFile): void |
|
36
|
|
|
{ |
|
37
|
|
|
try { |
|
38
|
|
|
$this->fileContent = $this->filesystem->get($stubFile); |
|
39
|
|
|
} catch (FileNotFoundException $exception) { |
|
|
|
|
|
|
40
|
|
|
$this->command->error('Could not find stub file: ' . $stubFile); |
|
|
|
|
|
|
41
|
|
|
} |
|
42
|
|
|
} |
|
43
|
|
|
|
|
44
|
|
|
/** |
|
45
|
|
|
* Replace the class namespace in stub file. |
|
46
|
|
|
* |
|
47
|
|
|
* @return string |
|
|
|
|
|
|
48
|
|
|
*/ |
|
49
|
|
|
protected function replaceClassNamespace(): void |
|
50
|
|
|
{ |
|
51
|
|
|
$this->fileContent = str_replace('__class_namespace__', $this->naming->getNamespace(), $this->fileContent); |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
/** |
|
55
|
|
|
* Replace the class name in stub file. |
|
56
|
|
|
* |
|
57
|
|
|
* @return string |
|
|
|
|
|
|
58
|
|
|
*/ |
|
59
|
|
|
protected function replaceClassName(): void |
|
60
|
|
|
{ |
|
61
|
|
|
$this->fileContent = str_replace('__class_name__', $this->naming->getClassName(), $this->fileContent); |
|
62
|
|
|
} |
|
63
|
|
|
|
|
64
|
|
|
/** |
|
65
|
|
|
* Replace the table name in stub file. |
|
66
|
|
|
* |
|
67
|
|
|
* @return string |
|
|
|
|
|
|
68
|
|
|
*/ |
|
69
|
|
|
protected function replaceTableName(): void |
|
70
|
|
|
{ |
|
71
|
|
|
$this->fileContent = str_replace('__table_name__', $this->command->naming['migration']->getTableName(), $this->fileContent); |
|
|
|
|
|
|
72
|
|
|
} |
|
73
|
|
|
|
|
74
|
|
|
/** |
|
75
|
|
|
* Get the full path to the generated file. |
|
76
|
|
|
* |
|
77
|
|
|
* @return string |
|
78
|
|
|
*/ |
|
79
|
|
|
protected function getFilePath(): string |
|
80
|
|
|
{ |
|
81
|
|
|
return $this->command->naming[$this->key]->getFile(); |
|
|
|
|
|
|
82
|
|
|
} |
|
83
|
|
|
} |
|
84
|
|
|
|
This check looks for methods that are used by a trait but not required by it.
To illustrate, let’s look at the following code example
The trait
Idableprovides a methodequalsIdthat in turn relies on the methodgetId(). If this method does not exist on a class mixing in this trait, the method will fail.Adding the
getId()as an abstract method to the trait will make sure it is available.