ModelCreator.php
5.78 KB
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
<?php
namespace Dcat\Admin\Scaffold;
use Dcat\Admin\Exception\AdminException;
use Dcat\Admin\Support\Helper;
use Illuminate\Support\Str;
class ModelCreator
{
/**
* Table name.
*
* @var string
*/
protected $tableName;
/**
* Model name.
*
* @var string
*/
protected $name;
/**
* The filesystem instance.
*
* @var \Illuminate\Filesystem\Filesystem
*/
protected $files;
/**
* ModelCreator constructor.
*
* @param string $tableName
* @param string $name
* @param null $files
*/
public function __construct($tableName, $name, $files = null)
{
$this->tableName = $tableName;
$this->name = $name;
$this->files = $files ?: app('files');
}
/**
* Create a new migration file.
*
* @param string $keyName
* @param bool|true $timestamps
* @param bool|false $softDeletes
* @return string
*
* @throws \Exception
*/
public function create($keyName = 'id', $timestamps = true, $softDeletes = false)
{
$path = $this->getpath($this->name);
$dir = dirname($path);
if (! is_dir($dir)) {
$this->files->makeDirectory($dir, 0755, true);
}
if ($this->files->exists($path)) {
throw new AdminException("Model [$this->name] already exists!");
}
$stub = $this->files->get($this->getStub());
$stub = $this->replaceClass($stub, $this->name)
->replaceNamespace($stub, $this->name)
->replaceSoftDeletes($stub, $softDeletes)
->replaceDatetimeFormatter($stub)
->replaceTable($stub, $this->name)
->replaceTimestamp($stub, $timestamps)
->replacePrimaryKey($stub, $keyName)
->replaceSpace($stub);
$this->files->put($path, $stub);
$this->files->chmod($path, 0777);
return $path;
}
/**
* Get path for migration file.
*
* @param string $name
* @return string
*/
public function getPath($name)
{
return Helper::guessClassFileName($name);
}
/**
* Get namespace of giving class full name.
*
* @param string $name
* @return string
*/
protected function getNamespace($name)
{
return trim(implode('\\', array_slice(explode('\\', $name), 0, -1)), '\\');
}
/**
* Replace class dummy.
*
* @param string $stub
* @param string $name
* @return $this
*/
protected function replaceClass(&$stub, $name)
{
$class = str_replace($this->getNamespace($name).'\\', '', $name);
$stub = str_replace('DummyClass', $class, $stub);
return $this;
}
/**
* Replace namespace dummy.
*
* @param string $stub
* @param string $name
* @return $this
*/
protected function replaceNamespace(&$stub, $name)
{
$stub = str_replace(
'DummyNamespace',
$this->getNamespace($name),
$stub
);
return $this;
}
/**
* Replace soft-deletes dummy.
*
* @param string $stub
* @param bool $softDeletes
* @return $this
*/
protected function replaceSoftDeletes(&$stub, $softDeletes)
{
$import = $use = '';
if ($softDeletes) {
$import = 'use Illuminate\\Database\\Eloquent\\SoftDeletes;';
$use = 'use SoftDeletes;';
}
$stub = str_replace(['DummyImportSoftDeletesTrait', 'DummyUseSoftDeletesTrait'], [$import, $use], $stub);
return $this;
}
/**
* Replace datetimeFormatter dummy.
*
* @param string $stub
* @param bool $softDeletes
* @return $this
*/
protected function replaceDatetimeFormatter(&$stub)
{
$import = $use = '';
if (version_compare(app()->version(), '7.0.0') >= 0) {
$import = 'use Dcat\\Admin\\Traits\\HasDateTimeFormatter;';
$use = 'use HasDateTimeFormatter;';
}
$stub = str_replace(['DummyImportDateTimeFormatterTrait', 'DummyUseDateTimeFormatterTrait'], [$import, $use], $stub);
return $this;
}
/**
* Replace primarykey dummy.
*
* @param string $stub
* @param string $keyName
* @return $this
*/
protected function replacePrimaryKey(&$stub, $keyName)
{
$modelKey = $keyName == 'id' ? '' : "protected \$primaryKey = '$keyName';\n";
$stub = str_replace('DummyModelKey', $modelKey, $stub);
return $this;
}
/**
* Replace Table name dummy.
*
* @param string $stub
* @param string $name
* @return $this
*/
protected function replaceTable(&$stub, $name)
{
$class = str_replace($this->getNamespace($name).'\\', '', $name);
$table = Str::plural(strtolower($class)) !== $this->tableName ? "protected \$table = '$this->tableName';\n" : '';
$stub = str_replace('DummyModelTable', $table, $stub);
return $this;
}
/**
* Replace timestamps dummy.
*
* @param string $stub
* @param bool $timestamps
* @return $this
*/
protected function replaceTimestamp(&$stub, $timestamps)
{
$useTimestamps = $timestamps ? '' : "public \$timestamps = false;\n";
$stub = str_replace('DummyTimestamp', $useTimestamps, $stub);
return $this;
}
/**
* Replace spaces.
*
* @param string $stub
* @return mixed
*/
public function replaceSpace($stub)
{
return str_replace(["\n\n\n", "\n \n"], ["\n\n", ''], $stub);
}
/**
* Get stub path of model.
*
* @return string
*/
public function getStub()
{
return __DIR__.'/stubs/model.stub';
}
}