/home/sharedstore/public_html/prestashop.sharedstore.ma/classes
NameSizeModeActions
assets/-0755rm
cache/-0755rm
checkout/-0755rm
container/-0755rm
controller/-0755rm
db/-0755rm
exception/-0755rm
form/-0755rm
helper/-0755rm
lang/-0755rm
log/-0755rm
module/-0755rm
order/-0755rm
pdf/-0755rm
product/-0755rm
proxy/-0755rm
range/-0755rm
shop/-0755rm
Smarty/-0755rm
stock/-0755rm
tax/-0755rm
tree/-0755rm
webservice/-0755rm
.htaccess1700644editdlrm
Access.php135730644editdlrm
Address.php230160644editdlrm
AddressChecksumCore.php18510644editdlrm
AddressFormat.php251250644editdlrm
Alias.php51060644editdlrm
Attachment.php115570644editdlrm
AttributeGroup.php134880644editdlrm
Carrier.php656660644editdlrm
Cart.php2211920644editdlrm
CartRule.php927650644editdlrm
Category.php891710644editdlrm
Chart.php41770644editdlrm
ChecksumInterface.php12460644editdlrm
CMS.php117250644editdlrm
CMSCategory.php241480644editdlrm
CMSRole.php18220644editdlrm
Combination.php180120644editdlrm
Configuration.php271560644editdlrm
ConfigurationKPI.php91260644editdlrm
ConfigurationTest.php123090644editdlrm
Connection.php102620644editdlrm
ConnectionsSource.php49260644editdlrm
Contact.php39540644editdlrm
Context.php183720644editdlrm
Cookie.php178060644editdlrm
Country.php167230644editdlrm
CSV.php31100644editdlrm
Currency.php371670644editdlrm
Curve.php29930644editdlrm
Customer.php535760644editdlrm
CustomerAddress.php12950644editdlrm
CustomerMessage.php58900644editdlrm
CustomerSession.php27180644editdlrm
CustomerThread.php98480644editdlrm
Customization.php137540644editdlrm
CustomizationField.php29150644editdlrm
DateRange.php25320644editdlrm
Delivery.php33170644editdlrm
Dispatcher.php488100644editdlrm
Employee.php240620644editdlrm
EmployeeSession.php27180644editdlrm
Feature.php116560644editdlrm
FeatureFlag.php32260644editdlrm
FeatureValue.php82490644editdlrm
FileUploader.php38200644editdlrm
Gender.php28760644editdlrm
Group.php153230644editdlrm
GroupReduction.php90250644editdlrm
Guest.php85290644editdlrm
Hook.php509090644editdlrm
Image.php324180644editdlrm
ImageManager.php325490644editdlrm
ImageType.php71550644editdlrm
index.php13720644editdlrm
Language.php635470644editdlrm
Link.php638140644editdlrm
LocalizationPack.php236040644editdlrm
Mail.php343120644editdlrm
Manufacturer.php217450644editdlrm
ManufacturerAddress.php13110644editdlrm
Media.php330210644editdlrm
Message.php66260644editdlrm
Meta.php185770644editdlrm
Notification.php84700644editdlrm
ObjectModel.php837730644editdlrm
Pack.php263320644editdlrm
Page.php45980644editdlrm
PaymentFree.php13620644editdlrm
PaymentModule.php611970644editdlrm
PhpEncryption.php32910644editdlrm
PhpEncryptionEngine.php39490644editdlrm
PrestaShopAutoload.php97990644editdlrm
PrestaShopBackup.php117020644editdlrm
PrestaShopCollection.php217900644editdlrm
PrestaShopLogger.php85230644editdlrm
Product.php3180560644editdlrm
ProductAssembler.php68950644editdlrm
ProductAttribute.php138080644editdlrm
ProductDownload.php102940644editdlrm
ProductPresenterFactory.php39830644editdlrm
ProductSale.php130000644editdlrm
ProductSupplier.php85370644editdlrm
Profile.php85230644editdlrm
QqUploadedFileForm.php53170644editdlrm
QqUploadedFileXhr.php58250644editdlrm
QuickAccess.php64020644editdlrm
RequestSql.php214530644editdlrm
Risk.php24190644editdlrm
Search.php592290644editdlrm
SearchEngine.php28790644editdlrm
SpecificPrice.php332120644editdlrm
SpecificPriceRule.php143740644editdlrm
State.php79560644editdlrm
Store.php63940644editdlrm
Supplier.php183390644editdlrm
SupplierAddress.php12990644editdlrm
Tab.php222230644editdlrm
Tag.php135580644editdlrm
Tools.php1409030644editdlrm
Translate.php120590644editdlrm
TranslatedConfiguration.php47920644editdlrm
Upgrader.php118590644editdlrm
Uploader.php111040644editdlrm
Validate.php398010644editdlrm
ValidateConstraintTranslator.php26110644editdlrm
WarehouseAddress.php13020644editdlrm
Zone.php35000644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/classes/ProductDownload.php (10294B)
* @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 bool $admin specific to backend (optional) * @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($admin = true, $hash = false) { if ($admin) { return 'get-file-admin.php?file=' . $this->filename; } $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 bool $admin specific to backend * @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, $admin = true, $hash = false) { $link = $this->getTextLink($admin, $hash); $html = 'display_filename . ''; 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'); } }