Search.php
9.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<?php
use Action\AbstractAction;
use LibModels\Wap\Product\SearchData;
use Plugin\DataProcess\ListProcess;
use Plugin\Helpers;
/**
* 搜索页
*/
class SearchController extends AbstractAction
{
/**
* 搜索首页
*/
public function indexAction()
{
$this->setNavHeader('搜索', true, SITE_MAIN);
//热门搜索和默认搜索
$termsData = SearchData::getTerms();
//默认搜索
$defaultTerms = empty($termsData['defaultTerms'][0]['content']) ? '' : $termsData['defaultTerms'][0]['content'];
//热门搜索
$hotTerms = empty($termsData['hotTerms']) ? array() : $termsData['hotTerms'];
$data = array(
'search' => array('url' => Helpers::url('', null, 'search')),
'showDownloadApp' => true,
'defaultTerms' => $defaultTerms,
'hotTerms' => $hotTerms,
'searchPage' => true,
'pageFooter' => true
);
$this->_view->display('index', $data);
}
/**
* 搜索列表页
*
*/
public function listAction()
{
$uid = $this->getUid() ? $this->getUid() : $this->get('uid');
$isApp = $this->isApp();
// 标识用户搜的是不是一级品类
$isQueryFirstClass = false;
// 标识用户搜的是不是二级品类
$isQuerySecondClass = false;
/* 获取处理查询字符串 */
$condition = \Product\SearchModel::conditionHandle();
$query = empty($condition['query']) ? null : strtolower(trim($condition['query']));
// 标识用户是否有输入搜索内容
$haveQuery = !empty($query);
/* 判断是不是品牌, 是品牌跳到品牌列表页(显示搜索框) */
if ($haveQuery) {
\Product\SearchModel::brandHandle($condition, $query);
}
/* 判断是不是品类, 是品类加导航标题(不显示搜索框) */
if ($haveQuery) {
$queryClassType = \Product\SearchModel::categoryHandle($query);
$isQueryFirstClass = $queryClassType['isQueryFirstClass'];
$isQuerySecondClass = $queryClassType['isQuerySecondClass'];
} else {
$condition['query'] = '';
}
$data = array();
$data['goodListPage'] = true;
$data['goodList'] = $condition;
$data['query'] = $query;
// 用户自定义商品类目
if(isset($condition['filter_poolId'])){
$data['filter_poolId'] = rawurldecode($condition['filter_poolId']);
}
do {
if ($isApp) {
break;
}
// 搜索是一级品类
if ($isQueryFirstClass) {
$this->setTitle('全部' . $query);
$this->setNavHeader('全部' . $query, true, SITE_MAIN);
} // 搜索是二级品类
elseif ($isQuerySecondClass) {
$this->setTitle($query);
$this->setNavHeader($query, true, SITE_MAIN);
} // 搜索其它内容
else {
$from = $this->get('from');
if ($haveQuery || $from) {
$data['goodList']['search']['default'] = empty($query) ? false : $query;
$data['goodList']['search']['url'] = Helpers::url('', null, 'search');
}
$this->setTitle('搜索');
$this->setNavHeader('搜索', true, SITE_MAIN);
}
}while(false);
// 右下角的购物车链接
$data['goodList']['cartUrl'] = Helpers::url('/cart/index/index', null);
// 显示底部悬浮下载
$data['showDownloadApp'] = $this->isApp() ? false : true;
// 显示页面底部登录信息
$data['pageFooter'] =true;
// 查询数据
if (!isset($condition['query'])) {
$data['goodList'] += Product\ListModel::getClassData($condition);
} else {
$listData = SearchData::searchByCondition($condition);
// 处理返回的数据
if (!empty($listData['data']['brand'])) {
$brandData = $listData['data']['brand'];
$data['brandWay'] = array(
'url' => 'http://' . $brandData['brand_domain'] . SUB_DOMAIN,
'thumb' => Helpers::getImageUrl($brandData['brand_ico'], 75, 40),
'name' => $brandData['brand_name']
);
// 设置品牌默认值
$data['goodList']['brand'] = $brandData['id'];
$data['goodList'] += ListProcess::getListData($listData['data']);
}
$listData = array();
}
if (isset($condition['title'])) {
if ($isApp) {
$this->setTitle($condition['title'], false, '');
} else {
$this->setNavHeader($condition['title'], true, SITE_MAIN);
}
}
// 搜索列表将最新改成默认的标识
$data['isSearch'] = true;
/* 学生类型用户处理 */
if (isset($condition['students'])) {
array_merge($data, \Product\SearchModel::studentsHandle($uid, $isApp, $this->get('app_version')));
}
$this->_view->display('list', $data);
}
/**
*
* 店铺内的搜索
*/
public function searchShopAction()
{
$uid = $this->getUid() ? $this->getUid() : $this->get('uid');
$isApp = $this->isApp();
/* 获取处理查询字符串 */
$condition = \Product\SearchModel::conditionHandle();
$query = empty($condition['query']) ? null : strtolower(trim($condition['query']));
$data = array();
$data['goodListPage'] = true;
$data['goodList'] = $condition;
$data['default'] = $data['query'] = $query;
$data['shopId'] = $condition['shop_id'];
// 用户自定义商品类目
if(isset($condition['filter_poolId'])){
$data['filter_poolId'] = rawurldecode($condition['filter_poolId']);
}
// 右下角的购物车链接
$data['goodList']['cartUrl'] = Helpers::url('/cart/index/index', null);
// 显示底部悬浮下载
$data['showDownloadApp'] = $this->isApp() ? false : true;
// 显示页面底部登录信息
$data['pageFooter'] =true;
// 查询数据
if (!isset($condition['query'])) {
$data['goodList'] += Product\ListModel::getClassData($condition);
} else {
$listData = SearchData::searchByCondition($condition);
// 处理返回的数据
if (!empty($listData['data']['brand'])) {
$brandData = $listData['data']['brand'];
$data['brandWay'] = array(
'url' => 'http://' . $brandData['brand_domain'] . SUB_DOMAIN,
'thumb' => Helpers::getImageUrl($brandData['brand_ico'], 75, 40),
'name' => $brandData['brand_name']
);
// 设置品牌默认值
$data['goodList']['brand'] = $brandData['id'];
$data['goodList'] += ListProcess::getListData($listData['data']);
}
$listData = array();
}
/* 标题处理 */
$this->setTitle('搜索');
$this->setNavHeader('搜索', true, SITE_MAIN);
if (isset($condition['title'])) {
if ($isApp) {
$this->setTitle($condition['title'], false, '');
} else {
$this->setNavHeader($condition['title'], true, SITE_MAIN);
}
}
// 搜索列表将最新改成默认的标识
$data['isSearch'] = true;
/* 学生类型用户处理 */
if (isset($condition['students'])) {
array_merge($data, \Product\SearchModel::studentsHandle($uid, $isApp, $this->get('app_version')));
}
$this->_view->display('shop-list', $data);
}
/**
* Ajax异步筛选请求
*/
public function searchAction()
{
header('Access-Control-Allow-Origin:*');
if ($this->get('query')) {
$activity = SearchData::searchKeyActivity($this->get('query'));
if ($activity['code'] === 200 && isset($activity['data']) && isset($activity['data']['url'])) {
$this->go($activity['data']['url']);
}
}
$data = \Product\SearchModel::search();
if (empty($data['new'])) {
echo ' ';
} else {
$this->_view->display('page', $data);
}
}
/**
* Ajax异步获取筛选数据
* @return array 筛选数据
*/
public function filterAction()
{
header('Access-Control-Allow-Origin:*');
$data = Product\SearchModel::filter();
if (empty($data)) {
echo ' ';
} else {
$this->_view->display('filter', $data);
}
}
/**
* 模糊搜索提供的关键词
*/
public function fuzzyDatasAction()
{
$keyword = $this->get('keyword', '');
$data = SearchData::searchFuzzyDatas($keyword);
$this->echoJson($data);
}
}