|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* TechDivision\Import\Product\Observers\ProductWebsiteUpdateObserver |
|
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-product |
|
18
|
|
|
* @link http://www.techdivision.com |
|
19
|
|
|
*/ |
|
20
|
|
|
|
|
21
|
|
|
namespace TechDivision\Import\Product\Observers; |
|
22
|
|
|
|
|
23
|
|
|
use TechDivision\Import\Product\Utils\MemberNames; |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* Observer that creates/updates the product's website relations. |
|
27
|
|
|
* |
|
28
|
|
|
* @author Tim Wagner <[email protected]> |
|
29
|
|
|
* @copyright 2016 TechDivision GmbH <[email protected]> |
|
30
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
31
|
|
|
* @link https://github.com/techdivision/import-product |
|
32
|
|
|
* @link http://www.techdivision.com |
|
33
|
|
|
*/ |
|
34
|
|
|
class ProductWebsiteUpdateObserver extends ProductWebsiteObserver |
|
35
|
|
|
{ |
|
36
|
|
|
|
|
37
|
|
|
/** |
|
38
|
|
|
* Initialize the product website with the passed attributes and returns an instance. |
|
39
|
|
|
* |
|
40
|
|
|
* @param array $attr The product website attributes |
|
41
|
|
|
* |
|
42
|
|
|
* @return array The initialized product website |
|
43
|
|
|
* @throws \RuntimeException Is thrown, if the attributes can not be initialized |
|
44
|
|
|
*/ |
|
45
|
|
|
public function initializeProductWebsite(array $attr) |
|
46
|
|
|
{ |
|
47
|
|
|
|
|
48
|
|
|
// try to load the product website relation with the passed product/website ID |
|
49
|
|
|
if ($entity = $this->loadProductWebsite($attr[MemberNames::PRODUCT_ID], $attr[MemberNames::WEBSITE_ID])) { |
|
|
|
|
|
|
50
|
|
|
// throw a runtime exception, if the relation already exists |
|
51
|
|
|
throw new \RuntimeException( |
|
52
|
|
|
sprintf( |
|
53
|
|
|
'Product website relation %d => %d already exsits', |
|
54
|
|
|
$attr[MemberNames::PRODUCT_ID], |
|
55
|
|
|
$attr[MemberNames::WEBSITE_ID] |
|
56
|
|
|
) |
|
57
|
|
|
); |
|
58
|
|
|
} |
|
59
|
|
|
|
|
60
|
|
|
// otherwise simply return the attributes |
|
61
|
|
|
return $attr; |
|
62
|
|
|
} |
|
63
|
|
|
|
|
64
|
|
|
/** |
|
65
|
|
|
* Load's and return's the product website relation with the passed product and website ID. |
|
66
|
|
|
* |
|
67
|
|
|
* @param string $productId The product ID of the relation |
|
68
|
|
|
* @param string $websiteId The website ID of the relation |
|
69
|
|
|
* |
|
70
|
|
|
* @return array The product website |
|
71
|
|
|
*/ |
|
72
|
|
|
public function loadProductWebsite($productId, $websiteId) |
|
73
|
|
|
{ |
|
74
|
|
|
return $this->getSubject()->loadProductWebsite($productId, $websiteId); |
|
75
|
|
|
} |
|
76
|
|
|
} |
|
77
|
|
|
|
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVarassignment in line 1 and the$higherassignment in line 2 are dead. The first because$myVaris never used and the second because$higheris always overwritten for every possible time line.