1
1
<?php
2
- namespace Dennis \Seeder \Command ;
2
+ namespace TildBJ \Seeder \Command ;
3
3
4
4
/***************************************************************
5
5
* Copyright notice
25
25
* This copyright notice MUST APPEAR in all copies of the script!
26
26
***************************************************************/
27
27
28
- use Dennis \Seeder \Domain \Model \ColumnInterface ;
29
- use Dennis \Seeder \Generator \MethodNameGenerator ;
28
+ use TildBJ \Seeder \Domain \Model \ColumnInterface ;
29
+ use TildBJ \Seeder \Generator \MethodNameGenerator ;
30
30
use TYPO3 \CMS \Core \Utility \GeneralUtility ;
31
31
32
32
/**
@@ -43,7 +43,7 @@ class SeederCommandController extends \TYPO3\CMS\Extbase\Mvc\Controller\CommandC
43
43
*
44
44
* @var string $namespace
45
45
*/
46
- protected $ namespace = 'Dennis \Seeder\Seeder ' ;
46
+ protected $ namespace = 'TildBJ \Seeder\Seeder ' ;
47
47
48
48
/**
49
49
* path
@@ -65,14 +65,14 @@ class SeederCommandController extends \TYPO3\CMS\Extbase\Mvc\Controller\CommandC
65
65
protected $ methodNameGenerator ;
66
66
67
67
/**
68
- * @var \Dennis \Seeder\Utility\OutputUtility
68
+ * @var \TildBJ \Seeder\Utility\OutputUtility
69
69
* @inject
70
70
*/
71
71
protected $ outputUtility ;
72
72
73
73
public function __construct ()
74
74
{
75
- $ faker = \Dennis \Seeder \Factory \FakerFactory::createFaker ();
75
+ $ faker = \TildBJ \Seeder \Factory \FakerFactory::createFaker ();
76
76
$ this ->methodNameGenerator = GeneralUtility::makeInstance (MethodNameGenerator::class, $ faker );
77
77
}
78
78
@@ -86,7 +86,7 @@ public function seedCommand($seed)
86
86
{
87
87
$ class = $ this ->resolveSeederClass ($ seed );
88
88
89
- /** @var \Dennis \Seeder\Seeder $seeder */
89
+ /** @var \TildBJ \Seeder\Seeder $seeder */
90
90
$ seeder = new $ class ;
91
91
$ seeder ->run ();
92
92
$ seeder ->seed ();
@@ -102,28 +102,28 @@ public function seedCommand($seed)
102
102
protected function detectSeederInformations ($ tableName )
103
103
{
104
104
$ informations = [];
105
- $ faker = \Dennis \Seeder \Factory \FakerFactory::createFaker ();
106
- $ table = \Dennis \Seeder \Factory \TableFactory::createTable ($ tableName );
105
+ $ faker = \TildBJ \Seeder \Factory \FakerFactory::createFaker ();
106
+ $ table = \TildBJ \Seeder \Factory \TableFactory::createTable ($ tableName );
107
107
108
108
/** @var ColumnInterface $column */
109
109
foreach ($ table ->getColumns () as $ column ) {
110
- if (in_array ($ column ->getName (), \Dennis \Seeder \Provider \Faker::$ skippedProvider )) {
110
+ if (in_array ($ column ->getName (), \TildBJ \Seeder \Provider \Faker::$ skippedProvider )) {
111
111
continue ;
112
112
}
113
113
$ provider = $ faker ->guessProviderName ($ column ->getName ());
114
- $ informationClassName = 'Dennis \\Seeder \\Information \\' . ucfirst (GeneralUtility::underscoredToLowerCamelCase ($ column ->getName ()) . 'Information ' );
114
+ $ informationClassName = 'TildBJ \\Seeder \\Information \\' . ucfirst (GeneralUtility::underscoredToLowerCamelCase ($ column ->getName ()) . 'Information ' );
115
115
$ relationInformationAvailable = false ;
116
116
if ($ column ->getName () !== 'abstract ' && class_exists ($ informationClassName )) {
117
117
$ information = GeneralUtility::makeInstance ($ informationClassName );
118
118
} elseif ($ this ->isRelation ($ column )) {
119
- $ information = GeneralUtility::makeInstance (\Dennis \Seeder \Information \RelationInformation::class);
119
+ $ information = GeneralUtility::makeInstance (\TildBJ \Seeder \Information \RelationInformation::class);
120
120
$ relationInformationAvailable = true ;
121
121
} else {
122
- $ information = GeneralUtility::makeInstance (\Dennis \Seeder \Information \NullInformation::class);
122
+ $ information = GeneralUtility::makeInstance (\TildBJ \Seeder \Information \NullInformation::class);
123
123
$ information ->setDefaultValue ($ provider );
124
124
}
125
- if (!$ information instanceof \Dennis \Seeder \Information) {
126
- throw new \Exception ($ informationClassName . ' must implement ' . \Dennis \Seeder \Information::class);
125
+ if (!$ information instanceof \TildBJ \Seeder \Information) {
126
+ throw new \Exception ($ informationClassName . ' must implement ' . \TildBJ \Seeder \Information::class);
127
127
}
128
128
129
129
if ($ this ->isRelation ($ column ) && $ relationInformationAvailable ) {
@@ -138,15 +138,15 @@ protected function detectSeederInformations($tableName)
138
138
}
139
139
} else {
140
140
switch ($ information ->getType ()) {
141
- case \Dennis \Seeder \Information::INFORMATION_TYPE_ASK :
141
+ case \TildBJ \Seeder \Information::INFORMATION_TYPE_ASK :
142
142
if (!is_null ($ response = $ this ->askOrSelect ($ information ->getQuestion ([$ column ->getName (), $ provider ]), $ information ->getDefaultValue ()))) {
143
143
if ($ this ->methodNameGenerator ->generate ($ response )) {
144
144
$ informations [$ column ->getName ()] = $ this ->methodNameGenerator ->generate ($ response );
145
145
}
146
146
}
147
147
break ;
148
- case \Dennis \Seeder \Information::INFORMATION_TYPE_SELECT :
149
- case \Dennis \Seeder \Information::INFORMATION_TYPE_SELECTMULTIPLE :
148
+ case \TildBJ \Seeder \Information::INFORMATION_TYPE_SELECT :
149
+ case \TildBJ \Seeder \Information::INFORMATION_TYPE_SELECTMULTIPLE :
150
150
if (!is_null ($ response = $ this ->askOrSelect ($ information ->getQuestion ([$ column ->getName (), $ provider ]), $ information ->getDefaultValue (), $ information ->getChoices ()))) {
151
151
if ($ this ->methodNameGenerator ->generate ($ response )) {
152
152
$ informations [$ column ->getName ()] = $ this ->methodNameGenerator ->generate ($ response );
@@ -162,8 +162,8 @@ protected function detectSeederInformations($tableName)
162
162
}
163
163
164
164
if (!isset ($ informations ['pid ' ])) {
165
- /** @var \Dennis \Seeder\Information $information */
166
- $ information = GeneralUtility::makeInstance (\Dennis \Seeder \Information \PidInformation::class);
165
+ /** @var \TildBJ \Seeder\Information $information */
166
+ $ information = GeneralUtility::makeInstance (\TildBJ \Seeder \Information \PidInformation::class);
167
167
$ informations ['pid ' ] = $ this ->outputUtility ->ask ($ information ->getQuestion (), $ information ->getDefaultValue ());
168
168
}
169
169
@@ -178,9 +178,9 @@ protected function isRelation(ColumnInterface $column)
178
178
{
179
179
return (
180
180
(
181
- $ column instanceof \Dennis \Seeder \Domain \Model \Column \Select ||
182
- $ column instanceof \Dennis \Seeder \Domain \Model \Column \Inline ||
183
- $ column instanceof \Dennis \Seeder \Domain \Model \Column \Group
181
+ $ column instanceof \TildBJ \Seeder \Domain \Model \Column \Select ||
182
+ $ column instanceof \TildBJ \Seeder \Domain \Model \Column \Inline ||
183
+ $ column instanceof \TildBJ \Seeder \Domain \Model \Column \Group
184
184
) &&
185
185
$ column ->getForeignTable ()
186
186
);
0 commit comments