Home.php 14.2 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 416 417 418 419 420 421 422
<?php

namespace Index;

use LibModels\Wap\Home\IndexData;
use Plugin\Helpers;
use Plugin\Cache;
use Plugin\DataProcess\FloorProcess;
use Configs\CacheConfig;

/**
 * 首页相关的模板数据模型
 *
 * @name HomeModel
 * @package models
 * @copyright yoho.inc
 * @version 1.0 (2015-10-21 11:08:21)
 * @author fei.hong <fei.hong@yoho.cn>
 */
class HomeModel
{
    /* 频道选择页取背景图片的位置码 */

    const CODE_BG = '7ba9118028f9b22090b57341487567eb';

    /* 男生楼层资源的位置码 */
    const CODE_FLOOR_BOYS = '8512bf0755cc549ac323f852c9fd945d';
    /* 女生楼层资源的位置码 */
    const CODE_FLOOR_GIRLS = '189b6686065dbd6755dd6906cf03c002';
    /* 潮童楼层资源的位置码 */
    const CODE_FLOOR_KIDS = 'b8c1bff53d4ea60f978926d538620636'; // '66cad79d93e055ad6fc5c8744086066d';
    /* 创意生活楼层资源的位置码 */
    const CODE_FLOOR_LIFESTYLE = '61cd852c6afcf60660196154f66a3a62';

    /* 男生底部广告的位置码 */
    const CODE_BANNER_BOTTOM_BOYS = 'a2ec977c027d0cd9cdccb356ddf16b08';
    /* 女生底部广告的位置码 */
    const CODE_BANNER_BOTTOM_GIRLS = '8c8bd1b89a22e5895f05882e0825b493';

    /* COOKIE标识访问的是男生频道 */
    const COOKIE_NAME_BOYS = 'boys';
    /* COOKIE标识访问的是女生频道 */
    const COOKIE_NAME_GIRLS = 'girls';
    /* COOKIE标识访问的是潮童频道 */
    const COOKIE_NAME_KIDS = 'kids';
    /* COOKIE标识访问的是创意生活频道 */
    const COOKIE_NAME_LIFESTYLE = 'lifestyle';

    /* COOKIE标识访问的是男生频道底部Banner */
    const CODE_NAME_BOYS_BOTTOM_BANNER = 'a2ec977c027d0cd9cdccb356ddf16b08';
    /* COOKIE标识访问的是女生频道频道底部Banner */
    const CODE_NAME_GIRLS_BOTTOM_BANNER = '8c8bd1b89a22e5895f05882e0825b493';

    /**
     * 选择频道
     *
     * @return void
     */
    public static function goSwitchChannel()
    {
        // 通过COOKIE检查是否已设置过首页频道时,跳转到对应的频道页
        if (!empty($_COOKIE['_Channel'])) {
            headers_sent() || header('Location: /' . $_COOKIE['_Channel']);
            exit();
        }
        // 没有Cookie时, 设置默认访问的频道
        else {
            self::setSwitchToCookie(self::COOKIE_NAME_BOYS);
        }
    }

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

    /**
     * 获取频道选择页的背景图片
     *
     * @return string | false
     */
    public static function getBgImage()
    {
        $result = false;

        if (USE_CACHE) {
            // 先尝试获取一级缓存(master), 有数据则直接返回.
            $result = Cache::get(CacheConfig::KEY_ACTION_INDEX_INDEX, 'master');
            if (!empty($result)) {
                return $result;
            }
        }

        // 调用接口获取数据
        $banner = IndexData::getBannerStart(self::CODE_BG);
        if (isset($banner['code']) && $banner['code'] == 200 && !empty($banner['data'])) {
            $imgArr = $banner['data'][0]['data'];
            if (isset($banner['data'][0]['data']['list'])) {
                $imgArr = $banner['data'][0]['data']['list'];
            }
            $result = Helpers::getImageUrl($imgArr[0]['src'], 640, 800, 2);
        }

        if (USE_CACHE) {
            // 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
            if (empty($result)) {
                $result = Cache::get(CacheConfig::KEY_ACTION_INDEX_INDEX, 'slave');
            }
            // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
            else {
                Cache::set(CacheConfig::KEY_ACTION_INDEX_INDEX, $result);
            }
        }

        return $result;
    }

    /**
     * 获取男生,女生底部banner
     *
     * @return string | false
     */
    public static function getBottomBanner($channel)
    {
        $result = false;
        if ($channel == 2) {
            $resource = self::CODE_NAME_GIRLS_BOTTOM_BANNER;
            $cache = CacheConfig::KEY_ACTION_GRILS_BOTTOM_BANNER;
        } else {
            $resource = self::CODE_NAME_BOYS_BOTTOM_BANNER;
            $cache = CacheConfig::KEY_ACTION_BOYS_BOTTOM_BANNER;
        }

        if (USE_CACHE) {
            // 先尝试获取一级缓存(master), 有数据则直接返回.
            $result = Cache::get($cache, 'master');
            if (!empty($result)) {
                return $result;
            }
        }

        // 调用接口获取数据
        $banner = IndexData::getBannerStart($resource);
        if (isset($banner['code']) && $banner['code'] == 200 && !empty($banner['data'])) {
            $result = array();
            // 处理数据
            foreach ($banner['data'] as $val) {
                foreach ($val['data'] as $single) {
                    $result['url'] = ($channel === 2) ? Helpers::url('/boys') : Helpers::url('/girls');
                    $result['img'] = Helpers::getImageUrl($single['src'], 640, 200);
                }
            }
        }

        if (USE_CACHE) {
            // 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
            if (empty($result)) {
                $result = Cache::get($cache, 'slave');
            }
            // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
            else {
                Cache::set($cache, $result);
            }
        }

        return $result;
    }

    /**
     * 获取男生首页的楼层数据
     *
     * @return array | false
     */
    public static function getBoysFloor($uid = 0)
    {
        $result = array();
        if (USE_CACHE) {
            // 先尝试获取一级缓存(master), 有数据则直接返回.
            $result = Cache::get(CacheConfig::KEY_ACTION_BOYS_INDEX, 'master');
            if (!empty($result)) {
                return $result;
            }
        }
        // 调用接口获取楼层数据, 并封装成模板渲染需要的数据格式
        $channelData = IndexData::getResourceData('1,3', self::CODE_FLOOR_BOYS, 20, 1, $uid);
        if (isset($channelData['code']) && $channelData['code'] == 200) {
            $result = FloorProcess::getContent($channelData['data']);
        }

        if (USE_CACHE) {
            // 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
            if (empty($result)) {
                $result = Cache::get(CacheConfig::KEY_ACTION_BOYS_INDEX, 'slave');
            }
            // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
            else {
                Cache::set(CacheConfig::KEY_ACTION_BOYS_INDEX, $result);
            }
        }

        return $result;
    }

    /**
     * 获取女生首页的楼层数据
     *
     * @return array | false
     */
    public static function getGirlsFloor($uid = 0)
    {
        $result = array();

        if (USE_CACHE) {
            // 先尝试获取一级缓存(master), 有数据则直接返回.
            $result = Cache::get(CacheConfig::KEY_ACTION_GIRLS_INDEX, 'master');
            if (!empty($result)) {
                return $result;
            }
        }

        // 调用接口获取楼层数据, 并封装成模板渲染需要的数据格式
        $channelData = IndexData::getResourceData('2,3', self::CODE_FLOOR_GIRLS, 20, 1, $uid);
        if (isset($channelData['code']) && $channelData['code'] == 200) {
            $result = FloorProcess::getContent($channelData['data'], 2);
        }

        if (USE_CACHE) {
            // 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
            if (empty($result)) {
                $result = Cache::get(CacheConfig::KEY_ACTION_GIRLS_INDEX, 'slave');
            }
            // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
            else {
                Cache::set(CacheConfig::KEY_ACTION_GIRLS_INDEX, $result);
            }
        }

        return $result;
    }

    /**
     * 获取潮童首页的楼层数据
     * @param int $uid
     * @modify sefon 2016-4-19 13:21:28
     * @return array | false
     */
    public static function getKidsFloor($uid = 0)
    {
        $result = false;

        if (USE_CACHE) {
            // 先尝试获取一级缓存(master), 有数据则直接返回.
            $result = Cache::get(CacheConfig::KEY_ACTION_KIDS_INDEX, 'master');
            if (!empty($result)) {
                return $result;
            }
        }

        // 调用接口获取楼层数据, 并封装成模板渲染需要的数据格式
        $channelData = IndexData::getResourceData('', self::CODE_FLOOR_KIDS);
        if (isset($channelData['code']) && $channelData['code'] == 200) {
            $result = FloorProcess::getContent($channelData['data'], 3, 20, 1, $uid);
        }

        if (USE_CACHE) {
            // 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
            if (empty($result)) {
                $result = Cache::get(CacheConfig::KEY_ACTION_KIDS_INDEX, 'slave');
            }
            // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
            else {
                Cache::set(CacheConfig::KEY_ACTION_KIDS_INDEX, $result);
            }
        }

        return $result;
    }

    /**
     * 获取创意生活首页的楼层数据
     * @param int $uid
     * @modify sefon 2016-4-19 13:22:34
     * @return array | false
     */
    public static function getLifestyleFloor($uid = 0)
    {
        $result = false;

        if (USE_CACHE) {
            // 先尝试获取一级缓存(master), 有数据则直接返回.
            $result = Cache::get(CacheConfig::KEY_ACTION_LIFESTYLE_INDEX, 'master');
            if (!empty($result)) {
                return $result;
            }
        }

        // 调用接口获取楼层数据, 并封装成模板渲染需要的数据格式
        $channelData = IndexData::getResourceData('', self::CODE_FLOOR_LIFESTYLE, 20, 1, $uid);
        if (isset($channelData['code']) && $channelData['code'] == 200) {
            $result = FloorProcess::getContent($channelData['data'], 4);
        }

        if (USE_CACHE) {
            // 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
            if (empty($result)) {
                $result = Cache::get(CacheConfig::KEY_ACTION_LIFESTYLE_INDEX, 'slave');
            }
            // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
            else {
                Cache::set(CacheConfig::KEY_ACTION_LIFESTYLE_INDEX, $result);
            }
        }

        return $result;
    }

    /**
     * 获取频道选择页数据
     *
     * @return array
     */
    public static function getChannel()
    {
        $result = array();
        if (USE_CACHE) {
            $key = CacheConfig::KEY_ACTION_INDEX_CONFIG;
            // 先尝试获取一级缓存(master), 有数据则直接返回.
            $result = Cache::get($key, 'master');
            if (!empty($result)) {
                return $result;
            }
        }

        $data = IndexData::channelData();
        if (!empty($data['data']['list'])) {
            $build = array();
            foreach ($data['data']['list'] as $value) {
                $build = array();
                switch (intval($value['channel_id'])) {
                    case 1:
                        $build['href'] = '/boys';
                        $build['title'] = '男生';
                        $build['entitle'] = 'BOYS';
                        break;
                    case 2:
                        $build['href'] = '/girls';
                        $build['title'] = '女生';
                        $build['entitle'] = 'GIRLS';
                        break;
                    case 3:
                        $build['href'] = '/kids';
                        $build['title'] = '潮童';
                        $build['entitle'] = 'KIDS';
                        break;
                    case 4:
                        $build['href'] = '/lifestyle';
                        $build['title'] = '创意生活';
                        $build['entitle'] = 'LIFESTYLE';
                        break;
                    case 5:
                        $result['showYohood'] = true;
                        $result['yohoodHref'] = 'http://yohood.cn';
                        break;
                    default:
                        continue;
                }
                if (!empty($build)) {
                    $result['channelList'][] = $build;
                }
            }
        }

        if (USE_CACHE) {
            // 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
            if (empty($result)) {
                $result = Cache::get($key, 'slave');
            }
            // 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
            else {
                Cache::set($key, $result);
            }
        }

        // 当接口和缓存都挂了时候,返回静态的数据
        if (empty($result)) {
            $result = array(
                'channelList' => array(
                    array(
                        'href' => '/boys',
                        'title' => '男生',
                        'entitle' => 'BOYS',
                    ),
                    array(
                        'href' => '/girls',
                        'title' => '女生',
                        'entitle' => 'GIRLS',
                    ),
                    array(
                        'href' => '/kids',
                        'title' => '潮童',
                        'entitle' => 'KIDS',
                    ),
                    array(
                        'href' => '/lifestyle',
                        'title' => '创意生活',
                        'entitle' => 'LIFESTYLE',
                    ),
                )
            );
        }

        return $result;
    }

}