1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* TechDivision\Import\Category\Observers\FileUploadObserver |
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-category |
18
|
|
|
* @link http://www.techdivision.com |
19
|
|
|
*/ |
20
|
|
|
|
21
|
|
|
namespace TechDivision\Import\Category\Observers; |
22
|
|
|
|
23
|
|
|
use TechDivision\Import\Category\Utils\ColumnKeys; |
24
|
|
|
|
25
|
|
|
/** |
26
|
|
|
* Observer that uploads the category image file specified in a CSV file to a |
27
|
|
|
* configurable directory. |
28
|
|
|
* |
29
|
|
|
* @author Tim Wagner <[email protected]> |
30
|
|
|
* @copyright 2016 TechDivision GmbH <[email protected]> |
31
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
32
|
|
|
* @link https://github.com/techdivision/import-category |
33
|
|
|
* @link http://www.techdivision.com |
34
|
|
|
*/ |
35
|
|
|
class FileUploadObserver extends AbstractCategoryImportObserver |
36
|
|
|
{ |
37
|
|
|
|
38
|
|
|
/** |
39
|
|
|
* Process the observer's business logic. |
40
|
|
|
* |
41
|
|
|
* @return array The processed row |
42
|
|
|
*/ |
43
|
|
|
protected function process() |
44
|
|
|
{ |
45
|
|
|
|
46
|
|
|
// query whether or not we've to upload the image files |
47
|
|
|
if ($this->getSubject()->hasCopyImages()) { |
|
|
|
|
48
|
|
|
// initialize the image path |
49
|
|
|
if ($imagePath = $this->getValue(ColumnKeys::IMAGE_PATH)) { |
50
|
|
|
// upload the file and set the new image path |
51
|
|
|
$imagePath = $this->getSubject()->uploadFile($imagePath); |
|
|
|
|
52
|
|
|
|
53
|
|
|
// log a message that the image has been copied |
54
|
|
|
$this->getSubject()->getSystemLogger()->debug( |
55
|
|
|
sprintf('Successfully copied image %s => %s', $imagePath, $imagePath) |
56
|
|
|
); |
57
|
|
|
|
58
|
|
|
// write the new image path to the target column |
59
|
|
|
$this->setValue(ColumnKeys::IMAGE_PATH, $imagePath); |
60
|
|
|
} |
61
|
|
|
} |
62
|
|
|
} |
63
|
|
|
} |
64
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: