00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_Catalog_Model_Api_Resource extends Mage_Api_Model_Resource_Abstract
00035 {
00036
00037
00038
00039
00040
00041 protected $_ignoredAttributeCodes = array('entity_id', 'attribute_set_id', 'entity_type_id');
00042
00043
00044
00045
00046
00047
00048 protected $_ignoredAttributeTypes = array();
00049
00050
00051
00052
00053
00054 protected $_storeIdSessionField = 'store_id';
00055
00056
00057
00058
00059
00060
00061
00062
00063 protected function _isAllowedAttribute($attribute, $attributes = null)
00064 {
00065 if (is_array($attributes)
00066 && !( in_array($attribute->getAttributeCode(), $attributes)
00067 || in_array($attribute->getAttributeId(), $attributes))) {
00068 return false;
00069 }
00070
00071 return !in_array($attribute->getFrontendInput(), $this->_ignoredAttributeTypes)
00072 && !in_array($attribute->getAttributeCode(), $this->_ignoredAttributeCodes);
00073 }
00074
00075
00076
00077
00078
00079
00080
00081
00082 protected function _getStoreId($store = null)
00083 {
00084 if (is_null($store)) {
00085 $store = ($this->_getSession()->hasData($this->_storeIdSessionField)
00086 ? $this->_getSession()->getData($this->_storeIdSessionField) : 0);
00087 }
00088
00089 try {
00090 $storeId = Mage::app()->getStore($store)->getId();
00091 } catch (Mage_Core_Model_Store_Exception $e) {
00092 $this->_fault('store_not_exists');
00093 }
00094
00095 return $storeId;
00096 }
00097
00098
00099
00100
00101
00102
00103
00104
00105 protected function _getProduct ($productId, $store = null)
00106 {
00107 $product = Mage::getModel('catalog/product');
00108
00109
00110
00111 if (is_string($productId)) {
00112 $idBySku = $product->getIdBySku($productId);
00113 if ($idBySku) {
00114 $productId = $idBySku;
00115 }
00116 }
00117 if ($store !== null) {
00118 $product->setStoreId($this->_getStoreId($store));
00119 }
00120 $product->load($productId);
00121 return $product;
00122 }
00123
00124
00125
00126
00127
00128
00129
00130 public function currentStore($store=null)
00131 {
00132 if (!is_null($store)) {
00133 try {
00134 $storeId = Mage::app()->getStore($store)->getId();
00135 } catch (Mage_Core_Model_Store_Exception $e) {
00136 $this->_fault('store_not_exists');
00137 }
00138
00139 $this->_getSession()->setData($this->_storeIdSessionField, $storeId);
00140 }
00141
00142 return $this->_getStoreId();
00143 }
00144 }