Newsale.php
5.29 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
<?php
namespace Product;
use Configs\CacheConfig;
use LibModels\Wap\Product\NewsaleData;
use Plugin\DataProcess\NewSaleProcess;
use Plugin\Helpers;
/**
* 新品到着相关的模板数据模型
*
* @name NewsaleModel
* @package models/Product
* @copyright yoho.inc
* @version 1.0 (2015-10-22 17:23:51)
* @author fei.hong <fei.hong@yoho.cn>
*/
class NewsaleModel
{
/* 获取新品到着顶部焦点图的位置码 */
const CODE_FOCUS_NEW = 'a7989369aa86681c678bc40f171b8f1d';
/* 获取折扣专区顶部焦点图的位置码 */
const CODE_FOCUS_SALE = 'e9c9be32d72e2906d404a72ee24cb523';
/**
* 获取新品到着的焦点图资源数据
*
* @return array
*/
public static function getNewFocus()
{
$result = array();
if (USE_CACHE) {
// 先尝试获取一级缓存(master), 有数据则直接返回.
$result = Cache::get(CacheConfig::KEY_ACTION_PRODUCT_NEWSALE_INDEX, 'master');
if (!empty($result)) {
return $result;
}
}
// 调用接口获取数据并封装
$newsale = NewsaleData::getNewsaleFocus(self::CODE_FOCUS_NEW);
if (isset($newsale['code']) && isset($newsale['data'][0]['data'][0])) {
$result = Helpers::formatBanner($newsale['data'][0]['data'][0], 640, 240);
}
if (USE_CACHE) {
// 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
if (empty($result)) {
$result = Cache::get(CacheConfig::KEY_ACTION_PRODUCT_NEWSALE_INDEX, 'slave');
}
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
else {
Cache::set(CacheConfig::KEY_ACTION_PRODUCT_NEWSALE_INDEX, $result);
}
}
return $result;
}
/**
* 获取折扣专区的焦点图资源数据
*
* @return array
*/
public static function getSaleFocus()
{
$result = array();
if (USE_CACHE) {
// 先尝试获取一级缓存(master), 有数据则直接返回.
$result = Cache::get(CacheConfig::KEY_ACTION_PRODUCT_NEWSALE_DISCOUNT, 'master');
if (!empty($result)) {
return $result;
}
}
// 调用接口获取数据并封装
$newsale = NewsaleData::getNewsaleFocus(self::CODE_FOCUS_SALE);
if (isset($newsale['code']) && isset($newsale['data'][0]['data'][0])) {
$result = Helpers::formatBanner($newsale['data'][0]['data'][0], 640, 240);
}
if (USE_CACHE) {
// 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
if (empty($result)) {
$result = Cache::get(CacheConfig::KEY_ACTION_PRODUCT_NEWSALE_DISCOUNT, 'slave');
}
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
else {
Cache::set(CacheConfig::KEY_ACTION_PRODUCT_NEWSALE_DISCOUNT, $result);
}
}
return $result;
}
/**
* 获取新品到着的商品列表
*
* @param int $channel 1:男生,2:女生,3:潮童,4:创意生活
* @param int $limit 查询的限制数
* @return array
*/
public static function getNewProducts($channel, $limit)
{
$result = array();
$products = array();
/* 根据频道查询商品列表 */
switch (intval($channel)) {
case 1: // 男生
$products = NewsaleData::getNewProducts('1,3', 1, $limit);
break;
case 2: // 女生
$products = NewsaleData::getNewProducts('2,3', 2, $limit);
break;
case 3: // 潮童
$products = NewsaleData::getNewProducts('1,2,3', 3, $limit);
break;
case 4: // 创意生活
$products = NewsaleData::getNewProducts('1,2,3', 4, $limit);
break;
}
/* 格式化商品数据 */
if (!empty($products)) {
$result = NewSaleProcess::newSaleData($products);
}
return $result;
}
/**
* 获取折扣专区的商品列表
*
* @param int $channel 1:男生,2:女生,3:潮童,4:创意生活
* @param int $limit 查询的限制数
* @return array
*/
public static function getSaleProducts($channel, $limit)
{
$result = array();
$products = array();
/* 根据频道查询商品列表 */
switch (intval($channel)) {
case 1: // 男生
$products = NewsaleData::getSaleProducts('1,3', 1, $limit);
break;
case 2: // 女生
$products = NewsaleData::getSaleProducts('2,3', 2, $limit);
break;
case 3: // 潮童
$products = NewsaleData::getSaleProducts('1,2,3', 3, $limit);
break;
case 4: // 创意生活
$products = NewsaleData::getSaleProducts('1,2,3', 4, $limit);
break;
}
/* 格式化商品数据 */
if (!empty($products)) {
$result = NewSaleProcess::newSaleData($products);
}
return $result;
}
}