List.php
5.47 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
<?php
namespace Product;
use Configs\CacheConfig;
use LibModels\Wap\Category\ClassData;
use LibModels\Wap\Category\BrandData;
use Plugin\DataProcess\ListProcess;
use Plugin\Helpers;
use Plugin\Cache;
/**
* 商品列表相关的模板数据模型
*
* @name ListModel
* @package models/Product
* @copyright yoho.inc
* @version 1.0 (2015-10-27 16:27:54)
* @author fei.hong <fei.hong@yoho.cn>
*/
class ListModel
{
/**
* 获取品类商品列表数据
*
* @param array $condition 条件
* @return array | false
*/
public static function getClassData($condition)
{
$result = array();
if (USE_CACHE) {
$key = CacheConfig::KEY_ACTION_PRODUCT_INDEX;
if (!empty($condition)) {
$key .= http_build_query($condition, null, '&');
}
// 先尝试获取一级缓存(master), 有数据则直接返回.
$result = Cache::get($key, 'master');
if (!empty($result)) {
return $result;
}
}
// 调用接口查询数据
$listData = ClassData::filterClassData($condition);
// 处理返回的数据
if (isset($listData['code']) && $listData['code'] === 200) {
$result = ListProcess::getListData($listData['data']);
}
if (USE_CACHE) {
// 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
if (empty($result)) {
$result = Cache::get($key, 'slave');
}
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
else {
Cache::set($key, $result, 600); // 缓存10分钟
}
}
return $result;
}
/**
* 获取品牌商品列表数据
*
* @return array
*/
public static function getBrandData($condition, $id, $uid, &$title)
{
$result = array();
// 获取品牌介绍信息, 有缓存1小时
$introData = BrandData::getBrandIntro($id, $uid);
if (isset($introData['data']['brand_intro'])) {
$result['brandHome']['id'] = $id;
$result['brandHome']['intro'] = $introData['data']['brand_intro'];
// 顶部导航的标题
$title = isset($introData['data']['brand_name']) ? $introData['data']['brand_name'] : '';
}
// 获取品牌banner的数据, 有缓存1小时
$bannerData = BrandData::getBrandBanner($id);
if (isset($bannerData['data']['banner'])) {
$result['brandHome']['banner'] = Helpers::getImageUrl($bannerData['data']['banner'], 640, 75);
}
if (USE_CACHE) {
$key = CacheConfig::KEY_ACTION_PRODUCT_BRAND;
if (!empty($condition)) {
$key .= http_build_query($condition, null, '&');
}
// 先尝试获取一级缓存(master), 有数据则直接返回.
$result['goodList'] = Cache::get($key, 'master');
if (!empty($result['goodList'])) {
return $result;
}
}
// 调用接口查询数据
$listData = BrandData::filterBrandData($condition);
// 处理返回的数据
if (isset($listData['code']) && $listData['code'] === 200) {
$result['goodList'] = ListProcess::getListData($listData['data']);
}
if (USE_CACHE) {
// 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
if (empty($result['goodList'])) {
$result['goodList'] = Cache::get($key, 'slave');
}
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
else {
Cache::set($key, $result['goodList'], 600); // 缓存10分钟
}
}
return $result;
}
/**
* 获取所有的品牌名称列表
*
* @return array(
* 品牌ID => 品牌命名(domain)
* )
*/
public static function getAllBrandDomains()
{
$result = array();
if (USE_CACHE) {
$key = CacheConfig::KEY_ACTION_PRODUCT_BRAND_ALLNAMES;
// 先尝试获取一级缓存(master), 有数据则直接返回.
$result = Cache::get($key, 'master');
if (!empty($result)) {
return $result;
}
}
$brand = BrandData::getBrandsData(null);
/* 按字母'A-Z'分组的品牌列表 */
if (!empty($brand['data']['brands'])) {
foreach ($brand['data']['brands'] as $value) {
foreach ($value as $row) {
$result[ $row['id'] ] = $row['brand_domain'] ;
}
}
}
// 更多关联的品牌
if (!empty($brand['data']['morebrands'])) {
foreach ($brand['data']['morebrands'] as $row) {
$result[ $row['id'] ] = $row['brand_domain'];
}
}
$brand = array();
if (USE_CACHE) {
// 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
if (empty($result)) {
$result = Cache::get($key, 'slave');
}
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
else {
Cache::set($key, $result, 600); // 缓存10分钟
}
}
return $result;
}
}