1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\ProductAlert\Model\ResourceModel;
use Magento\Framework\Model\AbstractModel;
/**
* Product alert for back in abstract resource model
*
* @author Magento Core Team <core@magentocommerce.com>
*/
abstract class AbstractResource extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
{
/**
* Retrieve alert row by object parameters
*
* @param AbstractModel $object
* @return array|false
*/
protected function _getAlertRow(AbstractModel $object)
{
$connection = $this->getConnection();
if ($this->isExistAllBindIds($object)) {
$select = $connection->select()->from(
$this->getMainTable()
)->where(
'customer_id = :customer_id'
)->where(
'product_id = :product_id'
)->where(
'website_id = :website_id'
)->where(
'store_id = :store_id'
);
$bind = [
':customer_id' => $object->getCustomerId(),
':product_id' => $object->getProductId(),
':website_id' => $object->getWebsiteId(),
':store_id' => $object->getStoreId()
];
return $connection->fetchRow($select, $bind);
}
return false;
}
/**
* Is exists all bind ids.
*
* @param AbstractModel $object
* @return bool
*/
private function isExistAllBindIds(AbstractModel $object): bool
{
return ($object->getCustomerId()
&& $object->getProductId()
&& $object->getWebsiteId()
&& $object->getStoreId());
}
/**
* Load object data by parameters
*
* @param AbstractModel $object
* @return $this
*/
public function loadByParam(AbstractModel $object)
{
$row = $this->_getAlertRow($object);
if ($row) {
$object->setData($row);
}
return $this;
}
/**
* Delete all customer alerts on website
*
* @param AbstractModel $object
* @param int $customerId
* @param int $websiteId
* @return $this
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function deleteCustomer(AbstractModel $object, $customerId, $websiteId = null)
{
$connection = $this->getConnection();
$where = [];
$where[] = $connection->quoteInto('customer_id=?', $customerId);
if ($websiteId) {
$where[] = $connection->quoteInto('website_id=?', $websiteId);
}
$connection->delete($this->getMainTable(), $where);
return $this;
}
}