Blame view

yohobuy/www.yohobuy.com/application/models/Index/Home.php 15.4 KB
whb authored
1 2
<?php
namespace Index;
whb authored
3
4
use Configs\WebCacheConfig;
whb authored
5
use Configs\ChannelConfig;
whb authored
6 7
use WebPlugin\Helpers;
use WebPlugin\Cache;
whb authored
8 9
use Api\Yohobuy;
use WebPlugin\Images;
whb authored
10 11
use LibModels\Web\Home\IndexData;
use LibModels\Web\Product\SearchData;
whb authored
12
use WebPlugin\DataProcess\Channel as ChannelProcess;
13
whb authored
14 15
/**
 * web首页模板数据模型
whb authored
16
 *
whb authored
17 18 19 20 21 22 23 24
 * @name HomeModel
 * @package models
 * @copyright yoho.inc
 * @version 1.0 (2015-12-20 11:08:21)
 * @author whb <huanbao.wang@yoho.cn>
 */
class HomeModel
{
whb authored
25
whb authored
26 27
    /* COOKIE标识访问的是男生频道 */
    const COOKIE_NAME_BOYS = 'boys';
whb authored
28
whb authored
29 30
    /* COOKIE标识访问的是女生频道 */
    const COOKIE_NAME_GIRLS = 'girls';
whb authored
31
whb authored
32 33
    /* COOKIE标识访问的是潮童频道 */
    const COOKIE_NAME_KIDS = 'kids';
whb authored
34
whb authored
35 36 37
    /* COOKIE标识访问的是创意生活频道 */
    const COOKIE_NAME_LIFESTYLE = 'lifestyle';
    
whb authored
38
    //production:                                  test:
whb authored
39 40 41 42
   //boys:79372627eee75d73afe7f9bac91e5ce6, c15bf0cbfbd4893fd70c869c991f6d3d
   //girls: 75215008957605c05e8cd375eac4f817, a519ba44ef3a85cf3c05e405c6ba8e53
   //kids:d71f4b27f2a7229fbb31a4bc490a6f36,a7741b94e8bb9d56d0d36e00c05956f7
   //lifestyle:8a341ca7eacc069ba80f02dec80eaf34,1b053fd044834f5c86d5eb15fb237af9
whb authored
43
       
whb authored
44
    // 男首首页
45
    const CODE_BOYS_CHANNEL = '79372627eee75d73afe7f9bac91e5ce6';
whb authored
46
    // 女首首页
47
    const CODE_GIRLS_CHANNEL =  '75215008957605c05e8cd375eac4f817';
whb authored
48
whb authored
49
    // 潮童首页
50
    const CODE_KIDS_CHANNEL =  'd71f4b27f2a7229fbb31a4bc490a6f36';
whb authored
51
                                            
whb authored
52
    // 创意生活新
53
    const CODE_LIFESTYLE_CHANNEL = '8a341ca7eacc069ba80f02dec80eaf34';
whb authored
54 55
    
    // 创意生活
whb authored
56
    const CODE_LIFESTYLE_CHANNEL_1 = '380c38155fd8beee10913a3f5b462da6';
whb authored
57
whb authored
58
    const CODE_LIFESTYLE_CHANNEL_2 = '665f7c2fb9d037ee820766953ee34bf7';
whb authored
59
whb authored
60 61
    /**
     * 获取导航
whb authored
62 63
     *
     * @param string $channel            
whb authored
64 65 66 67
     * @return array
     */
    public static function getNavBars($channel = 'boys')
    {
68
        $key = WebCacheConfig::KEY_WEB_HOME_NAVBAR_DATA . '_' . $channel;
whb authored
69
        $menu = Cache::get($key);
70 71
        //数据缓存不存在
        if(empty($menu)) {
72
            $data = IndexData::getNavData(); 
whb authored
73 74 75
            //接口存在数据
            if(!empty($data['data'])) {
                $item = array();
76 77 78 79
                $subnav = array();
                $thirdnav = array();
                $indexMain = 0;
                $indexSub = 0;
wangqing authored
80
                
whb authored
81 82
                foreach ($data['data'] as $val) {
                    $item = array(
whb authored
83 84 85 86
                        'name_cn' => $val['sort_name'], // 父级
                        'name_en' => $val['sort_name_en'],
                        'link' => $val['sort_url'],
                        'icon' => $val['sort_ico'],
87
                        'classname' => str_replace(' ', '', strtolower($val['sort_name_en'])) == $channel ? $channel .' cure' : '',
wangqing authored
88
                        'index_main' => $indexMain ++,
whb authored
89 90 91 92
                        'content_code' => $val['content_code'],
                        'is_hot' => $val['is_hot'] == 'Y' ? true : false,
                        'is_new' => $val['is_new'] == 'Y' ? true : false,
                        //  'subnav' => array()
whb authored
93
                    );
94
                    $indexSub = 0;
whb authored
95 96
                    foreach ($val['sub'] as $sub) { // 二级
                        $subnav = array(
whb authored
97 98 99 100 101 102 103
                            'name' => $sub['sort_name'],
                            'name_en' => $sub['sort_name_en'],
                            'link' => $sub['sort_url'],
                            'is_hot' => $sub['is_hot'] == 'Y' ? true : false,
                            'is_new' => $sub['is_new'] == 'Y' ? true : false,
                            'content_code' => $sub['content_code'],
                            //    'thirdnav' => array(),
104
                            'index_sub' => $indexSub ++
whb authored
105 106
                        );
                        if (isset($sub['sub'])) {
107
                            $thirdnav = array();
whb authored
108 109
                            foreach ($sub['sub'] as $thirdsub) { // 三级
                                $thirdnav = array(
whb authored
110 111 112 113 114
                                    'title' => $thirdsub['sort_name'],
                                    'name_en' => $thirdsub['sort_name_en'],
                                    'link' => $thirdsub['sort_url'],
                                    'content_code' => $thirdsub['content_code'],
                                    //       'branditems' => array()
whb authored
115 116 117 118
                                );
                                if (isset($thirdsub['sub'])) {
                                    foreach ($thirdsub['sub'] as $fourthnav) { // 四级
                                        $thirdnav['branditems'][] = array(
whb authored
119 120 121
                                            'brandname' => $fourthnav['sort_name'],
                                            'link' => $fourthnav['sort_url'],
                                            'hot' => $fourthnav['is_hot'] == 'Y' ? 'hot' : ''
whb authored
122 123
                                        );
                                    }
whb authored
124
                                }
whb authored
125
                                $subnav['thirdnav'][] = $thirdnav;
whb authored
126 127
                            }
                        }
whb authored
128 129
                
                        $item['subnav'][] = $subnav;
whb authored
130
                    }
whb authored
131
                    $menu[] = $item;
whb authored
132
                }
whb authored
133
                Cache::set($key, $menu, 1800);
whb authored
134
            }
whb authored
135
        }
136
        
whb authored
137
        //数据缓存和接口都空的,取二级数据
138
        if(empty($menu)) {
whb authored
139 140 141
            $menu = Cache::get($key,'slave');
        }
        
whb authored
142 143
        return $menu;
    }
144
    
whb authored
145
    /**
146 147 148 149 150 151 152 153 154 155 156 157
     * 选择频道
     *
     * @return void
     */
    public static function goSwitchChannel()
    {
        // 通过COOKIE检查是否已设置过首页频道时,跳转到对应的频道页
        if (!empty($_COOKIE['_Channel'])) {
            headers_sent() || header('Location: /' . $_COOKIE['_Channel']);
            exit();
        }
    }
whb authored
158
whb authored
159 160 161
    /**
     * 设置选择的频道保存到浏览器COOKIE
     *
whb authored
162
     * @param string $cookie            
whb authored
163 164 165 166 167 168
     * @return void
     */
    public static function setSwitchToCookie($cookie)
    {
        setcookie('_Channel', $cookie, time() + 86400 * 300, '/', COOKIE_DOMAIN);
    }
whb authored
169
whb authored
170 171
    /**
     * 获取选择频道
whb authored
172
     *
whb authored
173 174 175 176 177
     * @return string
     */
    public static function getSwitchChannel()
    {
        $channel = self::COOKIE_NAME_BOYS;
whb authored
178
        if (empty($_COOKIE['_Channel'])) { 
whb authored
179
            self::setSwitchToCookie(self::COOKIE_NAME_BOYS);
whb authored
180
        } else {
whb authored
181 182
            $channel = $_COOKIE['_Channel'];
        }
whb authored
183
whb authored
184 185
        return $channel;
    }
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
    
    /**
     * 获取首页频道nav
     * 
     * @param string $channel
     * @return array
     */
    public static function getHomeChannelNav($channel = null) 
    {
        if (null === $channel) {
            $channel = self::getSwitchChannel();
        }
        
        //根据频道判断home页地址
        switch ($channel) {
            case 'boys':
                $home = Helpers::url('', '', 'default');
                break;
            case 'girls':
                $home = Helpers::url('/woman', '', 'new');
                break;
            case 'lifestyle':
                $home = Helpers::url('/lifestyle', '', 'new');
                break;
            case 'kids':
                $home = Helpers::url('/kids', '', 'new');
                break;
            default:
                $home = Helpers::url('', '', 'default');
                break;
        }
217
        return array('href' => $home, 'name' => strtoupper($channel) . '首页', 'pathTitle' => 'YOHO!有货');
218 219
        
    }
whb authored
220 221
    /**
     * 获取频道资源
whb authored
222
     *
223 224
     * @param string $channel 频道标识(boys,girls,kids,lifestyle)        
     * @param string $contentCode 资源码           
whb authored
225 226
     * @return array
     */
227
    public static function getChannelResource($channel, $contentCode)
whb authored
228
    {
229
        $key = WebCacheConfig::KEY_WEB_HOME_CHANNEL_DATA . '_' . $contentCode;
whb authored
230 231
        $data = Cache::get($key);
        if(empty($data)) {
232 233
            $resource = IndexData::getResourceData($contentCode);
            if (isset($resource['data']) && !empty($resource['data']) && $resource['code'] == 200) {
whb authored
234 235
                //格式化数据
                $data = ChannelProcess::getFormat($channel, $resource['data']);
236
                //设置master,slave
whb authored
237
                Cache::set($key, $data);
238 239
                //清空变量
                $resource = array();
whb authored
240 241 242
            }
        }
        //master没有数据,资源位没有数据, 取二层缓存
243
        if(empty($data)) {
whb authored
244
            $data = Cache::get($key, 'slave');
whb authored
245
        }
whb authored
246
        return $data;
whb authored
247
    }
whb authored
248
    
whb authored
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
    /**
     * 获取lifesytle频道资源
     *
     * @return array
     */
    public static function getLifestyleChannel()
    {
        $resouce1 = IndexData::getResourceData(self::CODE_LIFESTYLE_CHANNEL_1);
        $focus = $resouce1['data'];
        $resouce2 = IndexData::getResourceData(self::CODE_LIFESTYLE_CHANNEL_2);
        $floor = $resouce2['data'];
        $resource = array(
            0 => $focus[0],
            1 => array(
                'template_name' => 'text',
                'data' => array(
                    'text' => '优选品牌 BRAND'
                )
            ),
            2 => $focus[1],
            3 => $focus[2],
            4 => $focus[3]
        );
        foreach ($floor as $val) {
            $resource[] = $val;
        }
        foreach (array_slice($focus, 4, 20) as $val) {
            $resource[] = $val;
        }
        $data = ChannelProcess::getFormat('lifestyle', $resource);
        return $data;
    }
whb authored
282 283
    /**
     * 获取最新上架商品
whb authored
284 285
     *
     * @param string $channel            
whb authored
286 287 288 289
     * @return array
     */
    public static function getNewArrival($channel)
    {
290
        $key = WebCacheConfig::KEY_WEB_HOME_CHANNEL_NEWARRIVAL_DATA . '_' . $channel;
whb authored
291
        //缓存数据
whb authored
292
        $result = Cache::get($key);
293
        if (empty($result)) {
whb authored
294
            $params = array(
295 296
                'order' => 's_t_desc',
                'shelve_time' => strtotime("-60 days") . ',' . time()
whb authored
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
            );
            //男首频道最新上架参数是gender=1,3
            if($channel == self::COOKIE_NAME_BOYS) {
                $params['gender'] = '1,3';
            }
            //女首频道最新上架参数是gender=2,3
            else if($channel == self::COOKIE_NAME_GIRLS) {
                $params['gender'] = '2,3';
            }
            // 最新上架分类
            if (isset(ChannelConfig::$newArrivalSortList[$channel])) {
                $sortList = ChannelConfig::$newArrivalSortList[$channel];
                // 获取分类列表获取商品信息
                $goodsList = SearchData::getSearchDataBySort($params, $sortList);
                $pos = 1;
312
                $val = array();
whb authored
313 314 315
                foreach ($goodsList as $goods) {
                    // 格式化数据
                    $val = Helpers::formatProduct($goods, true, true, true, 280, 373);
316 317 318
                    if (!$val) {
                        continue;
                    }
whb authored
319 320 321 322 323 324 325 326 327 328 329 330 331 332
                    if ($val['price'] == false) {
                        $val['price'] = $val['salePrice'];
                    }
                    $val['url'] = sprintf('%s?channel=%s&from=%s-n_%s', $val['url'], $channel , $channel, $pos++);
                    //TODO 字段要调整
                    $val['isFew'] = $val['is_soon_sold_out'];
                    $val['tags']['isLimit'] = $val['tags']['is_limited'];
                    $val['tags']['isSale'] = false;//$val['tags']['is_discount'];暂时不显示
                    $val['tags']['isNew'] = false;//$val['tags']['is_new'];暂时不显示
                    $val['tags']['isYearMidPromotion'] = $val['tags']['midYear'];
                    $val['tags']['isYearEndPromotion'] = $val['tags']['yearEnd'];
                    $val['tags']['isReNew'] = false;//$val['tags']['is_advance'];暂时不显示
                    unset($val['tags']['is_advance'], $val['tags']['is_discount'], $val['tags']['is_limited'], $val['tags']['is_new'],
                            $val['tags']['is_yohood'], $val['tags']['midYear'], $val['tags']['yearEnd']);
333
                    $result[] = $val;
whb authored
334 335
                }
            }
whb authored
336
            Cache::set($key, $result);
whb authored
337
        }
338 339 340 341 342
        // 当一级缓存失效,并且接口异常时, 尝试从二级缓存获取数据
        if (empty($result)) {
            $result = Cache::get($key, 'slave');
        }
        
whb authored
343 344
        return $result;
    }
whb authored
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
    
    
    /**
     * 获取首页导航
     *
     * @return array
     */
    public static function getIndexGuide()
    {
        $channels = array(
            'boys'=> array('gender'=>'1,3','limit' => 1),
            'girls' => array('gender'=>'2,3', 'limit' => 1),
            'lifestyle' => array('msort' => 10 , 'misort' => '266,280,101,103,259', 'limit' => 1),
            'kids' => array('msort' => 365, 'limit' => 1)
        );
        $multiUrls = array();
        $key = WebCacheConfig::KEY_WEB_INDEX_GUIDE;
        $list = Cache::get($key);
        if(empty($list)) {
            $data = IndexData::getNavData();
            if(!empty($data['data']) && isset($data['code']) && $data['code'] == 200) {
                //获取分类
                foreach($data['data'] as $nav) {
                    $channel = str_replace(' ', '', strtolower($nav['sort_name_en']));
                    $list[] = array(
                        'channel' => $channel,
                        'url' => $nav['sort_url'],
                        'sort_name' => $nav['sort_name'],
                        'sort_name_en' => $nav['sort_name_en'],
                        'content_code' => $nav['content_code'],
                        'src'=> '',
                        'num' => 0,
                    );
                    //频道页面的搜索
                    if(isset($channels[$channel])) {
                        $multiUrls[$channel] = SearchData::getProductUrl($channels[$channel]);
                    }
                    //频道页的资源位
                    $multiUrls[$nav['content_code']] = IndexData::getResourceData($nav['content_code'], 'web', true);
                }
                $resources = Yohobuy::getMulti($multiUrls);
                foreach ($list as &$val) {
                    $code = $val['content_code'];
                    $channel = $val['channel'];
                    if(isset($resources[$code])) {
                        $data = current($resources[$code]);
                        if(isset($data['data'][0]['src'])) {
                            $val['src'] = Images::getImageUrl($data['data'][0]['src'], 180, 168);
                        }
                    }
                    if(isset($resources[$channel]['total'])) {
                        $val['num'] = $resources[$channel]['total'];
                    }
                }
whb authored
399
                Cache::set($key, $list, 1800);
whb authored
400 401 402 403 404 405 406 407
            }
        }
        // 当一级缓存失效,并且接口异常时, 尝试从二级缓存获取数据
        if (empty($list)) {
            $list = Cache::get($key, 'slave');
        }
        return $list;
    }
whb authored
408
}