forked from PrestaShop/PrestaShop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomerThread.php
294 lines (276 loc) · 9.65 KB
/
CustomerThread.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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <[email protected]>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
class CustomerThreadCore extends ObjectModel
{
public $id;
public $id_shop;
public $id_lang;
public $id_contact;
public $id_customer;
public $id_order;
public $id_product;
public $status;
public $email;
public $token;
public $date_add;
public $date_upd;
/**
* @see ObjectModel::$definition
*/
public static $definition = [
'table' => 'customer_thread',
'primary' => 'id_customer_thread',
'fields' => [
'id_lang' => [
'type' => self::TYPE_INT,
'validate' => 'isUnsignedId',
'required' => true,
],
'id_contact' => [
'type' => self::TYPE_INT,
'validate' => 'isUnsignedId',
'required' => true,
],
'id_shop' => [
'type' => self::TYPE_INT,
'validate' => 'isUnsignedId',
],
'id_customer' => [
'type' => self::TYPE_INT,
'validate' => 'isUnsignedId',
],
'id_order' => [
'type' => self::TYPE_INT,
'validate' => 'isUnsignedId',
],
'id_product' => [
'type' => self::TYPE_INT,
'validate' => 'isUnsignedId',
],
'email' => [
'type' => self::TYPE_STRING,
'validate' => 'isEmail',
'size' => 255,
],
'token' => [
'type' => self::TYPE_STRING,
'validate' => 'isGenericName',
'required' => true,
'size' => 12,
],
'status' => [
'type' => self::TYPE_STRING,
],
'date_add' => [
'type' => self::TYPE_DATE,
'validate' => 'isDate',
],
'date_upd' => [
'type' => self::TYPE_DATE,
'validate' => 'isDate',
],
],
];
protected $webserviceParameters = [
'fields' => [
'id_lang' => [
'xlink_resource' => 'languages',
],
'id_shop' => [
'xlink_resource' => 'shops',
],
'id_customer' => [
'xlink_resource' => 'customers',
],
'id_order' => [
'xlink_resource' => 'orders',
],
'id_product' => [
'xlink_resource' => 'products',
],
],
'associations' => [
'customer_messages' => [
'resource' => 'customer_message',
'id' => [
'required' => true,
],
],
],
];
public function getWsCustomerMessages()
{
return Db::getInstance()->executeS('
SELECT `id_customer_message` id
FROM `' . _DB_PREFIX_ . 'customer_message`
WHERE `id_customer_thread` = ' . (int) $this->id);
}
public function delete()
{
if (!Validate::isUnsignedId($this->id)) {
return false;
}
$return = true;
$result = Db::getInstance()->executeS(
'
SELECT `id_customer_message`
FROM `' . _DB_PREFIX_ . 'customer_message`
WHERE `id_customer_thread` = ' . (int) $this->id
);
if (count($result)) {
foreach ($result as $res) {
$message = new CustomerMessage((int) $res['id_customer_message']);
if (!Validate::isLoadedObject($message)) {
$return = false;
} else {
$return = $return && $message->delete();
}
}
}
return $return && parent::delete();
}
public static function getCustomerMessages($id_customer, $read = null, $id_order = null)
{
$sql = 'SELECT *
FROM ' . _DB_PREFIX_ . 'customer_thread ct
LEFT JOIN ' . _DB_PREFIX_ . 'customer_message cm
ON ct.id_customer_thread = cm.id_customer_thread
WHERE id_customer = ' . (int) $id_customer;
if ($read !== null) {
$sql .= ' AND cm.`read` = ' . (int) $read;
}
if ($id_order !== null) {
$sql .= ' AND ct.`id_order` = ' . (int) $id_order;
}
return Db::getInstance()->executeS($sql);
}
public static function getIdCustomerThreadByEmailAndIdOrder($email, $id_order)
{
return Db::getInstance()->getValue(
'
SELECT cm.id_customer_thread
FROM ' . _DB_PREFIX_ . 'customer_thread cm
WHERE cm.email = \'' . pSQL($email) . '\'
AND cm.id_shop = ' . (int) Context::getContext()->shop->id . '
AND cm.id_order = ' . (int) $id_order
);
}
public static function getContacts()
{
return Db::getInstance()->executeS('
SELECT cl.*, COUNT(*) as total, (
SELECT id_customer_thread
FROM ' . _DB_PREFIX_ . 'customer_thread ct2
WHERE status = "open" AND ct.id_contact = ct2.id_contact
' . Shop::addSqlRestriction() . '
ORDER BY date_upd ASC
LIMIT 1
) as id_customer_thread
FROM ' . _DB_PREFIX_ . 'customer_thread ct
LEFT JOIN ' . _DB_PREFIX_ . 'contact_lang cl
ON (cl.id_contact = ct.id_contact AND cl.id_lang = ' . (int) Context::getContext()->language->id . ')
WHERE ct.status = "open"
AND ct.id_contact IS NOT NULL
AND cl.id_contact IS NOT NULL
' . Shop::addSqlRestriction() . '
GROUP BY ct.id_contact HAVING COUNT(*) > 0
');
}
public static function getTotalCustomerThreads($where = null)
{
if (null === $where) {
return (int) Db::getInstance()->getValue(
'
SELECT COUNT(*)
FROM ' . _DB_PREFIX_ . 'customer_thread
WHERE 1 ' . Shop::addSqlRestriction()
);
} else {
return (int) Db::getInstance()->getValue(
'
SELECT COUNT(*)
FROM ' . _DB_PREFIX_ . 'customer_thread
WHERE ' . $where . Shop::addSqlRestriction()
);
}
}
public static function getMessageCustomerThreads($id_customer_thread)
{
return Db::getInstance()->executeS('
SELECT ct.*, cm.*, cl.name subject, CONCAT(e.firstname, \' \', e.lastname) employee_name,
CONCAT(c.firstname, \' \', c.lastname) customer_name, c.firstname
FROM ' . _DB_PREFIX_ . 'customer_thread ct
LEFT JOIN ' . _DB_PREFIX_ . 'customer_message cm
ON (ct.id_customer_thread = cm.id_customer_thread)
LEFT JOIN ' . _DB_PREFIX_ . 'contact_lang cl
ON (cl.id_contact = ct.id_contact AND cl.id_lang = ' . (int) Context::getContext()->language->id . ')
LEFT JOIN ' . _DB_PREFIX_ . 'employee e
ON e.id_employee = cm.id_employee
LEFT JOIN ' . _DB_PREFIX_ . 'customer c
ON (IFNULL(ct.id_customer, ct.email) = IFNULL(c.id_customer, c.email))
WHERE ct.id_customer_thread = ' . (int) $id_customer_thread . '
ORDER BY cm.date_add ASC
');
}
public static function getNextThread($id_customer_thread)
{
$context = Context::getContext();
return Db::getInstance()->getValue('
SELECT id_customer_thread
FROM ' . _DB_PREFIX_ . 'customer_thread ct
WHERE ct.status = "open"
AND ct.date_upd = (
SELECT date_add FROM ' . _DB_PREFIX_ . 'customer_message
WHERE (id_employee IS NULL OR id_employee = 0)
AND id_customer_thread = ' . (int) $id_customer_thread . '
ORDER BY date_add DESC LIMIT 1
)
' . ($context->cookie->{'customer_threadFilter_cl!id_contact'} ?
'AND ct.id_contact = ' . (int) $context->cookie->{'customer_threadFilter_cl!id_contact'} : '') . '
' . ($context->cookie->{'customer_threadFilter_l!id_lang'} ?
'AND ct.id_lang = ' . (int) $context->cookie->{'customer_threadFilter_l!id_lang'} : '') .
' ORDER BY ct.date_upd ASC
');
}
public static function getCustomerMessagesOrder($id_customer, $id_order)
{
$sql = 'SELECT cm.*, c.`firstname` AS cfirstname, c.`lastname` AS clastname,
e.`firstname` AS efirstname, e.`lastname` AS elastname
FROM ' . _DB_PREFIX_ . 'customer_thread ct
LEFT JOIN ' . _DB_PREFIX_ . 'customer_message cm
ON ct.id_customer_thread = cm.id_customer_thread
LEFT JOIN `' . _DB_PREFIX_ . 'customer` c
ON ct.`id_customer` = c.`id_customer`
LEFT OUTER JOIN `' . _DB_PREFIX_ . 'employee` e
ON e.`id_employee` = cm.`id_employee`
WHERE ct.id_customer = ' . (int) $id_customer .
' AND ct.`id_order` = ' . (int) $id_order . '
GROUP BY cm.id_customer_message
ORDER BY cm.date_add DESC
LIMIT 2';
return Db::getInstance()->executeS($sql);
}
}