* @copyright 2007-2011 PrestaShop SA * @version Release: $Revision: 7099 $ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class ProductDownloadCore extends ObjectModel { /** @var integer Product id which download belongs */ public $id_product; /** @var integer Attribute Product id which download belongs */ public $id_product_attribute; /** @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 string NbDaysAccessible how many days the customer can access to file */ public $nb_days_accessible; /** @var string NbDownloadable how many time the customer can download the file */ public $nb_downloadable; /** @var boolean Active if file is accessible or not */ public $active = 1; /** @var boolean is_shareable indicates whether the product can be shared */ public $is_shareable = 0; protected static $_productIds = array(); protected $fieldsRequired = array( 'id_product' ); protected $fieldsSize = array( 'display_filename' => 255, 'filename' => 255, 'date_add' => 20, 'date_expiration' => 20, 'nb_days_accessible' => 10, 'nb_downloadable' => 10, 'active' => 1, 'is_shareable' => 1 ); protected $fieldsValidate = array( 'id_product' => 'isUnsignedId', 'id_product_attribute ' => 'isUnsignedId', 'display_filename' => 'isGenericName', 'filename' => 'isSha1', 'date_add' => 'isDate', 'date_expiration' => 'isDate', 'nb_days_accessible' => 'isUnsignedInt', 'nb_downloadable' => 'isUnsignedInt', 'active' => 'isUnsignedInt', 'is_shareable' => 'isUnsignedInt' ); protected $table = 'product_download'; protected $identifier = 'id_product_download'; /** * Build a virtual product * * @param integer $id_product_download Existing productDownload id in order to load object (optional) */ public function __construct($id_product_download = null) { parent::__construct($id_product_download); // @TODO check if the file is present on hard drive } public function add($autodate = true, $nullValues = false) { if (parent::add($autodate, $nullValues)) { // Set cache of feature detachable to true if ($this->active) Configuration::updateGlobalValue('PS_VIRTUAL_PROD_FEATURE_ACTIVE', '1'); return true; } return false; } 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', self::isCurrentlyUsed($this->table, true)); return true; } return false; } public function delete($deleteFile = false) { if ($deleteFile) return $this->deleteFile(); return true; } public function getFields() { $this->validateFields(); $date_expiration = $this->date_expiration; if (!$date_expiration) $date_expiration = '0000-00-00 00:00:00'; $fields['id_product'] = (int)$this->id_product; $fields['id_product_attribute'] = pSQL($this->id_product_attribute); $fields['display_filename'] = pSQL($this->display_filename); $fields['filename'] = pSQL($this->filename); $fields['date_add'] = pSQL($this->date_add); $fields['date_expiration'] = pSQL($date_expiration); $fields['nb_days_accessible'] = (int)$this->nb_days_accessible; $fields['nb_downloadable'] = (int)$this->nb_downloadable; $fields['active'] = (int)$this->active; $fields['is_shareable'] = (int)$this->is_shareable; return $fields; } /** * Delete the file * @param int $id_product_download : if we need to delete a specific product attribute file * * @return boolean */ public function deleteFile($id_product_download = NULL) { if (!$this->checkFile()) return false; return unlink(_PS_DOWNLOAD_DIR_.$this->filename) && Db::getInstance()->Execute('DELETE FROM `'._DB_PREFIX_.'product_download` WHERE `id_product_download` = '.(int)$id_product_download); } /** * Check if file exists * * @return boolean */ public function checkFile() { if (!$this->filename) return false; return file_exists(_PS_DOWNLOAD_DIR_.$this->filename); } /** * Check if download repository is writable * * @return boolean */ public static function checkWritableDir() { return is_writable(_PS_DOWNLOAD_DIR_); } /** * Return the id_product_download from an id_product * * @param int $id_product Product the id * @return integer Product the id for this virtual product */ public static function getIdFromIdProduct($id_product) { if (!self::isFeatureActive()) return false; if (array_key_exists($id_product, self::$_productIds)) return self::$_productIds[$id_product]; self::$_productIds[$id_product] = (int)Db::getInstance()->getValue(' SELECT `id_product_download` FROM `'._DB_PREFIX_.'product_download` WHERE `id_product` = '.(int)$id_product.' AND `active` = 1 ORDER BY `id_product_download` DESC'); return self::$_productIds[$id_product]; } /** * Return the id_product_download from an id_product * @since 1.5.0.1 * @param int $id_product Product the id * @return integer Product the id for this virtual product */ public static function getIdFromIdAttribute($id_product, $id_product_attribute) { if (!self::isFeatureActive()) return false; if (array_key_exists($id_product_attribute, self::$_productIds)) return self::$_productIds[$id_product]; self::$_productIds[$id_product_attribute] = (int)Db::getInstance()->getValue(' SELECT `id_product_download` FROM `'._DB_PREFIX_.'product_download` WHERE `id_product` = '.(int)$id_product.' AND `id_product_attribute` = '.(int)$id_product_attribute.' AND `active` = 1'); return self::$_productIds[$id_product_attribute]; } /** * Return the display filename from a physical filename * * @since 1.5.0.1 * * @param string $filename Filename physically * @return integer Product the id for this virtual product * */ public static function getAttributeFromIdProduct($id_product) { return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(' SELECT `id_product_download` FROM `'._DB_PREFIX_.'product_download` WHERE `id_product` = '.(int)$id_product.' AND `active` = 1'); } /** * Return the display filename from a physical filename * * @since 1.5.0.1 * * @param string $filename Filename physically * @return integer Product the id for this virtual product * */ public static function getIdFromFilename($filename) { return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue(' SELECT `id_product_download` FROM `'._DB_PREFIX_.'product_download` WHERE `filename` = \''.pSQL($filename).'\''); } /** * Return the filename from an id_product * * @param int $id_product Product the id * @return string Filename the filename for this virtual product */ public static function getFilenameFromIdProduct($id_product) { return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue(' SELECT `filename` FROM `'._DB_PREFIX_.'product_download` WHERE `id_product` = '.(int)$id_product.' AND `active` = 1'); } /** * Return the filename from an id_product_attribute * * @param int $id_product Product the id * @param int $id_product_attribute Attribute the id * @return string Filename the filename for this virtual product */ public static function getFilenameFromIdAttribute($id_product, $id_product_attribute) { return Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue(' SELECT `filename` FROM `'._DB_PREFIX_.'product_download` WHERE `id_product` = '.(int)$id_product.' AND `id_product_attribute` = '.(int)$id_product_attribute.' 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 html link * * @param string $class CSS selector (optionnal) * @param bool $admin specific to backend (optionnal) * @param string $hash hash code in table order detail (optionnal) * @return string Html all the code for print a link to the file */ public function getTextLink($admin = true, $hash = false) { $key = $this->filename . '-' . ($hash ? $hash : 'orderdetail'); $link = ($admin) ? 'get-file-admin.php?' : _PS_BASE_URL_.__PS_BASE_URI__.'index.php?controller=get-file&'; $link .= ($admin) ? 'file='.$this->filename : 'key='.$key; return $link; } /** * Return html link * * @param string $class CSS selector (optionnal) * @param bool $admin specific to backend (optionnal) * @param string $hash hash code in table order detail (optionnal) * @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() { $ret = sha1(microtime()); if (file_exists(_PS_DOWNLOAD_DIR_.$ret)) $ret = ProductDownload::getNewFilename(); return $ret; } /** * This method is allow to know if a feature is used or active * @since 1.5.0.1 * @return bool */ public static function isFeatureActive() { return Configuration::get('PS_VIRTUAL_PROD_FEATURE_ACTIVE'); } }