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 class Mage_CatalogSearch_Model_Query extends Mage_Core_Model_Abstract
00033 {
00034 const CACHE_TAG = 'SEARCH_QUERY';
00035 const XML_PATH_MIN_QUERY_LENGTH = 'catalog/search/min_query_length';
00036 const XML_PATH_MAX_QUERY_LENGTH = 'catalog/search/max_query_length';
00037 const XML_PATH_MAX_QUERY_WORDS = 'catalog/search/max_query_words';
00038
00039
00040
00041
00042
00043 protected function _construct()
00044 {
00045 $this->_init('catalogsearch/query');
00046 }
00047
00048
00049
00050
00051
00052
00053 public function getResultCollection()
00054 {
00055 $collection = $this->getData('result_collection');
00056 if (is_null($collection)) {
00057 $collection = Mage::getResourceModel('catalogsearch/search_collection');
00058
00059 $text = $this->getSynonimFor();
00060 if (!$text) {
00061 $text = $this->getQueryText();
00062 }
00063
00064 $collection->addSearchFilter($text)
00065 ->addStoreFilter()
00066 ->addMinimalPrice()
00067 ->addTaxPercents();
00068 $this->setData('result_collection', $collection);
00069 }
00070 return $collection;
00071 }
00072
00073
00074
00075
00076
00077
00078 public function getSuggestCollection()
00079 {
00080 $collection = $this->getData('suggest_collection');
00081 if (is_null($collection)) {
00082 $collection = Mage::getResourceModel('catalogsearch/query_collection')
00083 ->setStoreId($this->getStoreId())
00084 ->setQueryFilter($this->getQueryText());
00085 $this->setData('suggest_collection', $collection);
00086 }
00087 return $collection;
00088 }
00089
00090
00091
00092
00093
00094
00095
00096 public function loadByQuery($text)
00097 {
00098 $this->_getResource()->loadByQuery($this, $text);
00099 $this->_afterLoad();
00100 $this->setOrigData();
00101 return $this;
00102 }
00103
00104
00105
00106
00107
00108
00109
00110 public function setStoreId($storeId)
00111 {
00112 $this->setData('store_id', $storeId);
00113 }
00114
00115
00116
00117
00118
00119
00120 public function getStoreId()
00121 {
00122 if (!$storeId = $this->getData('store_id')) {
00123 $storeId = Mage::app()->getStore()->getId();
00124 }
00125 return $storeId;
00126 }
00127
00128
00129
00130
00131
00132
00133 public function prepare()
00134 {
00135 if (!$this->getId()) {
00136 $this->setIsActive(0);
00137 $this->setIsProcessed(0);
00138 $this->save();
00139 $this->setIsActive(1);
00140 }
00141
00142 return $this;
00143 }
00144
00145
00146
00147
00148
00149
00150 public function getMinQueryLenght()
00151 {
00152 return Mage::getStoreConfig(self::XML_PATH_MIN_QUERY_LENGTH, $this->getStoreId());
00153 }
00154
00155
00156
00157
00158
00159
00160 public function getMaxQueryLenght()
00161 {
00162 return Mage::getStoreConfig(self::XML_PATH_MAX_QUERY_LENGTH, $this->getStoreId());
00163 }
00164
00165
00166
00167
00168
00169
00170 public function getMaxQueryWords()
00171 {
00172 return Mage::getStoreConfig(self::XML_PATH_MAX_QUERY_WORDS, $this->getStoreId());
00173 }
00174 }