|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* TechDivision\Import\Subjects\FileResolver\AbstractFileResolver |
|
5
|
|
|
* |
|
6
|
|
|
* NOTICE OF LICENSE |
|
7
|
|
|
* |
|
8
|
|
|
* This source file is subject to the Open Software License (OSL 3.0) |
|
9
|
|
|
* that is available through the world-wide-web at this URL: |
|
10
|
|
|
* http://opensource.org/licenses/osl-3.0.php |
|
11
|
|
|
* |
|
12
|
|
|
* PHP version 5 |
|
13
|
|
|
* |
|
14
|
|
|
* @author Tim Wagner <[email protected]> |
|
15
|
|
|
* @copyright 2016 TechDivision GmbH <[email protected]> |
|
16
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
17
|
|
|
* @link https://github.com/techdivision/import |
|
18
|
|
|
* @link http://www.techdivision.com |
|
19
|
|
|
*/ |
|
20
|
|
|
|
|
21
|
|
|
namespace TechDivision\Import\Subjects\FileResolver; |
|
22
|
|
|
|
|
23
|
|
|
use TechDivision\Import\ApplicationInterface; |
|
24
|
|
|
use TechDivision\Import\Utils\RegistryKeys; |
|
25
|
|
|
use TechDivision\Import\Services\RegistryProcessorInterface; |
|
26
|
|
|
use TechDivision\Import\Configuration\SubjectConfigurationInterface; |
|
27
|
|
|
|
|
28
|
|
|
/** |
|
29
|
|
|
* Abstract file resolver implementation. |
|
30
|
|
|
* |
|
31
|
|
|
* @author Tim Wagner <[email protected]> |
|
32
|
|
|
* @copyright 2016 TechDivision GmbH <[email protected]> |
|
33
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
34
|
|
|
* @link https://github.com/techdivision/import |
|
35
|
|
|
* @link http://www.techdivision.com |
|
36
|
|
|
*/ |
|
37
|
|
|
abstract class AbstractFileResolver implements FileResolverInterface |
|
38
|
|
|
{ |
|
39
|
|
|
|
|
40
|
|
|
/** |
|
41
|
|
|
* The registry processor instance. |
|
42
|
|
|
* |
|
43
|
|
|
* @var \TechDivision\Import\Services\RegistryProcessorInterface |
|
44
|
|
|
*/ |
|
45
|
|
|
private $registryProcessor; |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* The appliation instance. |
|
49
|
|
|
* |
|
50
|
|
|
* @var \TechDivision\Import\ApplicationInterface |
|
51
|
|
|
*/ |
|
52
|
|
|
private $application; |
|
53
|
|
|
|
|
54
|
|
|
/** |
|
55
|
|
|
* The actual source directory to load the files from. |
|
56
|
|
|
* |
|
57
|
|
|
* @var string |
|
58
|
|
|
*/ |
|
59
|
|
|
private $sourceDir; |
|
60
|
|
|
|
|
61
|
|
|
/** |
|
62
|
|
|
* The OK file suffix to use. |
|
63
|
|
|
* |
|
64
|
|
|
* @var string |
|
65
|
|
|
*/ |
|
66
|
|
|
private $okFileSuffix = 'ok'; |
|
|
|
|
|
|
67
|
|
|
|
|
68
|
|
|
/** |
|
69
|
|
|
* The subject configuraiton instance. |
|
70
|
|
|
* |
|
71
|
|
|
* @var \TechDivision\Import\Configuration\SubjectConfigurationInterface |
|
72
|
|
|
*/ |
|
73
|
|
|
private $subjectConfiguration; |
|
74
|
|
|
|
|
75
|
|
|
/** |
|
76
|
|
|
* Initializes the file resolver with the application and the registry instance. |
|
77
|
|
|
* |
|
78
|
|
|
* @param \TechDivision\Import\ApplicationInterface $application The application instance |
|
79
|
|
|
* @param \TechDivision\Import\Services\RegistryProcessorInterface $registryProcessor The registry instance |
|
80
|
|
|
*/ |
|
81
|
2 |
|
public function __construct(ApplicationInterface $application, RegistryProcessorInterface $registryProcessor) |
|
82
|
|
|
{ |
|
83
|
2 |
|
$this->application = $application; |
|
84
|
2 |
|
$this->registryProcessor = $registryProcessor; |
|
85
|
2 |
|
} |
|
86
|
|
|
|
|
87
|
|
|
/** |
|
88
|
|
|
* Returns the registry processor instance. |
|
89
|
|
|
* |
|
90
|
|
|
* @return \TechDivision\Import\Services\RegistryProcessorInterface The processor instance |
|
91
|
|
|
*/ |
|
92
|
|
|
protected function getRegistryProcessor() |
|
93
|
|
|
{ |
|
94
|
|
|
return $this->registryProcessor; |
|
95
|
|
|
} |
|
96
|
|
|
|
|
97
|
|
|
/** |
|
98
|
|
|
* Return's the application instance. |
|
99
|
|
|
* |
|
100
|
|
|
* @return \TechDivision\Import\ApplicationInterface The application instance |
|
101
|
|
|
*/ |
|
102
|
|
|
protected function getApplication() |
|
103
|
|
|
{ |
|
104
|
|
|
return $this->application; |
|
105
|
|
|
} |
|
106
|
|
|
|
|
107
|
|
|
/** |
|
108
|
|
|
* Sets the actual source directory to load the files from. |
|
109
|
|
|
* |
|
110
|
|
|
* @param string $sourceDir The actual source directory |
|
111
|
|
|
* |
|
112
|
|
|
* @return void |
|
113
|
|
|
*/ |
|
114
|
|
|
protected function setSourceDir($sourceDir) |
|
115
|
|
|
{ |
|
116
|
|
|
$this->sourceDir = $sourceDir; |
|
117
|
|
|
} |
|
118
|
|
|
|
|
119
|
|
|
/** |
|
120
|
|
|
* Returns the actual source directory to load the files from. |
|
121
|
|
|
* |
|
122
|
|
|
* @return string The actual source directory |
|
123
|
|
|
*/ |
|
124
|
|
|
protected function getSourceDir() |
|
125
|
|
|
{ |
|
126
|
|
|
return $this->sourceDir; |
|
127
|
|
|
} |
|
128
|
|
|
|
|
129
|
|
|
/** |
|
130
|
|
|
* Returns the file resolver configuration instance. |
|
131
|
|
|
* |
|
132
|
|
|
* @return \TechDivision\Import\Configuration\Subject\FileResolverConfigurationInterface The configuration instance |
|
133
|
|
|
*/ |
|
134
|
2 |
|
protected function getFileResolverConfiguration() |
|
135
|
|
|
{ |
|
136
|
2 |
|
return $this->getSubjectConfiguration()->getFileResolver(); |
|
137
|
|
|
} |
|
138
|
|
|
|
|
139
|
|
|
/** |
|
140
|
|
|
* Returns the delement separator char. |
|
141
|
|
|
* |
|
142
|
|
|
* @return string The element separator char |
|
143
|
|
|
*/ |
|
144
|
2 |
|
protected function getElementSeparator() |
|
145
|
|
|
{ |
|
146
|
2 |
|
return $this->getFileResolverConfiguration()->getElementSeparator(); |
|
147
|
|
|
} |
|
148
|
|
|
|
|
149
|
|
|
/** |
|
150
|
|
|
* Returns the elements the filenames consists of. |
|
151
|
|
|
* |
|
152
|
|
|
* @return array The array with the filename elements |
|
153
|
|
|
*/ |
|
154
|
2 |
|
protected function getPatternElements() |
|
155
|
|
|
{ |
|
156
|
2 |
|
return $this->getFileResolverConfiguration()->getPatternElements(); |
|
157
|
|
|
} |
|
158
|
|
|
|
|
159
|
|
|
/** |
|
160
|
|
|
* Returns the suffix for the import files. |
|
161
|
|
|
* |
|
162
|
|
|
* @return string The suffix |
|
163
|
|
|
*/ |
|
164
|
2 |
|
protected function getSuffix() |
|
165
|
|
|
{ |
|
166
|
2 |
|
return $this->getFileResolverConfiguration()->getSuffix(); |
|
167
|
|
|
} |
|
168
|
|
|
|
|
169
|
|
|
/** |
|
170
|
|
|
* Returns the OK file suffix to use. |
|
171
|
|
|
* |
|
172
|
|
|
* @return string The OK file suffix |
|
173
|
|
|
*/ |
|
174
|
|
|
protected function getOkFileSuffix() |
|
175
|
|
|
{ |
|
176
|
|
|
return $this->getFileResolverConfiguration()->getOkFileSuffix(); |
|
177
|
|
|
} |
|
178
|
|
|
|
|
179
|
|
|
/** |
|
180
|
|
|
* Initializes the file resolver for the import process with the passed serial. |
|
181
|
|
|
* |
|
182
|
|
|
* @param string $serial The unique identifier of the actual import process |
|
183
|
|
|
* |
|
184
|
|
|
* @return void |
|
185
|
|
|
* @throws \Exception Is thrown if the configured source directory is not available |
|
186
|
|
|
*/ |
|
187
|
|
View Code Duplication |
protected function initialize($serial) |
|
|
|
|
|
|
188
|
|
|
{ |
|
189
|
|
|
|
|
190
|
|
|
// load the actual status |
|
191
|
|
|
$status = $this->getRegistryProcessor()->getAttribute($serial); |
|
192
|
|
|
|
|
193
|
|
|
// query whether or not the configured source directory is available |
|
194
|
|
|
if (!is_dir($sourceDir = $status[RegistryKeys::SOURCE_DIRECTORY])) { |
|
195
|
|
|
throw new \Exception(sprintf('Configured source directory "%s" is not available!', $sourceDir)); |
|
196
|
|
|
} |
|
197
|
|
|
|
|
198
|
|
|
// set the source directory |
|
199
|
|
|
$this->setSourceDir($sourceDir); |
|
200
|
|
|
} |
|
201
|
|
|
|
|
202
|
|
|
/** |
|
203
|
|
|
* Sets the subject configuration instance. |
|
204
|
|
|
* |
|
205
|
|
|
* @param \TechDivision\Import\Configuration\SubjectConfigurationInterface $subjectConfiguration The subject configuration |
|
206
|
|
|
* |
|
207
|
|
|
* @return void |
|
208
|
|
|
*/ |
|
209
|
2 |
|
public function setSubjectConfiguration(SubjectConfigurationInterface $subjectConfiguration) |
|
210
|
|
|
{ |
|
211
|
2 |
|
$this->subjectConfiguration = $subjectConfiguration; |
|
212
|
2 |
|
} |
|
213
|
|
|
|
|
214
|
|
|
/** |
|
215
|
|
|
* Returns the subject configuration instance. |
|
216
|
|
|
* |
|
217
|
|
|
* @return \TechDivision\Import\Configuration\SubjectConfigurationInterface The subject configuration |
|
218
|
|
|
*/ |
|
219
|
2 |
|
public function getSubjectConfiguration() |
|
220
|
|
|
{ |
|
221
|
2 |
|
return $this->subjectConfiguration; |
|
222
|
|
|
} |
|
223
|
|
|
|
|
224
|
|
|
/** |
|
225
|
|
|
* Loads the files from the source directory and return's them sorted. |
|
226
|
|
|
* |
|
227
|
|
|
* @param string $serial The unique identifier of the actual import process |
|
228
|
|
|
* |
|
229
|
|
|
* @return array The array with the files matching the subjects suffix |
|
230
|
|
|
* @throws \Exception Is thrown, when the source directory is NOT available |
|
231
|
|
|
*/ |
|
232
|
|
|
public function loadFiles($serial) |
|
233
|
|
|
{ |
|
234
|
|
|
|
|
235
|
|
|
// clear the filecache |
|
236
|
|
|
clearstatcache(); |
|
237
|
|
|
|
|
238
|
|
|
// initialize the resolver |
|
239
|
|
|
$this->initialize($serial); |
|
240
|
|
|
|
|
241
|
|
|
// initialize the array with the files matching the suffix found in the source directory |
|
242
|
|
|
$files = glob(sprintf('%s/*.%s', $this->getSourceDir(), $this->getSuffix())); |
|
243
|
|
|
|
|
244
|
|
|
// sort the files for the apropriate order |
|
245
|
|
|
usort($files, function ($a, $b) { |
|
246
|
|
|
return strcmp($a, $b); |
|
247
|
|
|
}); |
|
248
|
|
|
|
|
249
|
|
|
// return the sorted files |
|
250
|
|
|
return $files; |
|
251
|
|
|
} |
|
252
|
|
|
} |
|
253
|
|
|
|
This check marks private properties in classes that are never used. Those properties can be removed.