forked from PrestaShop/PrestaShop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProductDownload.php
334 lines (293 loc) · 9.82 KB
/
ProductDownload.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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
<?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)
*/
use PrestaShop\PrestaShop\Core\Domain\Product\VirtualProductFile\VirtualProductFileSettings;
/**
* Class ProductDownloadCore.
*/
class ProductDownloadCore extends ObjectModel
{
/** @var int Product id which download belongs */
public $id_product;
/** @var string DisplayFilename the name which appear */
public $display_filename;
/** @var string PhysicallyFilename the name of the file on hard disk */
public $filename;
/** @var string DateDeposit when the file is upload */
public $date_add;
/** @var string DateExpiration deadline of the file */
public $date_expiration;
/** @var int NbDaysAccessible how many days the customer can access to file */
public $nb_days_accessible;
/** @var int NbDownloadable how many time the customer can download the file */
public $nb_downloadable;
/** @var bool Active if file is accessible or not */
public $active = true;
/** @var bool is_shareable indicates whether the product can be shared */
public $is_shareable = false;
protected static $_productIds = [];
/**
* @see ObjectModel::$definition
*/
public static $definition = [
'table' => 'product_download',
'primary' => 'id_product_download',
'fields' => [
'id_product' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true],
'display_filename' => ['type' => self::TYPE_STRING, 'validate' => 'isGenericName', 'size' => VirtualProductFileSettings::MAX_DISPLAY_FILENAME_LENGTH],
'filename' => ['type' => self::TYPE_STRING, 'validate' => 'isSha1', 'size' => VirtualProductFileSettings::MAX_FILENAME_LENGTH],
'date_add' => ['type' => self::TYPE_DATE, 'validate' => 'isDate'],
'date_expiration' => ['type' => self::TYPE_DATE, 'validate' => 'isDateOrNull'],
'nb_days_accessible' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedInt', 'size' => 10],
'nb_downloadable' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedInt', 'size' => 10],
'active' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool'],
'is_shareable' => ['type' => self::TYPE_BOOL, 'validate' => 'isBool'],
],
];
/**
* Build a virtual product.
*
* @param int $idProductDownload Existing productDownload id in order to load object (optional)
*/
public function __construct($idProductDownload = null)
{
parent::__construct($idProductDownload);
// @TODO check if the file is present on hard drive
}
/**
* @see ObjectModel::getFields()
*
* @return array
*/
public function getFields()
{
$fields = parent::getFields();
if (!$fields['date_expiration']) {
$fields['date_expiration'] = '0000-00-00 00:00:00';
}
return $fields;
}
public function add($autoDate = true, $nullValues = false)
{
return (bool) parent::add($autoDate, $nullValues);
}
public function update($nullValues = false)
{
if (parent::update($nullValues)) {
// Refresh cache of feature detachable because the row can be deactive
// Configuration::updateGlobalValue('PS_VIRTUAL_PROD_FEATURE_ACTIVE', ProductDownload::isCurrentlyUsed($this->def['table'], true));
return true;
}
return false;
}
public function delete($deleteFile = false)
{
$result = parent::delete();
if ($result && $deleteFile) {
return $this->deleteFile();
}
return $result;
}
/**
* Delete the file.
*
* @param int $idProductDownload : if we need to delete a specific product attribute file
*
* @return bool
*/
public function deleteFile($idProductDownload = null)
{
if (!$this->checkFile()) {
return false;
}
return unlink(_PS_DOWNLOAD_DIR_ . $this->filename)
&& Db::getInstance()->delete('product_download', 'id_product_download = ' . (int) $idProductDownload);
}
/**
* Check if file exists.
*
* @return bool
*/
public function checkFile()
{
if (!$this->filename) {
return false;
}
return file_exists(_PS_DOWNLOAD_DIR_ . $this->filename);
}
/**
* Check if download repository is writable.
*
* @return bool
*/
public static function checkWritableDir()
{
return is_writable(_PS_DOWNLOAD_DIR_);
}
/**
* Return the id_product_download from an id_product.
*
* @param int $idProduct Product the id
* @param bool $active
*
* @return bool|int Product the id for this virtual product
*/
public static function getIdFromIdProduct($idProduct, $active = true)
{
if (!ProductDownload::isFeatureActive()) {
return false;
}
self::$_productIds[$idProduct] = (int) Db::getInstance()->getValue('
SELECT `id_product_download`
FROM `' . _DB_PREFIX_ . 'product_download`
WHERE `id_product` = ' . (int) $idProduct . '
' . ($active ? ' AND `active` = 1' : '') . '
ORDER BY `id_product_download` DESC');
return self::$_productIds[$idProduct];
}
/**
* Return the display filename from a physical filename.
*
* @param string $filename Filename physically
*
* @return int Product the id for this virtual product
*
* @since 1.5.0.1
*/
public static function getIdFromFilename($filename)
{
return (int) Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue(
'SELECT `id_product_download`
FROM `' . _DB_PREFIX_ . 'product_download`
WHERE `filename` = \'' . pSQL($filename) . '\''
);
}
/**
* Return the filename from a Product ID.
*
* @param int $idProduct Product ID
*
* @return string Filename the filename for this virtual product
*/
public static function getFilenameFromIdProduct($idProduct)
{
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue('
SELECT `filename`
FROM `' . _DB_PREFIX_ . 'product_download`
WHERE `id_product` = ' . (int) $idProduct . '
AND `active` = 1
');
}
/**
* Return the display filename from a physical filename.
*
* @param string $filename Filename physically
*
* @return string Filename the display filename for this virtual product
*/
public static function getFilenameFromFilename($filename)
{
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue('
SELECT `display_filename`
FROM `' . _DB_PREFIX_ . 'product_download`
WHERE `filename` = \'' . pSQL($filename) . '\'');
}
/**
* Return text link.
*
* @param string|false $hash hash code in table order detail (optional)
*
* @return string Html all the code for print a link to the file
*/
public function getTextLink($hash = false)
{
$key = $this->filename . '-' . ($hash ? $hash : 'orderdetail');
return Context::getContext()->link->getPageLink('get-file&key=' . $key);
}
/**
* Return html link.
*
* @param string|bool $class CSS selector
* @param string|bool $hash hash code in table order detail
*
* @return string Html all the code for print a link to the file
*/
public function getHtmlLink($class = false, $hash = false)
{
$link = $this->getTextLink($hash);
$html = '<a href="' . $link . '" title=""';
if ($class) {
$html .= ' class="' . $class . '"';
}
$html .= '>' . $this->display_filename . '</a>';
return $html;
}
/**
* Return a deadline.
*
* @return string Datetime in SQL format
*/
public function getDeadline()
{
if (!(int) $this->nb_days_accessible) {
return '0000-00-00 00:00:00';
}
$timestamp = strtotime('+' . (int) $this->nb_days_accessible . ' day');
return date('Y-m-d H:i:s', $timestamp);
}
/**
* Return a hash for control download access.
*
* @return string Hash ready to insert in database
*/
public function getHash()
{
// TODO check if this hash not already in database
return sha1(microtime() . $this->id);
}
/**
* Return a sha1 filename.
*
* @return string Sha1 unique filename
*/
public static function getNewFilename()
{
do {
$filename = sha1(microtime());
} while (file_exists(_PS_DOWNLOAD_DIR_ . $filename));
return $filename;
}
/**
* This method is allow to know if a feature is used or active.
*
* @return bool
*
* @since 1.5.0.1
*/
public static function isFeatureActive()
{
return Configuration::get('PS_VIRTUAL_PROD_FEATURE_ACTIVE');
}
}