forked from PAYONE-GmbH/magento-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDatabase.php
269 lines (253 loc) · 8.68 KB
/
Database.php
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<?php
/**
* PAYONE Magento 2 Connector is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PAYONE Magento 2 Connector is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with PAYONE Magento 2 Connector. If not, see <http://www.gnu.org/licenses/>.
*
* PHP version 5
*
* @category Payone
* @package Payone_Magento2_Plugin
* @author FATCHIP GmbH <[email protected]>
* @copyright 2003 - 2016 Payone GmbH
* @license <http://www.gnu.org/licenses/> GNU Lesser General Public License
* @link http://www.payone.de
*/
namespace Payone\Core\Helper;
use Magento\Framework\DB\Adapter\AdapterInterface;
use Magento\Quote\Api\Data\AddressInterface;
use Magento\Store\Model\ScopeInterface;
/**
* Helper class for everything that has to do with database connections
*/
class Database extends \Payone\Core\Helper\Base
{
/**
* Database connection resource
*
* @var \Magento\Framework\App\ResourceConnection
*/
protected $databaseResource;
/**
* Constructor
*
* @param \Magento\Framework\App\Helper\Context $context
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
* @param \Magento\Framework\App\ResourceConnection $resource
*/
public function __construct(
\Magento\Framework\App\Helper\Context $context,
\Magento\Store\Model\StoreManagerInterface $storeManager,
\Magento\Framework\App\ResourceConnection $resource
) {
parent::__construct($context, $storeManager);
$this->databaseResource = $resource;
}
/**
* Return database connection
*
* @return AdapterInterface
*/
protected function getDb()
{
return $this->databaseResource->getConnection();
}
/**
* Get the state for a given status from the database
*
* @param string $sStatus
* @return string
*/
public function getStateByStatus($sStatus)
{
$sQuery = " SELECT
state
FROM
".$this->databaseResource->getTableName('sales_order_status_state')."
WHERE
status = :status
LIMIT 1";
$sState = $this->getDb()->fetchOne($sQuery, ['status' => $sStatus]);
return $sState;
}
/**
* Get the order increment id by the given TransactionStatus txid
*
* @param string $sTxid
* @return string
*/
public function getOrderIncrementIdByTxid($sTxid)
{
$sQuery = " SELECT
order_id
FROM
".$this->databaseResource->getTableName('payone_protocol_api')."
WHERE
txid = :txid
LIMIT 1";
$sIncrementId = $this->getDb()->fetchOne($sQuery, ['txid' => $sTxid]);
return $sIncrementId;
}
/**
* Get module info from db
*
* @return array
*/
public function getModuleInfo()
{
$sQuery = " SELECT
module, schema_version
FROM
".$this->databaseResource->getTableName('setup_module')."
WHERE
module NOT LIKE 'Magento_%'";
$aResult = $this->getDb()->fetchAll($sQuery);
return $aResult;
}
/**
* Get increment_id from order by given order id
*
* @param string $sOrderId
* @return string|bool
*/
public function getIncrementIdByOrderId($sOrderId)
{
$sQuery = " SELECT
increment_id
FROM
".$this->databaseResource->getTableName('sales_order')."
WHERE
entity_id = :entity_id";
$sIncrementId = $this->getDb()->fetchOne($sQuery, ['entity_id' => $sOrderId]);
return $sIncrementId;
}
/**
* Get payone user id by given customer nr
*
* @param string $sCustNr
* @return string
*/
public function getPayoneUserIdByCustNr($sCustNr)
{
$sQuery = " SELECT
userid
FROM
".$this->databaseResource->getTableName('payone_protocol_transactionstatus')."
WHERE
customerid = :customerid
LIMIT 1";
$sUserId = $this->getDb()->fetchOne($sQuery, ['customerid' => $sCustNr]);
return $sUserId;
}
/**
* Get the next sequencenumber for this transaction
*
* @param int $iTxid
* @return int
*/
public function getSequenceNumber($iTxid)
{
$sQuery = " SELECT
MAX(sequencenumber)
FROM
".$this->databaseResource->getTableName('payone_protocol_transactionstatus')."
WHERE
txid = :txid";
$iCount = $this->getDb()->fetchOne($sQuery, ['txid' => $iTxid]);
if ($iCount === null) {
return 0;
}
return $iCount + 1;
}
/**
* Helper method to get parameter from the config directly from db without cache
*
* @param string $sKey
* @param string $sGroup
* @param string $sSection
* @param string $sScopeId
* @return string
*/
public function getConfigParamWithoutCache($sKey, $sGroup = 'global', $sSection = 'payone_general', $sScopeId = null)
{
$sQuery = " SELECT
value
FROM
".$this->databaseResource->getTableName('core_config_data')."
WHERE
path = :path AND
scope = :scope AND
scope_id = :scope_id";
$sPath = $sSection."/".$sGroup."/".$sKey;
$sScope = ScopeInterface::SCOPE_STORE;
if (!$sScopeId) {
$sScopeId = $this->storeManager->getStore()->getId();
}
$sReturn = $this->getDb()->fetchOne($sQuery, ['path' => $sPath, 'scope' => $sScope, 'scope_id' => $sScopeId]);
return $sReturn;
}
/**
* Get the address status from a previous order address
*
* @param AddressInterface $oAddress
* @param bool $blIsCreditrating
* @return string
*/
public function getOldAddressStatus(AddressInterface $oAddress, $blIsCreditrating = true)
{
$sSelectField = 'payone_protect_score';
if ($blIsCreditrating === false) {
$sSelectField = 'payone_addresscheck_score';
}
$aParams = [
'firstname' => $oAddress->getFirstname(),
'lastname' => $oAddress->getLastname(),
'street' => $oAddress->getStreet()[0],
'city' => $oAddress->getCity(),
'region' => $oAddress->getRegion(),
'postcode' => $oAddress->getPostcode(),
'country_id' => $oAddress->getCountryId(),
];
$sQuery = " SELECT
{$sSelectField}
FROM
{$this->databaseResource->getTableName('quote_address')}
WHERE
firstname = :firstname AND
lastname = :lastname AND
street = :street AND
city = :city AND
region = :region AND
postcode = :postcode AND
country_id = :country_id";
if (!empty($oAddress->getId())) {
$sQuery .= " AND address_id != :curr_id";
$aParams['curr_id'] = $oAddress->getId();
}
if (!empty($oAddress->getCustomerId())) {
$sQuery .= " AND customer_id = :cust_id";
$aParams['cust_id'] = $oAddress->getCustomerId();
}
if (!empty($oAddress->getAddressType())) {
$sQuery .= " AND address_type = :addr_type";
$aParams['addr_type'] = $oAddress->getAddressType();
}
if ($blIsCreditrating === true) {
$sQuery .= " AND payone_protect_score != ''";
} else {
$sQuery .= " AND payone_addresscheck_score != ''";
}
$sQuery .= " ORDER BY address_id DESC LIMIT 1";
$sReturn = $this->getDb()->fetchOne($sQuery, $aParams);
return $sReturn;
}
}