Esempio n. 1
0
 /**
  * @author Max Milbers
  * @param
  */
 function check()
 {
     if (isset($this->product_price)) {
         $this->product_price = str_replace(array(',', ' '), array('.', ''), $this->product_price);
     }
     if (isset($this->product_override_price)) {
         $this->product_override_price = str_replace(array(',', ' '), array('.', ''), $this->product_override_price);
     }
     return parent::check();
 }
Esempio n. 2
0
 function check()
 {
     //$this->checkCurrencySymbol();
     return parent::check();
 }
Esempio n. 3
0
 /**
  * Validates the user info record fields.
  *
  * @author RickG, RolandD, Max Milbers
  * @return boolean True if the table buffer is contains valid data, false otherwise.
  */
 public function check()
 {
     if ($this->address_type == 'BT' or $this->address_type == 'ST') {
         if ($this->address_type == 'ST' and empty($this->address_type_name)) {
             $this->address_type_name = 'Delivery Address ' . rand(1, 9);
             vmWarn('Table userinfos check failed: address_type ' . $this->address_type . ' without name, autogenerated ' . $this->address_type_name, 'check failed: ST has no name, autogenerated ' . $this->address_type_name);
         }
     } else {
         vmError('Table userinfos check failed: Unknown address_type ' . $this->address_type, 'check failed: Unknown address_type ');
         vmdebug('Table userinfos check failed: Unknown address_type ' . $this->address_type . ' tsmart_user_id ' . $this->tsmart_user_id . ' name ' . $this->name);
         return false;
     }
     if (!empty($this->tsmart_userinfo_id)) {
         $this->tsmart_userinfo_id = (int) $this->tsmart_userinfo_id;
         if (!vmAccess::manager('user.edit')) {
             $q = "SELECT tsmart_user_id\n\t\t\t\t\t\t\t\t\t\tFROM #__tsmart_userinfos\n\t\t\t\t\t\t\t\t\t\tWHERE tsmart_userinfo_id = " . $this->tsmart_userinfo_id;
             $this->_db->setQuery($q);
             $total = $this->_db->loadColumn();
             if (count($total) > 0) {
                 $userId = JFactory::getUser()->id;
                 if ($total[0] != $userId) {
                     vmError('Hacking attempt uid check, you got logged');
                     echo 'Hacking attempt uid check, you got logged';
                     return false;
                 }
             }
         }
         //return parent::check();
     } else {
         if (empty($this->address_type)) {
             $this->address_type = 'BT';
         }
         /* Check if a record exists */
         $q = "SELECT tsmart_userinfo_id\n\t\t\tFROM #__tsmart_userinfos\n\t\t\tWHERE tsmart_user_id = " . $this->tsmart_user_id . "\n\t\t\tAND address_type = " . $this->_db->Quote($this->address_type);
         if ($this->address_type != 'BT') {
             $q .= " AND address_type_name = " . $this->_db->Quote($this->address_type_name);
         }
         $this->_db->setQuery($q);
         $total = $this->_db->loadColumn();
         if (count($total) > 0) {
             $this->tsmart_userinfo_id = (int) $total[0];
         } else {
             $this->tsmart_userinfo_id = 0;
             //md5(uniqid($this->tsmart_user_id));
         }
     }
     if (empty($this->tsmart_user_id)) {
         $user = JFactory::getUser();
         if (!empty($user->id)) {
             $this->tsmart_user_id = $user->id;
         }
     }
     return parent::check();
 }
Esempio n. 4
0
 /**
  * As shortcat, Important the & MUST be there, even in php5.3
  *
  * @author Max Milbers
  * @param array/obj $data input data as assoc array or obj
  * @param boolean $preload You can preload the data here too preserve not updated data
  * @return array/obj $data the updated data
  */
 public function bindChecknStore(&$data, $preload = false)
 {
     $tblKey = $this->_tbl_key;
     $ok = true;
     if ($this->_translatable) {
         if (!class_exists('tsmTableData')) {
             require VMPATH_ADMIN . DS . 'helpers' . DS . 'tsmtabledata.php';
         }
         $db = JFactory::getDBO();
         $dataTable = clone $this;
         $langTable = new tsmTableData($this->_tbl_lang, $tblKey, $db);
         $langTable->setLanguage($this->_langTag);
         $langTable->setPrimaryKey($tblKey);
         $langData = array();
         $langObKeys = array();
         $langUniqueKeys = array();
         if (is_object($data)) {
             foreach ($this->_translatableFields as $name) {
                 $langTable->{$name} = $this->{$name};
                 if (isset($data->{$name})) {
                     //We directly store language stuff "escaped"
                     $langData[$name] = htmlspecialchars(html_entity_decode($data->{$name}, ENT_QUOTES, "UTF-8"), ENT_QUOTES, "UTF-8");
                 }
                 unset($dataTable->{$name});
                 if (!empty($this->_unique_name[$name])) {
                     $langUniqueKeys[$name] = 1;
                     unset($dataTable->_unique_name[$name]);
                     $langObKeys[$name] = 1;
                     unset($dataTable->_obkeys[$name]);
                 }
                 if (!empty($this->_obkeys[$name])) {
                     $langObKeys[$name] = 1;
                     unset($dataTable->_obkeys[$name]);
                 }
             }
         } else {
             foreach ($this->_translatableFields as $name) {
                 $langTable->{$name} = $this->{$name};
                 if (isset($data[$name])) {
                     $langData[$name] = htmlspecialchars(html_entity_decode($data[$name], ENT_QUOTES, "UTF-8"), ENT_QUOTES, "UTF-8");
                 }
                 unset($dataTable->{$name});
                 if (!empty($this->_unique_name[$name])) {
                     $langUniqueKeys[$name] = 1;
                     unset($dataTable->_unique_name[$name]);
                     $langObKeys[$name] = 1;
                     unset($dataTable->_obkeys[$name]);
                 }
                 if (!empty($this->_obkeys[$name])) {
                     $langObKeys[$name] = 1;
                     unset($dataTable->_obkeys[$name]);
                 }
             }
         }
         $langTable->_unique_name = $langUniqueKeys;
         $langTable->_obkeys = $langObKeys;
         $langTable->_slugAutoName = $this->_slugAutoName;
         unset($dataTable->_slugAutoName);
         $langTable->_slugName = 'slug';
         unset($dataTable->_slugName);
         $langTable->setProperties($langData);
         $langTable->_translatable = false;
         //We must check the langtable BEFORE we store the normal table, cause the langtable is often defining if there are enough data to store it (for exmple the name)
         if ($ok) {
             //vmdebug('my langtable before bind',$langTable->id);
             if (!$langTable->bind($data)) {
                 $ok = false;
                 $msg = 'bind';
                 // 			vmdebug('Problem in bind '.get_class($this).' '.$this->_db->getErrorMsg());
                 vmdebug('Problem in bind ' . get_class($this) . ' ');
             }
         }
         if ($ok) {
             if (!$langTable->check()) {
                 $ok = false;
                 vmdebug('Check returned false ' . get_class($langTable) . ' ' . $this->_tbl . ' ' . $langTable->_db->getErrorMsg());
             }
         }
         if ($ok) {
             $dataTable->bindChecknStoreNoLang($data, $preload);
             $this->bind($dataTable);
             $langTable->{$tblKey} = !empty($this->{$tblKey}) ? $this->{$tblKey} : 0;
             //vmdebug('bindChecknStoreNoLang my $tblKey '.$tblKey.' '.$langTable->$tblKey);
             if ($ok and $preload) {
                 if (!empty($langTable->{$tblKey})) {
                     $id = $langTable->{$tblKey};
                     if (!$langTable->load($id)) {
                         $ok = false;
                         vmdebug('Preloading of language table failed, no id given, cannot store ' . $this->_tbl);
                     }
                 } else {
                     if ($ok) {
                         if (!$langTable->bind($data)) {
                             $ok = false;
                             vmdebug('Problem in bind ' . get_class($this) . ' ');
                         }
                     }
                     if ($ok) {
                         if (!$langTable->check()) {
                             $ok = false;
                             vmdebug('Check returned false ' . get_class($langTable) . ' ' . $this->_tbl . ' ' . $langTable->_db->getErrorMsg());
                         }
                     }
                 }
             }
             if ($ok) {
                 if (!$langTable->store()) {
                     $ok = false;
                     // $msg .= ' store';
                     vmdebug('Problem in store with langtable ' . get_class($langTable) . ' with ' . $tblKey . ' = ' . $this->{$tblKey} . ' ' . $langTable->_db->getErrorMsg());
                 } else {
                     $this->bind($langTable);
                 }
             }
         }
     } else {
         if (!$this->bindChecknStoreNoLang($data, $preload)) {
             $ok = false;
         }
     }
     if ($ok) {
         if ($this->_lhash) {
             self::$_cache['l'][$this->_lhash] = $this->loadFieldValues(false);
         }
     }
     return $ok;
 }
Esempio n. 5
0
 function check()
 {
     if (empty($this->order_number)) {
         if (!class_exists('tsmartModelOrders')) {
             tmsModel::getModel('orders');
         }
         $this->order_number = tsmartModelOrders::genStdOrderNumber($this->tsmart_vendor_id);
     }
     if (empty($this->order_pass)) {
         if (!class_exists('tsmartModelOrders')) {
             tmsModel::getModel('orders');
         }
         $this->order_pass = tsmartModelOrders::genStdOrderPass();
     }
     if ($adminID = vmAccess::getBgManagerId()) {
         $this->created_by = $adminID;
     }
     return parent::check();
 }