Home.php 15.7 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 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 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 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
<?php
namespace Index;

use Configs\WebCacheConfig;
use Configs\ChannelConfig;
use WebPlugin\Helpers;
use WebPlugin\Cache;
use Api\Yohobuy;
use WebPlugin\Images;
use LibModels\Web\Home\IndexData;
use LibModels\Web\Product\SearchData;
use WebPlugin\DataProcess\Channel as ChannelProcess;

/**
 * web首页模板数据模型
 *
 * @name HomeModel
 * @package models
 * @copyright yoho.inc
 * @version 1.0 (2015-12-20 11:08:21)
 * @author whb <huanbao.wang@yoho.cn>
 */
class HomeModel
{

    /* COOKIE标识访问的是男生频道 */
    const COOKIE_NAME_BOYS = 'boys';

    /* COOKIE标识访问的是女生频道 */
    const COOKIE_NAME_GIRLS = 'girls';

    /* COOKIE标识访问的是潮童频道 */
    const COOKIE_NAME_KIDS = 'kids';

    /* COOKIE标识访问的是创意生活频道 */
    const COOKIE_NAME_LIFESTYLE = 'lifestyle';
    
    //production:                                  test:
   //boys:79372627eee75d73afe7f9bac91e5ce6, c15bf0cbfbd4893fd70c869c991f6d3d
   //girls: 75215008957605c05e8cd375eac4f817, a519ba44ef3a85cf3c05e405c6ba8e53
   //kids:d71f4b27f2a7229fbb31a4bc490a6f36,a7741b94e8bb9d56d0d36e00c05956f7
   //lifestyle:8a341ca7eacc069ba80f02dec80eaf34,1b053fd044834f5c86d5eb15fb237af9
       
    // 男首首页
    const CODE_BOYS_CHANNEL = '79372627eee75d73afe7f9bac91e5ce6';
    // 女首首页
    const CODE_GIRLS_CHANNEL =  '75215008957605c05e8cd375eac4f817';

    // 潮童首页
    const CODE_KIDS_CHANNEL =  'd71f4b27f2a7229fbb31a4bc490a6f36';
                                            
    // 创意生活新
    const CODE_LIFESTYLE_CHANNEL = '8a341ca7eacc069ba80f02dec80eaf34';
    
    // 创意生活
    const CODE_LIFESTYLE_CHANNEL_1 = '380c38155fd8beee10913a3f5b462da6';

    const CODE_LIFESTYLE_CHANNEL_2 = '665f7c2fb9d037ee820766953ee34bf7';

    /**
     * 获取导航
     *
     * @param string $channel            
     * @return array
     */
    public static function getNavBars($channel = 'boys')
    {
        $key = WebCacheConfig::KEY_WEB_HOME_NAVBAR_DATA . '_' . $channel;
        $menu = Cache::get($key);
        //数据缓存不存在
        if(empty($menu)) {
            $data = IndexData::getNavData(); 
            //接口存在数据
            if(!empty($data['data'])) {
                $item = array();
                $subnav = array();
                $thirdnav = array();
                $indexMain = 0;
                $indexSub = 0;
                
                foreach ($data['data'] as $val) {
                    $item = array(
                        'name_cn' => $val['sort_name'], // 父级
                        'name_en' => $val['sort_name_en'],
                        'link' => $val['sort_url'],
                        'icon' => $val['sort_ico'],
                        'classname' => str_replace(' ', '', strtolower($val['sort_name_en'])) == $channel ? $channel .' cure' : '',
                        'index_main' => $indexMain ++,
                        'content_code' => $val['content_code'],
                        'is_hot' => $val['is_hot'] == 'Y' ? true : false,
                        'is_new' => $val['is_new'] == 'Y' ? true : false,
                        'isNewPage' => $val['is_new_page'] == 'Y' ? true : false,
                        //  'subnav' => array()
                    );

                    // 奥莱头部显示配置图标
                    if (strtolower($val['sort_name_en']) === 'outlets' &&
                        $channel !== 'outlets') {
                        $item['showIcon'] = true;
                    };

                    $indexSub = 0;
                    foreach ($val['sub'] as $sub) { // 二级
                        $subnav = array(
                            '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(),
                            'index_sub' => $indexSub ++
                        );
                        if (isset($sub['sub'])) {
                            $thirdnav = array();
                            foreach ($sub['sub'] as $thirdsub) { // 三级
                                $thirdnav = array(
                                    'title' => $thirdsub['sort_name'],
                                    'name_en' => $thirdsub['sort_name_en'],
                                    'link' => $thirdsub['sort_url'],
                                    'content_code' => $thirdsub['content_code'],
                                    //       'branditems' => array()
                                );
                                if (isset($thirdsub['sub'])) {
                                    foreach ($thirdsub['sub'] as $fourthnav) { // 四级
                                        $thirdnav['branditems'][] = array(
                                            'brandname' => $fourthnav['sort_name'],
                                            'link' => $fourthnav['sort_url'],
                                            'hot' => $fourthnav['is_hot'] == 'Y' ? 'hot' : ''
                                        );
                                    }
                                }
                                $subnav['thirdnav'][] = $thirdnav;
                            }
                        }
                
                        $item['subnav'][] = $subnav;
                    }
                    $menu[] = $item;
                }
                Cache::set($key, $menu, 1800);
            }
        }
        
        //数据缓存和接口都空的,取二级数据
        if(empty($menu)) {
            $menu = Cache::get($key,'slave');
        }
        return $menu;
    }
    
    /**
     * 选择频道
     *
     * @return void
     */
    public static function goSwitchChannel()
    {
        // 通过COOKIE检查是否已设置过首页频道时,跳转到对应的频道页
        if (!empty($_COOKIE['_Channel'])) {
            headers_sent() || header('Location: /' . $_COOKIE['_Channel']);
            exit();
        }
    }

    /**
     * 设置选择的频道保存到浏览器COOKIE
     *
     * @param string $cookie            
     * @return void
     */
    public static function setSwitchToCookie($cookie)
    {
        setcookie('_Channel', $cookie, time() + 86400 * 300, '/', COOKIE_DOMAIN);
    }

    /**
     * 获取选择频道
     *
     * @return string
     */
    public static function getSwitchChannel()
    {
        $channel = self::COOKIE_NAME_BOYS;
        if (empty($_COOKIE['_Channel'])) { 
            self::setSwitchToCookie(self::COOKIE_NAME_BOYS);
        } else {
            $channel = $_COOKIE['_Channel'];
        }

        return $channel;
    }
    
    /**
     * 获取首页频道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;
        }
        return array('href' => $home, 'name' => strtoupper($channel) . '首页', 'pathTitle' => 'YOHO!BUY 有货');
        
    }
    /**
     * 获取频道资源
     *
     * @param string $channel 频道标识(boys,girls,kids,lifestyle)        
     * @param string $contentCode 资源码           
     * @return array
     */
    public static function getChannelResource($channel, $contentCode)
    {
        $key = WebCacheConfig::KEY_WEB_HOME_CHANNEL_DATA . '_' . $contentCode;
        $data = Cache::get($key);
        if(empty($data)) {
            $resource = IndexData::getResourceData($contentCode);
            if (isset($resource['data']) && !empty($resource['data']) && $resource['code'] == 200) {
                //格式化数据
                $data = ChannelProcess::getFormat($channel, $resource['data']);
                //设置master,slave
                Cache::set($key, $data);
                //清空变量
                $resource = array();
            }
        }
        //master没有数据,资源位没有数据, 取二层缓存
        if(empty($data)) {
            $data = Cache::get($key, 'slave');
        }
        return $data;
    }
    
    /**
     * 获取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;
    }

    /**
     * 获取最新上架商品
     *
     * @param string $channel            
     * @return array
     */
    public static function getNewArrival($channel)
    {
        $key = WebCacheConfig::KEY_WEB_HOME_CHANNEL_NEWARRIVAL_DATA . '_' . $channel;
        //缓存数据
        $result = Cache::get($key);
        if (empty($result)) {
            $params = array(
                'order' => 's_t_desc',
                'shelve_time' => strtotime("-60 days") . ',' . time()
            );
            //男首频道最新上架参数是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;
                $val = array();
                foreach ($goodsList as $goods) {
                    // 格式化数据
                    $val = Helpers::formatProduct($goods, true, true, true, 280, 373);
                    if (!$val) {
                        continue;
                    }
                    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']);
                    $result[] = $val;
                }
            }
            Cache::set($key, $result);
        }
        // 当一级缓存失效,并且接口异常时, 尝试从二级缓存获取数据
        if (empty($result)) {
            $result = Cache::get($key, 'slave');
        }
        
        return $result;
    }
    
    
    /**
     * 获取首页导航
     *
     * @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'];
                    }
                }
                Cache::set($key, $list, 1800);
            }
        }
        // 当一级缓存失效,并且接口异常时, 尝试从二级缓存获取数据
        if (empty($list)) {
            $list = Cache::get($key, 'slave');
        }
        return $list;
    }
}