|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* TechDivision\Import\Adapter\CsvImportAdapter |
|
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\Adapter; |
|
22
|
|
|
|
|
23
|
|
|
use Goodby\CSV\Import\Protocol\LexerInterface; |
|
24
|
|
|
use Goodby\CSV\Import\Protocol\InterpreterInterface; |
|
25
|
|
|
|
|
26
|
|
|
/** |
|
27
|
|
|
* CSV import adapter implementation. |
|
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 |
|
33
|
|
|
* @link http://www.techdivision.com |
|
34
|
|
|
*/ |
|
35
|
|
|
class CsvImportAdapter implements ImportAdapterInterface |
|
36
|
|
|
{ |
|
37
|
|
|
|
|
38
|
|
|
/** |
|
39
|
|
|
* The lexer instance. |
|
40
|
|
|
* |
|
41
|
|
|
* @var \Goodby\CSV\Import\Protocol\LexerInterface |
|
42
|
|
|
*/ |
|
43
|
|
|
protected $lexer; |
|
44
|
|
|
|
|
45
|
|
|
/** |
|
46
|
|
|
* The interpreter instance. |
|
47
|
|
|
* |
|
48
|
|
|
* @var \Goodby\CSV\Import\Protocol\InterpreterInterface |
|
49
|
|
|
*/ |
|
50
|
|
|
protected $interpreter; |
|
51
|
|
|
|
|
52
|
|
|
/** |
|
53
|
|
|
* Initialize the adapter with the configuration. |
|
54
|
|
|
* |
|
55
|
|
|
* @param \Goodby\CSV\Import\Protocol\LexerInterface $lexer The lexer instance |
|
56
|
|
|
* @param \Goodby\CSV\Import\Protocol\InterpreterInterface $interpreter The interpreter instance |
|
57
|
|
|
*/ |
|
58
|
|
|
public function __construct(LexerInterface $lexer, InterpreterInterface $interpreter) |
|
59
|
|
|
{ |
|
60
|
|
|
$this->lexer = $lexer; |
|
61
|
|
|
$this->interpreter = $interpreter; |
|
62
|
|
|
} |
|
63
|
|
|
|
|
64
|
|
|
/** |
|
65
|
|
|
* Imports the content of the CSV file with the passed filename. |
|
66
|
|
|
* |
|
67
|
|
|
* @param callable $callback The callback that processes the row |
|
68
|
|
|
* @param string $filename The filename to process |
|
69
|
|
|
* |
|
70
|
|
|
* @return void |
|
71
|
|
|
*/ |
|
72
|
|
|
public function import(callable $callback, $filename) |
|
73
|
|
|
{ |
|
74
|
|
|
|
|
75
|
|
|
// reset and initialize the interpreter |
|
76
|
|
|
$this->interpreter->reset(); |
|
|
|
|
|
|
77
|
|
|
$this->interpreter->addObserver($callback); |
|
78
|
|
|
|
|
79
|
|
|
// parse the CSV file to be imported |
|
80
|
|
|
$this->lexer->parse($filename, $this->interpreter); |
|
81
|
|
|
} |
|
82
|
|
|
} |
|
83
|
|
|
|
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: